io.nuun.kernel.api.plugin.request
Enum RequestType

java.lang.Object
  extended by java.lang.Enum<RequestType>
      extended by io.nuun.kernel.api.plugin.request.RequestType
All Implemented Interfaces:
Serializable, Comparable<RequestType>

public enum RequestType
extends Enum<RequestType>

Author:
Epo Jemba

Enum Constant Summary
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 given.
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ANNOTATION_TYPE

public static final RequestType ANNOTATION_TYPE
Request classes based on annotation class type


ANNOTATION_REGEX_MATCH

public static final RequestType ANNOTATION_REGEX_MATCH
Request classes based on annotation regex match on name


META_ANNOTATION_TYPE

public static final RequestType META_ANNOTATION_TYPE
Request classes annotated with annotation annotated by this annotation class type


META_ANNOTATION_REGEX_MATCH

public static final RequestType META_ANNOTATION_REGEX_MATCH
Request classes annotated with annotation annotated by this annotation regex name


TYPE_OF_BY_REGEX_MATCH

public static final RequestType TYPE_OF_BY_REGEX_MATCH
Request classes based on type of parent class


SUBTYPE_OF_BY_CLASS

public static final RequestType SUBTYPE_OF_BY_CLASS
Request classes based on type of direct parent class


SUBTYPE_OF_BY_REGEX_MATCH

public static final RequestType SUBTYPE_OF_BY_REGEX_MATCH
Request classes based on type of direct parent class


SUBTYPE_OF_BY_TYPE_DEEP

public static final RequestType SUBTYPE_OF_BY_TYPE_DEEP
Request classes based on type of ancestor class


VIA_SPECIFICATION

public static final RequestType VIA_SPECIFICATION
Selection of the class is made via the Specification given.


RESOURCES_REGEX_MATCH

public static final RequestType RESOURCES_REGEX_MATCH
return resources

Method Detail

values

public static RequestType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (RequestType c : RequestType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static RequestType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2012-2015. All Rights Reserved.