|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use RepositoryError | |
org.apache.commons.attributes | Provides an API for accessing attributes. |
Uses of RepositoryError in org.apache.commons.attributes |
Subclasses of RepositoryError in org.apache.commons.attributes | |
class |
CircularDependencyError
Thrown when an attribute repository class can't be loaded because it resulted in a circular dependency. |
Methods in org.apache.commons.attributes that throw RepositoryError | |
static Object |
Attributes.getAttribute(Class clazz,
Class attributeClass)
Get one attributes of a given type from a class. |
static Object |
Attributes.getAttribute(Field field,
Class attributeClass)
Get one attributes of a given type from a field. |
static Object |
Attributes.getAttribute(Constructor constructor,
Class attributeClass)
Get one attributes of a given type from a constructor. |
static Object |
Attributes.getAttribute(Method method,
Class attributeClass)
Get one attributes of a given type from a method. |
static Object |
Attributes.getParameterAttribute(Method method,
int parameter,
Class attributeClass)
Get one attributes of a given type from a parameter. |
static Object |
Attributes.getParameterAttribute(Constructor constructor,
int parameter,
Class attributeClass)
Get one attributes of a given type from a constructor's parameter. |
static Object |
Attributes.getReturnAttribute(Method method,
Class attributeClass)
Get one attributes of a given type from a method's return value. |
static Collection |
Attributes.getAttributes(Class clazz)
Gets all attributes for a class. |
static Collection |
Attributes.getAttributes(Method method)
Gets all attributes for a method. |
static Collection |
Attributes.getParameterAttributes(Method method,
int parameter)
Gets all attributes for a parameter of a method. |
static Collection |
Attributes.getParameterAttributes(Constructor constructor,
int parameter)
Gets all attributes for a parameter of a constructor. |
static Collection |
Attributes.getReturnAttributes(Method method)
Gets all attributes for the return value of a method. |
static Collection |
Attributes.getAttributes(Field field)
Gets all attributes for a field. |
static Collection |
Attributes.getAttributes(Constructor constructor)
Gets all attributes for a constructor. |
static Collection |
Attributes.getAttributes(Class clazz,
Class attributeClass)
Get all attributes of a given type from a class. |
static Collection |
Attributes.getAttributes(Field field,
Class attributeClass)
Get all attributes of a given type from a field. |
static Collection |
Attributes.getAttributes(Constructor constructor,
Class attributeClass)
Get all attributes of a given type from a constructor. |
static Collection |
Attributes.getAttributes(Method method,
Class attributeClass)
Get all attributes of a given type from a method. |
static Collection |
Attributes.getParameterAttributes(Method method,
int parameter,
Class attributeClass)
Get all attributes of a given type from a method's parameter. |
static Collection |
Attributes.getParameterAttributes(Constructor constructor,
int parameter,
Class attributeClass)
Get all attributes of a given type from a method's parameter. |
static Collection |
Attributes.getReturnAttributes(Method method,
Class attributeClass)
Get all attributes of a given type from a method's return value. |
static boolean |
Attributes.hasAttributeType(Class clazz,
Class attributeClass)
Tests if a class has an attribute of a given type. |
static boolean |
Attributes.hasAttributeType(Field field,
Class attributeClass)
Tests if a field has an attribute of a given type. |
static boolean |
Attributes.hasAttributeType(Constructor constructor,
Class attributeClass)
Tests if a constructor has an attribute of a given type. |
static boolean |
Attributes.hasAttributeType(Method method,
Class attributeClass)
Tests if a method has an attribute of a given type. |
static boolean |
Attributes.hasParameterAttributeType(Method method,
int parameter,
Class attributeClass)
Tests if a method's parameter has an attribute of a given type. |
static boolean |
Attributes.hasParameterAttributeType(Constructor constructor,
int parameter,
Class attributeClass)
Tests if a constructor's parameter has an attribute of a given type. |
static boolean |
Attributes.hasReturnAttributeType(Method method,
Class attributeClass)
Tests if a method's return value has an attribute of a given type. |
static boolean |
Attributes.hasAttribute(Class clazz,
Object attribute)
Tests if a class has an attribute. |
static boolean |
Attributes.hasAttribute(Field field,
Object attribute)
Tests if a field has an attribute. |
static boolean |
Attributes.hasAttribute(Constructor constructor,
Object attribute)
Tests if a constructor has an attribute. |
static boolean |
Attributes.hasAttribute(Method method,
Object attribute)
Tests if a method has an attribute. |
static boolean |
Attributes.hasParameterAttribute(Method method,
int parameter,
Object attribute)
Tests if a method's parameter has an attribute. |
static boolean |
Attributes.hasParameterAttribute(Constructor constructor,
int parameter,
Object attribute)
Tests if a constructor's parameter has an attribute. |
static boolean |
Attributes.hasReturnAttribute(Method method,
Object attribute)
Tests if a method's return value has an attribute. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |