Package org.apache.juneau
Class BeanPropertyValue
java.lang.Object
org.apache.juneau.BeanPropertyValue
- All Implemented Interfaces:
- Comparable<BeanPropertyValue>
Represents a simple bean property value and the meta-data associated with it.
 
See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionBeanPropertyValue(BeanPropertyMeta pMeta, String name, Object value, Throwable thrown) Constructor.
- 
Method SummaryModifier and TypeMethodDescriptionintfinal ClassMeta<?>Returns the bean property metadata.final BeanPropertyMetagetMeta()Returns the bean property metadata.final StringgetName()Returns the bean property name.final ThrowableReturns the exception thrown by calling the property getter.final ObjectgetValue()Returns the bean property value.toString()
- 
Constructor Details- 
BeanPropertyValueConstructor.- Parameters:
- pMeta- The bean property metadata.
- name- The bean property name.
- value- The bean property value.
- thrown- The exception thrown by calling the property getter.
 
 
- 
- 
Method Details- 
getMetaReturns the bean property metadata.- Returns:
- The bean property metadata.
 
- 
getClassMetaReturns the bean property metadata.- Returns:
- The bean property metadata.
 
- 
getNameReturns the bean property name.- Returns:
- The bean property name.
 
- 
getValueReturns the bean property value.- Returns:
- The bean property value.
 
- 
getThrownReturns the exception thrown by calling the property getter.- Returns:
- The exception thrown by calling the property getter.
 
- 
compareTo- Specified by:
- compareToin interface- Comparable<BeanPropertyValue>
 
- 
toString
 
-