Package org.n52.shetland.ogc.sos.drt
Enum DeleteResultTemplateConstants.PARAMETERS
- java.lang.Object
-
- java.lang.Enum<DeleteResultTemplateConstants.PARAMETERS>
-
- org.n52.shetland.ogc.sos.drt.DeleteResultTemplateConstants.PARAMETERS
-
- All Implemented Interfaces:
Serializable,Comparable<DeleteResultTemplateConstants.PARAMETERS>
- Enclosing interface:
- DeleteResultTemplateConstants
public static enum DeleteResultTemplateConstants.PARAMETERS extends Enum<DeleteResultTemplateConstants.PARAMETERS>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description observablePropertyofferingresultTemplate
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DeleteResultTemplateConstants.PARAMETERSvalueOf(String name)Returns the enum constant of this type with the specified name.static DeleteResultTemplateConstants.PARAMETERS[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
offering
public static final DeleteResultTemplateConstants.PARAMETERS offering
-
observableProperty
public static final DeleteResultTemplateConstants.PARAMETERS observableProperty
-
resultTemplate
public static final DeleteResultTemplateConstants.PARAMETERS resultTemplate
-
-
Method Detail
-
values
public static DeleteResultTemplateConstants.PARAMETERS[] 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 (DeleteResultTemplateConstants.PARAMETERS c : DeleteResultTemplateConstants.PARAMETERS.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeleteResultTemplateConstants.PARAMETERS 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
-
-