Java org.springframework.beans PropertyValue fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.beans PropertyValue fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.beans PropertyValue.

The text is from its open source code.

Subclass

org.springframework.beans.PropertyValue has subclasses.
Click this link to see all its subclasses.

Constructor

PropertyValue(String name, @Nullable Object value)
Create a new PropertyValue instance.
PropertyValue(PropertyValue original, @Nullable Object newValue)
Constructor that exposes a new value for an original value holder.

Method

ObjectgetConvertedValue()
Return the converted value of this property value, after processed type conversion.
StringgetName()
Return the name of the property.
PropertyValuegetOriginalPropertyValue()
Return the original PropertyValue instance for this value holder.
ObjectgetValue()
Return the value of the property.
booleanisConverted()
Return whether this holder contains a converted value already ( true ), or whether the value still needs to be converted ( false ).
booleanisOptional()
Return whether this is an optional value, that is, to be ignored when no corresponding property exists on the target class.
voidsetConvertedValue(@Nullable Object value)
Set the converted value of this property value, after processed type conversion.
voidsetOptional(boolean optional)
Set whether this is an optional value, that is, to be ignored when no corresponding property exists on the target class.
voidsetSource(@Nullable Object source)
Set the configuration source Object for this metadata element.