Package db
Class LongField
- java.lang.Object
 - 
- db.Field
 - 
- db.LongField
 
 
 
- 
- 
Nested Class Summary
- 
Nested classes/interfaces inherited from class db.Field
Field.UnsupportedFieldException 
 - 
 
- 
Field Summary
Fields Modifier and Type Field Description static LongFieldINSTANCEstatic LongFieldMAX_VALUEMaximum long field valuestatic LongFieldMIN_VALUEMinimum long field valuestatic LongFieldZERO_VALUEZero long field value- 
Fields inherited from class db.Field
EMPTY_ARRAY 
 - 
 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(Field o)LongFieldcopyField()Create new instance of this field with the same value.booleanequals(java.lang.Object obj)byte[]getBinaryData()Get data as a byte array.longgetLongValue()Get field as a long value.java.lang.StringgetValueAsString()Get field value as a formatted stringinthashCode()LongFieldnewField()Create new instance of this field type.voidsetBinaryData(byte[] bytes)Set data from binary byte array.voidsetLongValue(long value)Set field's long value.java.lang.StringtoString()- 
Methods inherited from class db.Field
canIndex, getBooleanValue, getByteValue, getIntValue, getShortValue, getString, isSameType, isVariableLength, setBooleanValue, setByteValue, setIntValue, setShortValue, setString 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getLongValue
public long getLongValue()
Description copied from class:FieldGet field as a long value. All fixed-length field objects must implement this method- Overrides:
 getLongValuein classField- Returns:
 - long value
 
 
- 
setLongValue
public void setLongValue(long value)
Description copied from class:FieldSet field's long value. All fixed-length field objects must implement this method- Overrides:
 setLongValuein classField- Parameters:
 value- long value
 
- 
toString
public java.lang.String toString()
- Overrides:
 toStringin classjava.lang.Object
 
- 
getValueAsString
public java.lang.String getValueAsString()
Description copied from class:FieldGet field value as a formatted string- Specified by:
 getValueAsStringin classField- Returns:
 - field value string
 
 
- 
compareTo
public int compareTo(Field o)
 
- 
copyField
public LongField copyField()
Description copied from class:FieldCreate new instance of this field with the same value. 
- 
newField
public LongField newField()
Description copied from class:FieldCreate new instance of this field type. 
- 
getBinaryData
public byte[] getBinaryData()
Description copied from class:FieldGet data as a byte array.- Specified by:
 getBinaryDatain classField- Returns:
 - byte[]
 
 
- 
setBinaryData
public void setBinaryData(byte[] bytes)
Description copied from class:FieldSet data from binary byte array. All variable-length fields must implement this method.- Specified by:
 setBinaryDatain classField- Parameters:
 bytes- field data
 
 - 
 
 -