Package javax.validation.metadata
Interface BeanDescriptor
-
- All Superinterfaces:
ElementDescriptor
public interface BeanDescriptor extends ElementDescriptor
- Version:
- $Rev$ $Date$
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface javax.validation.metadata.ElementDescriptor
ElementDescriptor.ConstraintFinder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<ConstructorDescriptor>
getConstrainedConstructors()
java.util.Set<MethodDescriptor>
getConstrainedMethods(MethodType methodType, MethodType... methodTypes)
java.util.Set<PropertyDescriptor>
getConstrainedProperties()
ConstructorDescriptor
getConstraintsForConstructor(java.lang.Class<?>... parameterTypes)
MethodDescriptor
getConstraintsForMethod(java.lang.String methodName, java.lang.Class<?>... parameterTypes)
PropertyDescriptor
getConstraintsForProperty(java.lang.String propertyName)
boolean
isBeanConstrained()
-
Methods inherited from interface javax.validation.metadata.ElementDescriptor
findConstraints, getConstraintDescriptors, getElementClass, hasConstraints
-
-
-
-
Method Detail
-
isBeanConstrained
boolean isBeanConstrained()
-
getConstraintsForProperty
PropertyDescriptor getConstraintsForProperty(java.lang.String propertyName)
-
getConstrainedProperties
java.util.Set<PropertyDescriptor> getConstrainedProperties()
-
getConstraintsForMethod
MethodDescriptor getConstraintsForMethod(java.lang.String methodName, java.lang.Class<?>... parameterTypes)
-
getConstrainedMethods
java.util.Set<MethodDescriptor> getConstrainedMethods(MethodType methodType, MethodType... methodTypes)
-
getConstraintsForConstructor
ConstructorDescriptor getConstraintsForConstructor(java.lang.Class<?>... parameterTypes)
-
getConstrainedConstructors
java.util.Set<ConstructorDescriptor> getConstrainedConstructors()
-
-