
O - Data typepublic class MaterializedRelation<O> extends AbstractHierarchicalResult implements Relation<O>
| Modifier and Type | Field and Description | 
|---|---|
private DataStore<O> | 
content
Map to hold the objects of the database. 
 | 
private Database | 
database
Our database 
 | 
private StaticDBIDs | 
ids
The DBIDs this is supposed to be defined for. 
 | 
private String | 
name
The relation name. 
 | 
private String | 
shortname
The relation name (short version) 
 | 
private SimpleTypeInformation<O> | 
type
The class of objects we store. 
 | 
HINT_BULK, HINT_EXACT, HINT_HEAVY_USE, HINT_NO_CACHE, HINT_OPTIMIZED_ONLY, HINT_SINGLE| Constructor and Description | 
|---|
MaterializedRelation(Database database,
                    SimpleTypeInformation<O> type,
                    DBIDs ids)
Constructor. 
 | 
MaterializedRelation(Database database,
                    SimpleTypeInformation<O> type,
                    DBIDs ids,
                    String name)
Constructor. 
 | 
MaterializedRelation(Database database,
                    SimpleTypeInformation<O> type,
                    DBIDs ids,
                    String name,
                    DataStore<O> content)
Constructor. 
 | 
MaterializedRelation(String name,
                    String shortname,
                    SimpleTypeInformation<O> type,
                    DataStore<O> content,
                    DBIDs ids)
Constructor. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
delete(DBIDRef id)
Delete an objects values. 
 | 
O | 
get(DBIDRef id)
Get the representation of an object. 
 | 
Database | 
getDatabase()
Get the associated database. 
 | 
SimpleTypeInformation<O> | 
getDataTypeInformation()
Get the data type of this representation 
 | 
StaticDBIDs | 
getDBIDs()
Get the IDs the query is defined for. 
 | 
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. 
 | 
void | 
set(DBIDRef id,
   O val)
Set an object representation. 
 | 
int | 
size()
Get the number of DBIDs. 
 | 
addChildResult, getHierarchy, setHierarchyclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetHierarchy, setHierarchyprivate final Database database
private final SimpleTypeInformation<O> type
private final StaticDBIDs ids
private String name
private String shortname
public MaterializedRelation(Database database, SimpleTypeInformation<O> type, DBIDs ids)
database - Databasetype - Type informationids - IDspublic MaterializedRelation(Database database, SimpleTypeInformation<O> type, DBIDs ids, String name)
database - Databasetype - Type informationids - IDsname - Namepublic MaterializedRelation(Database database, SimpleTypeInformation<O> type, DBIDs ids, String name, DataStore<O> content)
database - Databasetype - Type informationids - IDsname - Namecontent - Contentpublic Database getDatabase()
Relationnull!getDatabase in interface Relation<O>public O get(DBIDRef id)
Relationpublic void set(DBIDRef id, O val)
Relationpublic void delete(DBIDRef id)
public StaticDBIDs getDBIDs()
Relationpublic DBIDIter iterDBIDs()
Relation
 for(DBIDIter iter = relation.iterDBIDs(); iter.valid(); iter.advance()) {
    DBID id = iter.getDBID();
 }
 
 public int size()
Relationpublic SimpleTypeInformation<O> getDataTypeInformation()
RelationgetDataTypeInformation in interface Relation<O>public String getLongName()
ResultgetLongName in interface Resultpublic String getShortName()
ResultgetShortName in interface Result