@Deprecated public static enum ReflectionHelper.ArgsMatchKind extends Enum<ReflectionHelper.ArgsMatchKind>
Enum Constant and Description |
---|
CLOSE
Deprecated.
A close match is where the parameter types either exactly match or are assignment-compatible
|
EXACT
Deprecated.
An exact match is where the parameter types exactly match what the method/constructor is expecting
|
REQUIRES_CONVERSION
Deprecated.
A conversion match is where the type converter must be used to transform some of the parameter types
|
Modifier and Type | Method and Description |
---|---|
static ReflectionHelper.ArgsMatchKind |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ReflectionHelper.ArgsMatchKind[] |
values()
Deprecated.
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