Interface AutoBeanVisitor.PropertyContext
- 
- All Known Subinterfaces:
- AutoBeanVisitor.CollectionPropertyContext,- AutoBeanVisitor.MapPropertyContext
 - Enclosing class:
- AutoBeanVisitor
 
 public static interface AutoBeanVisitor.PropertyContextAllows properties to be reset.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(AutoBeanVisitor.ParameterizationVisitor visitor)Allows deeper inspection of the declared parameterization of the property.booleancanSet()Indicates if theset(java.lang.Object)method will succeed.java.lang.Class<?>getType()Returns the expected type of the property.voidset(java.lang.Object value)Sets a property value.
 
- 
- 
- 
Method Detail- 
acceptvoid accept(AutoBeanVisitor.ParameterizationVisitor visitor) Allows deeper inspection of the declared parameterization of the property.
 - 
canSetboolean canSet() Indicates if theset(java.lang.Object)method will succeed.- Returns:
- trueif the property can be set
 
 - 
getTypejava.lang.Class<?> getType() Returns the expected type of the property.- Returns:
- a Class object representing the property type
 
 - 
setvoid set(java.lang.Object value) Sets a property value.- Parameters:
- value- the new value
 
 
- 
 
-