类 ValueRef.NullValueRef
- java.lang.Object
- org.springframework.expression.spel.ast.ValueRef.NullValueRef
- 所有已实现的接口:
ValueRef
- 封闭接口:
- ValueRef
public static class ValueRef.NullValueRef extends Object implements ValueRef
A ValueRef for the null value.
嵌套类概要
从接口继承的嵌套类/接口 org.springframework.expression.spel.ast.ValueRef
ValueRef.NullValueRef, ValueRef.TypedValueHolderValueRef
构造器概要
构造器 构造器 说明 NullValueRef()
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 TypedValuegetValue()Returns the value this ValueRef points to, it should not require expression component re-evaluation.booleanisWritable()Indicates whether calling setValue(Object) is supported.voidsetValue(Object newValue)Sets the value this ValueRef points to, it should not require expression component re-evaluation.
构造器详细资料
NullValueRef
public NullValueRef()
方法详细资料
getValue
public TypedValue getValue()
从接口复制的说明:ValueRefReturns the value this ValueRef points to, it should not require expression component re-evaluation.
setValue
public void setValue(Object newValue)
从接口复制的说明:ValueRefSets the value this ValueRef points to, it should not require expression component re-evaluation.
isWritable
public boolean isWritable()
从接口复制的说明:ValueRefIndicates whether calling setValue(Object) is supported.- 指定者:
isWritable在接口中ValueRef- 返回:
- true if setValue() is supported for this value reference.