Enum Types
- java.lang.Object
-
- java.lang.Enum<Types>
-
- com.maxxton.microdocs.crawler.spring.Types
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPONENTCONFIGURATIONCONTROLLERDELETE_MAPPINGFEIGN_CLIENTGET_MAPPINGPATCH_MAPPINGPOST_MAPPINGPUT_MAPPINGREPOSITORYREQUEST_MAPPINGREST_CONTROLLERSERVICESPRING_BOOT_APPLICATION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetClassName()static TypesvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Types[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SERVICE
public static final Types SERVICE
-
COMPONENT
public static final Types COMPONENT
-
CONTROLLER
public static final Types CONTROLLER
-
REST_CONTROLLER
public static final Types REST_CONTROLLER
-
REPOSITORY
public static final Types REPOSITORY
-
SPRING_BOOT_APPLICATION
public static final Types SPRING_BOOT_APPLICATION
-
CONFIGURATION
public static final Types CONFIGURATION
-
FEIGN_CLIENT
public static final Types FEIGN_CLIENT
-
REQUEST_MAPPING
public static final Types REQUEST_MAPPING
-
GET_MAPPING
public static final Types GET_MAPPING
-
DELETE_MAPPING
public static final Types DELETE_MAPPING
-
PATCH_MAPPING
public static final Types PATCH_MAPPING
-
POST_MAPPING
public static final Types POST_MAPPING
-
PUT_MAPPING
public static final Types PUT_MAPPING
-
-
Method Detail
-
values
public static Types[] 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 (Types c : Types.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Types valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getClassName
public java.lang.String getClassName()
-
-