R
- the type of the resulting valuepublic interface Expression<R> extends Node, java.io.Serializable
Modifier and Type | Method and Description |
---|---|
R |
get()
Retrieves the value of the expression.
|
boolean |
isResolved()
returns
true if the expression contains a concrete value. |
getChildren
boolean isResolved()
true
if the expression contains a concrete value. Thus the method get()
can be used to
retrieve the actual value. If this method returns false
, then the get method will throw an exception.true
if the value can be retrieved, false
otherwise.R get()
ExpressionIsUnresolvedException
- if the value is not determined.