Package cronapi
Enum CronapiMetaData.CategoryType
- java.lang.Object
-
- java.lang.Enum<CronapiMetaData.CategoryType>
-
- cronapi.CronapiMetaData.CategoryType
-
- All Implemented Interfaces:
Serializable,Comparable<CronapiMetaData.CategoryType>
- Enclosing class:
- CronapiMetaData
public static enum CronapiMetaData.CategoryType extends Enum<CronapiMetaData.CategoryType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CronapiMetaData.CategoryTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CronapiMetaData.CategoryType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHENTICATION
public static final CronapiMetaData.CategoryType AUTHENTICATION
-
IO
public static final CronapiMetaData.CategoryType IO
-
DATABASE
public static final CronapiMetaData.CategoryType DATABASE
-
FRONTEND
public static final CronapiMetaData.CategoryType FRONTEND
-
SCREEN
public static final CronapiMetaData.CategoryType SCREEN
-
CONVERSION
public static final CronapiMetaData.CategoryType CONVERSION
-
DATETIME
public static final CronapiMetaData.CategoryType DATETIME
-
XML
public static final CronapiMetaData.CategoryType XML
-
EMAIL
public static final CronapiMetaData.CategoryType EMAIL
-
FTP
public static final CronapiMetaData.CategoryType FTP
-
JSON
public static final CronapiMetaData.CategoryType JSON
-
LOGIC
public static final CronapiMetaData.CategoryType LOGIC
-
TEXT
public static final CronapiMetaData.CategoryType TEXT
-
LIST
public static final CronapiMetaData.CategoryType LIST
-
MAP
public static final CronapiMetaData.CategoryType MAP
-
COLOR
public static final CronapiMetaData.CategoryType COLOR
-
LOOP
public static final CronapiMetaData.CategoryType LOOP
-
MATH
public static final CronapiMetaData.CategoryType MATH
-
GRID
public static final CronapiMetaData.CategoryType GRID
-
PRINT
public static final CronapiMetaData.CategoryType PRINT
-
OTHER
public static final CronapiMetaData.CategoryType OTHER
-
OBJECT
public static final CronapiMetaData.CategoryType OBJECT
-
SEMAPHORE
public static final CronapiMetaData.CategoryType SEMAPHORE
-
UTIL
public static final CronapiMetaData.CategoryType UTIL
-
JSONORMAP
public static final CronapiMetaData.CategoryType JSONORMAP
-
TREE
public static final CronapiMetaData.CategoryType TREE
-
CHART
public static final CronapiMetaData.CategoryType CHART
-
SOCIAL
public static final CronapiMetaData.CategoryType SOCIAL
-
REGEX
public static final CronapiMetaData.CategoryType REGEX
-
VALIDATION
public static final CronapiMetaData.CategoryType VALIDATION
-
UNITTEST
public static final CronapiMetaData.CategoryType UNITTEST
-
ORGANIZERS
public static final CronapiMetaData.CategoryType ORGANIZERS
-
-
Method Detail
-
values
public static CronapiMetaData.CategoryType[] 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 (CronapiMetaData.CategoryType c : CronapiMetaData.CategoryType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CronapiMetaData.CategoryType 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 nameNullPointerException- if the argument is null
-
-