public static enum ReflectionHelper.ArgsMatchKind extends Enum<ReflectionHelper.ArgsMatchKind>
Enum Constant and Description |
---|
CLOSE |
EXACT |
REQUIRES_CONVERSION |
Modifier and Type | Method and Description |
---|---|
static ReflectionHelper.ArgsMatchKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReflectionHelper.ArgsMatchKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReflectionHelper.ArgsMatchKind EXACT
public static final ReflectionHelper.ArgsMatchKind CLOSE
public static final ReflectionHelper.ArgsMatchKind REQUIRES_CONVERSION
public static ReflectionHelper.ArgsMatchKind[] values()
for (ReflectionHelper.ArgsMatchKind c : ReflectionHelper.ArgsMatchKind.values()) System.out.println(c);
public static ReflectionHelper.ArgsMatchKind valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is null