Interface Record

A record. Implementation note: A record is backed by a row in an SQL table of the associated DataScheme.

Synopsis

 public interface Record {
  public long getID();
  public Object getValue(int fieldNumber);
  public DataScheme getScheme();
}

Inheritance Path. org.kaiwitte.workbench.data.Record

getID()

Synopsis: public long getID();

Parameters

return

the id

Returns the ID.

getScheme()

Synopsis: public DataScheme getScheme();

Parameters

return

the scheme

Returns the associated scheme.

getValue(int)

Synopsis: public Object getValue(int fieldNumber);

Parameters

fieldNumber

the index

return

the content at the index.

Returns the value.