Interface ModelProperty
-
- All Known Implementing Classes:
BaseModelProperty
,BeanModelProperty
,FieldModelProperty
,ParameterModelProperty
public interface ModelProperty
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AllowableValues
allowableValues()
java.lang.String
getName()
com.fasterxml.classmate.ResolvedType
getType()
boolean
isReadOnly()
boolean
isRequired()
int
position()
java.lang.String
propertyDescription()
java.lang.String
qualifiedTypeName()
-
-
-
Method Detail
-
getName
java.lang.String getName()
-
getType
com.fasterxml.classmate.ResolvedType getType()
-
qualifiedTypeName
java.lang.String qualifiedTypeName()
-
allowableValues
AllowableValues allowableValues()
-
propertyDescription
java.lang.String propertyDescription()
-
isRequired
boolean isRequired()
-
isReadOnly
boolean isReadOnly()
-
position
int position()
-
-