Enum OgcEnum.OperationType
- java.lang.Object
-
- java.lang.Enum<OgcEnum.OperationType>
-
- de.terrestris.shoguncore.util.enumeration.OgcEnum.OperationType
-
- All Implemented Interfaces:
Serializable,Comparable<OgcEnum.OperationType>
- Enclosing class:
- OgcEnum
public static enum OgcEnum.OperationType extends Enum<OgcEnum.OperationType>
A enum type for the allowed operation type format.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DESCRIBE_COVERAGEDESCRIBE_FEATURE_TYPEDESCRIBE_LAYERDESCRIBE_PROCESSEXECUTEGET_CAPABILITIESGET_COVERAGEGET_FEATUREGET_FEATURE_INFOGET_LAYER_INFOGET_LEGEND_GRAPHICGET_MAPGET_SCENEGET_STYLESGET_TILELOCK_FEATURETRANSACTION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OgcEnum.OperationTypefromString(String inputValue)Static method to get an enum based on a string value.StringtoString()This method is annotated withJsonValue, so that jackson will serialize the enum value to the (lowercase)value.static OgcEnum.OperationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static OgcEnum.OperationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GET_MAP
public static final OgcEnum.OperationType GET_MAP
-
GET_CAPABILITIES
public static final OgcEnum.OperationType GET_CAPABILITIES
-
GET_FEATURE_INFO
public static final OgcEnum.OperationType GET_FEATURE_INFO
-
DESCRIBE_LAYER
public static final OgcEnum.OperationType DESCRIBE_LAYER
-
GET_LEGEND_GRAPHIC
public static final OgcEnum.OperationType GET_LEGEND_GRAPHIC
-
GET_STYLES
public static final OgcEnum.OperationType GET_STYLES
-
DESCRIBE_FEATURE_TYPE
public static final OgcEnum.OperationType DESCRIBE_FEATURE_TYPE
-
GET_FEATURE
public static final OgcEnum.OperationType GET_FEATURE
-
LOCK_FEATURE
public static final OgcEnum.OperationType LOCK_FEATURE
-
TRANSACTION
public static final OgcEnum.OperationType TRANSACTION
-
DESCRIBE_COVERAGE
public static final OgcEnum.OperationType DESCRIBE_COVERAGE
-
GET_COVERAGE
public static final OgcEnum.OperationType GET_COVERAGE
-
EXECUTE
public static final OgcEnum.OperationType EXECUTE
-
DESCRIBE_PROCESS
public static final OgcEnum.OperationType DESCRIBE_PROCESS
-
GET_SCENE
public static final OgcEnum.OperationType GET_SCENE
-
GET_LAYER_INFO
public static final OgcEnum.OperationType GET_LAYER_INFO
-
GET_TILE
public static final OgcEnum.OperationType GET_TILE
-
-
Method Detail
-
values
public static OgcEnum.OperationType[] 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 (OgcEnum.OperationType c : OgcEnum.OperationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OgcEnum.OperationType 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
-
fromString
public static OgcEnum.OperationType fromString(String inputValue)
Static method to get an enum based on a string value. This method is annotated withJsonCreator, which allows the client to send case insensitive string values (like "jSon"), which will be converted to the correct enum value.- Parameters:
inputValue-- Returns:
-
toString
public String toString()
This method is annotated withJsonValue, so that jackson will serialize the enum value to the (lowercase)value.- Overrides:
toStringin classEnum<OgcEnum.OperationType>
-
-