Package db
Class ByteField
- java.lang.Object
-
- db.Field
-
- db.ByteField
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class db.Field
Field.UnsupportedFieldException
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(Field o)booleanequals(java.lang.Object obj)byte[]getBinaryData()Get data as a byte array.bytegetByteValue()Get field as a byte value.protected bytegetFieldType()Return Field instance type as an integer valuelonggetLongValue()Get field as a long value.java.lang.StringgetValueAsString()inthashCode()FieldnewField()Create new instance of this field type.FieldnewField(Field fieldValue)Create new instance of this field type.voidsetByteValue(byte value)Set field's byte value.voidsetLongValue(long value)Set field's long value.java.lang.StringtoString()-
Methods inherited from class db.Field
getBooleanValue, getIntValue, getShortValue, getString, isVariableLength, setBinaryData, setBooleanValue, setIntValue, setShortValue, setString
-
-
-
-
Method Detail
-
getByteValue
public byte getByteValue()
Description copied from class:FieldGet field as a byte value.- Overrides:
getByteValuein classField- Returns:
- byte value
-
setByteValue
public void setByteValue(byte value)
Description copied from class:FieldSet field's byte value.- Overrides:
setByteValuein classField- Parameters:
value- byte value
-
getFieldType
protected byte getFieldType()
Description copied from class:FieldReturn Field instance type as an integer value- Specified by:
getFieldTypein classField
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getValueAsString
public java.lang.String getValueAsString()
- Specified by:
getValueAsStringin classField
-
compareTo
public int compareTo(Field o)
-
newField
public Field newField(Field fieldValue)
Description copied from class:FieldCreate new instance of this field type.
-
newField
public Field newField()
Description copied from class:FieldCreate new instance of this field type.
-
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
-
getBinaryData
public byte[] getBinaryData()
Description copied from class:FieldGet data as a byte array.- Specified by:
getBinaryDatain classField- Returns:
- byte[]
-
-