Package db
Class BooleanField
- java.lang.Object
-
- db.Field
-
- db.BooleanField
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class db.Field
Field.UnsupportedFieldException
-
-
Field Summary
Fields Change Modifier and Type Field Description NEW static BooleanFieldINSTANCENEW static BooleanFieldMAX_VALUEMaximum boolean field value (TRUE)NEW static BooleanFieldMIN_VALUEMinimum boolean field value (FALSE)-
Fields inherited from class db.Field
EMPTY_ARRAY
-
-
Constructor Summary
Constructors Change Constructor Description BooleanField()Construct a boolean data field with an initial value of false.BooleanField(boolean b)Construct a boolean data field with an initial value of b.
-
Method Summary
All Methods Instance Methods Concrete Methods Change Modifier and Type Method Description intcompareTo(Field o)NEW BooleanFieldcopyField()Create new instance of this field with the same value.booleanequals(java.lang.Object obj)byte[]getBinaryData()Get data as a byte array.booleangetBooleanValue()Get field as a boolean value.longgetLongValue()Get field as a long value.java.lang.StringgetValueAsString()Get field value as a formatted stringinthashCode()MODIFIED BooleanFieldnewField()Create new instance of this field type.voidsetBinaryData(byte[] bytes)Set data from binary byte array.voidsetBooleanValue(boolean b)Set field's boolean value.java.lang.StringtoString()REMOVED FieldnewField(Field fieldValue) (Removed)-
Methods inherited from class db.Field
canIndex, getByteValue, getIntValue, getShortValue, getString, isSameType, isVariableLength, setByteValue, setIntValue, setLongValue, setShortValue, setString
-
-
-
-
Field Detail
-
MIN_VALUE NEW
public static final BooleanField MIN_VALUE
Minimum boolean field value (FALSE)
-
MAX_VALUE NEW
public static final BooleanField MAX_VALUE
Maximum boolean field value (TRUE)
Constructor Detail
-
BooleanField
public BooleanField()
Construct a boolean data field with an initial value of false.
-
BooleanField
public BooleanField(boolean b)
Construct a boolean data field with an initial value of b.- Parameters:
b- initial value
-
-
Method Detail
-
getBooleanValue
public boolean getBooleanValue()
Description copied from class:FieldGet field as a boolean value.- Overrides:
getBooleanValuein classField- Returns:
- boolean value
-
setBooleanValue
public void setBooleanValue(boolean b)
Description copied from class:FieldSet field's boolean value.- Overrides:
setBooleanValuein classField- Parameters:
b- boolean 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 NEW
public BooleanField copyField()
Description copied from class:FieldCreate new instance of this field with the same value.
-
newField MODIFIED
return type: Field → BooleanField-db.Field newField()+db.BooleanField newField()public BooleanField 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
-
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
-
-