IN
- Vector typeOUT
- Vector typepublic class ProjectedView<IN,OUT> extends AbstractRelation<OUT>
Modifier and Type | Field and Description |
---|---|
private Relation<IN> |
inner
The wrapped representation where we get the IDs from.
|
private static Logging |
LOG
Class logger
|
private Projection<IN,OUT> |
projection
The projection we use.
|
HINT_BULK, HINT_EXACT, HINT_HEAVY_USE, HINT_NO_CACHE, HINT_OPTIMIZED_ONLY, HINT_SINGLE
Constructor and Description |
---|
ProjectedView(Relation<IN> inner,
Projection<IN,OUT> projection)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
OUT |
get(DBIDRef id)
Get the representation of an object.
|
SimpleTypeInformation<OUT> |
getDataTypeInformation()
Get the data type of this representation
|
DBIDs |
getDBIDs()
Get the IDs the query is defined for.
|
protected Logging |
getLogger()
Get the class logger.
|
String |
getLongName()
A "pretty" name for the result, for use in titles, captions and menus.
|
String |
getShortName()
A short name for the result, useful for file names.
|
DBIDIter |
iterDBIDs()
Get an iterator access to the DBIDs.
|
int |
size()
Get the number of DBIDs.
|
getDistanceQuery, getKNNQuery, getKNNQuery, getRangeQuery, getRangeQuery, getRKNNQuery, getRKNNQuery, getSimilarityQuery
addChildResult, getHierarchy, setHierarchy
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getHierarchy, setHierarchy
private static final Logging LOG
private Projection<IN,OUT> projection
public ProjectedView(Relation<IN> inner, Projection<IN,OUT> projection)
inner
- Inner relationprojection
- Projection functionpublic String getLongName()
Result
public String getShortName()
Result
public OUT get(DBIDRef id)
Relation
id
- Object IDpublic SimpleTypeInformation<OUT> getDataTypeInformation()
Relation
public DBIDs getDBIDs()
Relation
Relation.iterDBIDs()
.public DBIDIter iterDBIDs()
Relation
for(DBIDIter iter = relation.iterDBIDs(); iter.valid(); iter.advance()) {
relation.get(iter); // Get the current element
}
public int size()
Relation
protected Logging getLogger()
AbstractRelation
getLogger
in class AbstractRelation<OUT>
Copyright © 2015 ELKI Development Team, Lehr- und Forschungseinheit für Datenbanksysteme, Ludwig-Maximilians-Universität München. License information.