|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.beans.factory.config.ConstructorArgumentValues.ValueHolder
public static class ConstructorArgumentValues.ValueHolder
Holder for a constructor argument value, with an optional type attribute indicating the target type of the actual constructor argument.
Constructor Summary | |
---|---|
ConstructorArgumentValues.ValueHolder(Object value)
Create a new ValueHolder for the given value. |
|
ConstructorArgumentValues.ValueHolder(Object value,
String type)
Create a new ValueHolder for the given value and type. |
Method Summary | |
---|---|
ConstructorArgumentValues.ValueHolder |
copy()
Create a copy of this ValueHolder: that is, an independent ValueHolder instance with the same contents. |
Object |
getConvertedValue()
Return the converted value of the constructor argument, after processed type conversion. |
Object |
getSource()
Return the configuration source Object for this metadata element
(may be null ). |
String |
getType()
Return the type of the constructor argument. |
Object |
getValue()
Return the value for the constructor argument. |
boolean |
isConverted()
Return whether this holder contains a converted value already ( true ),
or whether the value still needs to be converted (false ). |
void |
setConvertedValue(Object value)
Set the converted value of the constructor argument, after processed type conversion. |
void |
setSource(Object source)
Set the configuration source Object for this metadata element. |
void |
setType(String type)
Set the type of the constructor argument. |
void |
setValue(Object value)
Set the value for the constructor argument. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ConstructorArgumentValues.ValueHolder(Object value)
value
- the argument valuepublic ConstructorArgumentValues.ValueHolder(Object value, String type)
value
- the argument valuetype
- the type of the constructor argumentMethod Detail |
---|
public void setValue(Object value)
PropertyPlaceholderConfigurer
public Object getValue()
public void setType(String type)
PropertyPlaceholderConfigurer
public String getType()
public void setSource(Object source)
Object
for this metadata element.
The exact type of the object will depend on the configuration mechanism used.
public Object getSource()
BeanMetadataElement
Object
for this metadata element
(may be null
).
getSource
in interface BeanMetadataElement
public boolean isConverted()
true
),
or whether the value still needs to be converted (false
).
public void setConvertedValue(Object value)
public Object getConvertedValue()
public ConstructorArgumentValues.ValueHolder copy()
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |