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 Change Modifier and Type Field Description NEW static LongFieldINSTANCENEW static LongFieldMAX_VALUEMaximum long field valueNEW static LongFieldMIN_VALUEMinimum long field valueNEW static LongFieldZERO_VALUEZero long field value-
Fields inherited from class db.Field
EMPTY_ARRAY
-
-
Method Summary
All Methods Instance Methods Concrete Methods Change Modifier and Type Method Description intcompareTo(Field o)NEW 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()MODIFIED 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()REMOVED FieldnewField(Field fieldValue) (Removed)-
Methods inherited from class db.Field
canIndex, getBooleanValue, getByteValue, getIntValue, getShortValue, getString, isSameType, isVariableLength, setBooleanValue, setByteValue, setIntValue, setShortValue, setString
-
-
-
-
Field Detail
-
MIN_VALUE NEW
public static final LongField MIN_VALUE
Minimum long field value
-
MAX_VALUE NEW
public static final LongField MAX_VALUE
Maximum long field value
-
ZERO_VALUE NEW
public static final LongField ZERO_VALUE
Zero long field value
Constructor Detail
-
LongField
public LongField()
Construct a long field with an initial value of 0.
-
LongField
public LongField(long l)
Construct a long field with an initial value of l.- Parameters:
l- initial value
-
-
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)
-
getBinaryData
public byte[] getBinaryData()
Description copied from class:FieldGet data as a byte array.- Specified by:
getBinaryDatain classField- Returns:
- byte[]
-
setBinaryData NEW
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
-
-