public enum SDKClassMatchType extends java.lang.Enum<SDKClassMatchType>
Rule
sEnum Constant and Description |
---|
HAS_CLASS_ANNOTATION |
IMPLEMENTS_INTERFACE |
INHERITS_FROM_CLASS |
MATCHES_CLASS |
Modifier and Type | Method and Description |
---|---|
static SDKClassMatchType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SDKClassMatchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SDKClassMatchType MATCHES_CLASS
public static final SDKClassMatchType IMPLEMENTS_INTERFACE
public static final SDKClassMatchType INHERITS_FROM_CLASS
public static final SDKClassMatchType HAS_CLASS_ANNOTATION
public static SDKClassMatchType[] values()
for (SDKClassMatchType c : SDKClassMatchType.values()) System.out.println(c);
public static SDKClassMatchType 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 null