public class FloatValue extends DataValue
DataValue subclass that wraps a FloatValue.value of type float.
| Modifier and Type | Field and Description |
|---|---|
static FloatValue |
zero |
| Modifier and Type | Method and Description |
|---|---|
static int |
compare(FloatValue left,
FloatValue right)
Compare two wrapped values for ordering.
|
static boolean |
equal(FloatValue left,
FloatValue right)
Compare two wrapped values for equality.
|
boolean |
equals(java.lang.Object value)
Return
true if this object is equal to value. |
DataType |
getDataType()
Return the type BasicType.FLOAT.
|
int |
getTypeCode()
Return data type code of the wrapped value, equivalent to
dataType.code. |
float |
getValue()
Return the wrapped value.
|
int |
hashCode()
Hash the wrapped value to a number.
|
static FloatValue |
of(float value)
Wrap a
float value as an object. |
static FloatValue |
ofNullable(java.lang.Float value)
Wrap a nullable
float value as an object. |
static java.lang.Float |
toNullable(java.lang.Object value)
Convert a wrapped
float value to a nullable float. |
java.lang.String |
toString()
Convert this data value to a string.
|
java.lang.String |
toString3()
Return "NaN", "INF", "-INF", or
this.toString() for regular numbers. |
static float |
unwrap(java.lang.Object value)
Convert a wrapped
float value to a float. |
cloneMutablepublic static final FloatValue zero
public static int compare(FloatValue left, FloatValue right)
Compare two wrapped values for ordering.
left - First object for comparison.right - Second object for comparison.left.value < right.value, 0 if left.value == right.value, or 1 if left.value > right.value.public static boolean equal(FloatValue left, FloatValue right)
Compare two wrapped values for equality.
left - (nullable) First object for comparison.right - (nullable) Second object for comparison.true if left.value == right.value or if both arguments are null, otherwise false.public boolean equals(java.lang.Object value)
Return true if this object is equal to value.
public DataType getDataType()
Return the type BasicType.FLOAT.
getDataType in class DataValuepublic int getTypeCode()
Return data type code of the wrapped value, equivalent to dataType.code.
getTypeCode in class DataValuedataType.code.public float getValue()
Return the wrapped value.
public int hashCode()
Hash the wrapped value to a number.
public static FloatValue of(float value)
Wrap a float value as an object.
value - Value to be wrapped.public static FloatValue ofNullable(java.lang.Float value)
Wrap a nullable float value as an object.
value - (nullable) Value to be wrapped.public static java.lang.Float toNullable(java.lang.Object value)
Convert a wrapped float value to a nullable float.
CastException if value is not a wrapped float or null.
value - (nullable) The wrapped value.public java.lang.String toString()
Convert this data value to a string.
If the FloatValue.dataType is defined by XML Schema Part 2: Datatypes, then the corresponding lexical format is used.
JSON format is used for structured values (arrays and objects).
public java.lang.String toString3()
Return "NaN", "INF", "-INF", or this.toString() for regular numbers.
this.toString() for regular numbers.public static float unwrap(java.lang.Object value)
Convert a wrapped float value to a float.
CastException if value is not a wrapped float.
value - (nullable) The wrapped value.