de.lmu.ifi.dbs.elki.database.relation
Class ConvertToStringView

java.lang.Object
  extended by de.lmu.ifi.dbs.elki.result.AbstractHierarchicalResult
      extended by de.lmu.ifi.dbs.elki.database.relation.ConvertToStringView
All Implemented Interfaces:
DatabaseQuery, Relation<String>, HierarchicalResult, Result

public class ConvertToStringView
extends AbstractHierarchicalResult
implements Relation<String>

Representation adapter that uses toString() to produce a string representation.


Field Summary
(package private)  Relation<?> existing
          The database we use
 
Fields inherited from interface de.lmu.ifi.dbs.elki.database.query.DatabaseQuery
HINT_BULK, HINT_EXACT, HINT_HEAVY_USE, HINT_NO_CACHE, HINT_OPTIMIZED_ONLY, HINT_SINGLE
 
Constructor Summary
ConvertToStringView(Relation<?> existing)
          Constructor.
 
Method Summary
 void delete(DBID id)
          Delete an objects values.
 String get(DBID id)
          Get the representation of an object.
 Database getDatabase()
          Get the associated database.
 SimpleTypeInformation<String> getDataTypeInformation()
          Get the data type of this representation
 DBIDs 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.
 IterableIterator<DBID> iterDBIDs()
          Get an iterator access to the DBIDs.
 void set(DBID id, String val)
          Set an object representation.
 int size()
          Get the number of DBIDs.
 
Methods inherited from class de.lmu.ifi.dbs.elki.result.AbstractHierarchicalResult
addChildResult, getHierarchy, setHierarchy
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface de.lmu.ifi.dbs.elki.result.HierarchicalResult
getHierarchy, setHierarchy
 

Field Detail

existing

final Relation<?> existing
The database we use

Constructor Detail

ConvertToStringView

public ConvertToStringView(Relation<?> existing)
Constructor.

Parameters:
existing - Existing representation
Method Detail

getDatabase

public Database getDatabase()
Description copied from interface: Relation
Get the associated database. Note: in some situations, this might be null!

Specified by:
getDatabase in interface Relation<String>
Returns:
Database

get

public String get(DBID id)
Description copied from interface: Relation
Get the representation of an object.

Specified by:
get in interface Relation<String>
Parameters:
id - Object ID
Returns:
object instance

set

public void set(DBID id,
                String val)
Description copied from interface: Relation
Set an object representation.

Specified by:
set in interface Relation<String>
Parameters:
id - Object ID
val - Value

delete

public void delete(DBID id)
Description copied from interface: Relation
Delete an objects values.

Specified by:
delete in interface Relation<String>
Parameters:
id - ID to delete

getDBIDs

public DBIDs getDBIDs()
Description copied from interface: Relation
Get the IDs the query is defined for.

Specified by:
getDBIDs in interface Relation<String>
Returns:
IDs this is defined for

iterDBIDs

public IterableIterator<DBID> iterDBIDs()
Description copied from interface: Relation
Get an iterator access to the DBIDs.

Specified by:
iterDBIDs in interface Relation<String>
Returns:
iterator for the DBIDs.

size

public int size()
Description copied from interface: Relation
Get the number of DBIDs.

Specified by:
size in interface Relation<String>
Returns:
Size

getDataTypeInformation

public SimpleTypeInformation<String> getDataTypeInformation()
Description copied from interface: Relation
Get the data type of this representation

Specified by:
getDataTypeInformation in interface Relation<String>
Returns:
Data type

getLongName

public String getLongName()
Description copied from interface: Result
A "pretty" name for the result, for use in titles, captions and menus.

Specified by:
getLongName in interface Result
Returns:
result name

getShortName

public String getShortName()
Description copied from interface: Result
A short name for the result, useful for file names.

Specified by:
getShortName in interface Result
Returns:
result name

Release 0.4.0 (2011-09-20_1324)