Frames | No Frames |
Classes derived from org.apache.commons.attributes.RepositoryError | |
class | Thrown when an attribute repository class can't be
loaded because it resulted in a circular dependency. |
Methods which throw type org.apache.commons.attributes.RepositoryError | |
Object | Attributes.getAttribute(Class clazz, Class attributeClass) Get one attributes of a given type from a class. |
Object | Attributes.getAttribute(Constructor constructor, Class attributeClass) Get one attributes of a given type from a constructor. |
Object | Attributes.getAttribute(Field field, Class attributeClass) Get one attributes of a given type from a field. |
Object | Attributes.getAttribute(Method method, Class attributeClass) Get one attributes of a given type from a method. |
Collection | Attributes.getAttributes(Class clazz) Gets all attributes for a class. |
Collection | Attributes.getAttributes(Class clazz, Class attributeClass) Get all attributes of a given type from a class. |
Collection | Attributes.getAttributes(Constructor constructor) Gets all attributes for a constructor. |
Collection | Attributes.getAttributes(Constructor constructor, Class attributeClass) Get all attributes of a given type from a constructor. |
Collection | Attributes.getAttributes(Field field) Gets all attributes for a field. |
Collection | Attributes.getAttributes(Field field, Class attributeClass) Get all attributes of a given type from a field. |
Collection | Attributes.getAttributes(Method method) Gets all attributes for a method. |
Collection | Attributes.getAttributes(Method method, Class attributeClass) Get all attributes of a given type from a method. |
CachedRepository | Attributes.getCachedRepository(Class clazz) |
Object | Attributes.getParameterAttribute(Constructor constructor, int parameter, Class attributeClass) Get one attributes of a given type from a constructor's parameter. |
Object | Attributes.getParameterAttribute(Method method, int parameter, Class attributeClass) Get one attributes of a given type from a parameter. |
Collection | Attributes.getParameterAttributes(Constructor constructor, int parameter) Gets all attributes for a parameter of a constructor. |
Collection | Attributes.getParameterAttributes(Constructor constructor, int parameter, Class attributeClass) Get all attributes of a given type from a method's parameter. |
Collection | Attributes.getParameterAttributes(Method method, int parameter) Gets all attributes for a parameter of a method. |
Collection | Attributes.getParameterAttributes(Method method, int parameter, Class attributeClass) Get all attributes of a given type from a method's parameter. |
Object | Attributes.getReturnAttribute(Method method, Class attributeClass) Get one attributes of a given type from a method's return value. |
Collection | Attributes.getReturnAttributes(Method method) Gets all attributes for the return value of a method. |
Collection | Attributes.getReturnAttributes(Method method, Class attributeClass) Get all attributes of a given type from a method's return value. |
boolean | Attributes.hasAttribute(Class clazz, Object attribute) Tests if a class has an attribute. |
boolean | Attributes.hasAttribute(Collection attrs, Object attribute) Convenience function to test whether a collection of attributes contain
an attribute. |
boolean | Attributes.hasAttribute(Constructor constructor, Object attribute) Tests if a constructor has an attribute. |
boolean | Attributes.hasAttribute(Field field, Object attribute) Tests if a field has an attribute. |
boolean | Attributes.hasAttribute(Method method, Object attribute) Tests if a method has an attribute. |
boolean | Attributes.hasAttributeType(Class clazz, Class attributeClass) Tests if a class has an attribute of a given type. |
boolean | Attributes.hasAttributeType(Constructor constructor, Class attributeClass) Tests if a constructor has an attribute of a given type. |
boolean | Attributes.hasAttributeType(Field field, Class attributeClass) Tests if a field has an attribute of a given type. |
boolean | Attributes.hasAttributeType(Method method, Class attributeClass) Tests if a method has an attribute of a given type. |
boolean | Attributes.hasParameterAttribute(Constructor constructor, int parameter, Object attribute) Tests if a constructor's parameter has an attribute. |
boolean | Attributes.hasParameterAttribute(Method method, int parameter, Object attribute) Tests if a method's parameter has an attribute. |
boolean | Attributes.hasParameterAttributeType(Constructor constructor, int parameter, Class attributeClass) Tests if a constructor's parameter has an attribute of a given type. |
boolean | Attributes.hasParameterAttributeType(Method method, int parameter, Class attributeClass) Tests if a method's parameter has an attribute of a given type. |
boolean | Attributes.hasReturnAttribute(Method method, Object attribute) Tests if a method's return value has an attribute. |
boolean | Attributes.hasReturnAttributeType(Method method, Class attributeClass) Tests if a method's return value has an attribute of a given type. |