public enum RequestType extends Enum<RequestType>
| Enum Constant and Description |
|---|
ANNOTATION_REGEX_MATCH
Request classes based on annotation regex match on name
|
ANNOTATION_TYPE
Request classes based on annotation class type
|
META_ANNOTATION_REGEX_MATCH
Request classes annotated with annotation annotated by this annotation regex name
|
META_ANNOTATION_TYPE
Request classes annotated with annotation annotated by this annotation class type
|
RESOURCES_REGEX_MATCH
return resources
|
SUBTYPE_OF_BY_CLASS
Request classes based on type of direct parent class
|
SUBTYPE_OF_BY_REGEX_MATCH
Request classes based on type of direct parent class
|
SUBTYPE_OF_BY_TYPE_DEEP
Request classes based on type of ancestor class
|
TYPE_OF_BY_REGEX_MATCH
Request classes based on type of parent class
|
VIA_SPECIFICATION
Selection of the class is made via the Specification
|
| Modifier and Type | Method and Description |
|---|---|
static RequestType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RequestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestType ANNOTATION_TYPE
public static final RequestType ANNOTATION_REGEX_MATCH
public static final RequestType META_ANNOTATION_TYPE
public static final RequestType META_ANNOTATION_REGEX_MATCH
public static final RequestType TYPE_OF_BY_REGEX_MATCH
public static final RequestType SUBTYPE_OF_BY_CLASS
public static final RequestType SUBTYPE_OF_BY_REGEX_MATCH
public static final RequestType SUBTYPE_OF_BY_TYPE_DEEP
public static final RequestType VIA_SPECIFICATION
public static final RequestType RESOURCES_REGEX_MATCH
public static RequestType[] values()
for (RequestType c : RequestType.values()) System.out.println(c);
public static RequestType 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 nullCopyright © 2012-2014. All Rights Reserved.