Package com.contentstack.sdk
Enum Constants.REQUEST_CONTROLLER
- java.lang.Object
-
- java.lang.Enum<Constants.REQUEST_CONTROLLER>
-
- com.contentstack.sdk.Constants.REQUEST_CONTROLLER
-
- All Implemented Interfaces:
Serializable,Comparable<Constants.REQUEST_CONTROLLER>
- Enclosing class:
- Constants
public static enum Constants.REQUEST_CONTROLLER extends Enum<Constants.REQUEST_CONTROLLER>
The enum Request controller.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSETASSETLIBRARYCONTENTTYPESENTRYQUERYSYNC
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Constants.REQUEST_CONTROLLERvalueOf(String name)Returns the enum constant of this type with the specified name.static Constants.REQUEST_CONTROLLER[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
QUERY
public static final Constants.REQUEST_CONTROLLER QUERY
-
ENTRY
public static final Constants.REQUEST_CONTROLLER ENTRY
-
ASSET
public static final Constants.REQUEST_CONTROLLER ASSET
-
SYNC
public static final Constants.REQUEST_CONTROLLER SYNC
-
CONTENTTYPES
public static final Constants.REQUEST_CONTROLLER CONTENTTYPES
-
ASSETLIBRARY
public static final Constants.REQUEST_CONTROLLER ASSETLIBRARY
-
-
Method Detail
-
values
public static Constants.REQUEST_CONTROLLER[] 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 (Constants.REQUEST_CONTROLLER c : Constants.REQUEST_CONTROLLER.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Constants.REQUEST_CONTROLLER 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
-
-