Class Value
java.lang.Object
com.tangosol.config.expression.Value
A
Value is an immutable object that represents a value whose type is unknown at compile time.
That is, the type of the value will only be known at runtime when it's requested.
Much like a Variant
(wikipedia) a Value permits runtime coercion into other types, as and when required.
- Since:
- Coherence 12.1.2
- Author:
- bo 2011.06.05
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Value
public Value()Construct anullValue. -
Value
-
Value
-
Value
-
Value
-
-
Method Details
-
isNull
-
get
-
supports
-
as
public <T> T as(Class<T> clzType) throws ClassCastException, UnknownFormatConversionException, NumberFormatException Attempts to return the value of theValuecoerced to a specified type.- Type Parameters:
T- the expected type of the value- Parameters:
clzType- the expected type of the value (the value to coerce to)- Returns:
- the
Valuecoerced in the required type - Throws:
ClassCastException- If the value of theValuecan't be coerced to the specified typeNumberFormatException- If the value of theValuecan't be coerced to the specified typeUnknownFormatConversionException- If the value of theValuecan't be coerced to the specified type
-
toString
-