public enum ClassDataUtils extends java.lang.Enum<ClassDataUtils> implements ClassDataVerifier
Enum Constant and Description |
---|
INSTANCE |
Modifier and Type | Method and Description |
---|---|
void |
initialize() |
static ClassDataUtils |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClassDataUtils[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
boolean |
verifyClassExists(java.lang.String className) |
boolean |
verifyMethodExists(java.lang.Class<?> clazz,
java.lang.String methodName,
java.lang.Class<?>... parameterTypes) |
public static final ClassDataUtils INSTANCE
public static ClassDataUtils[] values()
for (ClassDataUtils c : ClassDataUtils.values()) System.out.println(c);
public static ClassDataUtils valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic void initialize()
public boolean verifyClassExists(java.lang.String className)
verifyClassExists
in interface ClassDataVerifier
public boolean verifyMethodExists(java.lang.Class<?> clazz, java.lang.String methodName, java.lang.Class<?>... parameterTypes)
verifyMethodExists
in interface ClassDataVerifier