Class ValueRef.NullValueRef
java.lang.Object
org.springframework.expression.spel.ast.ValueRef.NullValueRef
- All Implemented Interfaces:
ValueRef
- Enclosing interface:
- ValueRef
A ValueRef for the null value.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.springframework.expression.spel.ast.ValueRef
ValueRef.NullValueRef, ValueRef.TypedValueHolderValueRef
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetValue()
Returns the value this ValueRef points to, it should not require expression component re-evaluation.boolean
Indicates whether calling setValue(Object) is supported.void
Sets the value this ValueRef points to, it should not require expression component re-evaluation.
-
Constructor Details
-
NullValueRef
public NullValueRef()
-
-
Method Details
-
getValue
Description copied from interface:ValueRef
Returns the value this ValueRef points to, it should not require expression component re-evaluation. -
setValue
Description copied from interface:ValueRef
Sets the value this ValueRef points to, it should not require expression component re-evaluation. -
isWritable
public boolean isWritable()Description copied from interface:ValueRef
Indicates whether calling setValue(Object) is supported.- Specified by:
isWritable
in interfaceValueRef
- Returns:
- true if setValue() is supported for this value reference.
-