r01f.reflection
Enum ReflectionException.ReflectionExceptionSubTypes
java.lang.Object
java.lang.Enum<ReflectionException.ReflectionExceptionSubTypes>
r01f.reflection.ReflectionException.ReflectionExceptionSubTypes
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ReflectionException.ReflectionExceptionSubTypes>
- Enclosing class:
- ReflectionException
static enum ReflectionException.ReflectionExceptionSubTypes
- extends java.lang.Enum<ReflectionException.ReflectionExceptionSubTypes>
| Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
CLASS_NOT_FOUND
public static final ReflectionException.ReflectionExceptionSubTypes CLASS_NOT_FOUND
NO_CONSTRUCTOR
public static final ReflectionException.ReflectionExceptionSubTypes NO_CONSTRUCTOR
NO_METHOD
public static final ReflectionException.ReflectionExceptionSubTypes NO_METHOD
NO_FIELD
public static final ReflectionException.ReflectionExceptionSubTypes NO_FIELD
SECURITY
public static final ReflectionException.ReflectionExceptionSubTypes SECURITY
ILLEGAL_ARGUMENT
public static final ReflectionException.ReflectionExceptionSubTypes ILLEGAL_ARGUMENT
INSTANTIATION
public static final ReflectionException.ReflectionExceptionSubTypes INSTANTIATION
INVOCATION_TARGET
public static final ReflectionException.ReflectionExceptionSubTypes INVOCATION_TARGET
UNKNOWN
public static final ReflectionException.ReflectionExceptionSubTypes UNKNOWN
values
public static ReflectionException.ReflectionExceptionSubTypes[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (ReflectionException.ReflectionExceptionSubTypes c : ReflectionException.ReflectionExceptionSubTypes.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ReflectionException.ReflectionExceptionSubTypes valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null