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 anull
Value
. -
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 theValue
coerced 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
Value
coerced in the required type - Throws:
ClassCastException
- If the value of theValue
can't be coerced to the specified typeNumberFormatException
- If the value of theValue
can't be coerced to the specified typeUnknownFormatConversionException
- If the value of theValue
can't be coerced to the specified type
-
toString
-