Package org.n52.shetland.ogc.ows
Enum OWSConstants.GetCapabilitiesParams
- java.lang.Object
-
- java.lang.Enum<OWSConstants.GetCapabilitiesParams>
-
- org.n52.shetland.ogc.ows.OWSConstants.GetCapabilitiesParams
-
- All Implemented Interfaces:
Serializable,Comparable<OWSConstants.GetCapabilitiesParams>
- Enclosing interface:
- OWSConstants
public static enum OWSConstants.GetCapabilitiesParams extends Enum<OWSConstants.GetCapabilitiesParams>
enum with parameter names for getCapabilities request
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AcceptFormatsAcceptLanguagesAcceptVersionsCapabilitiesIdrequestSectionSectionsserviceupdateSequence
-
Field Summary
Fields Modifier and Type Field Description static StringDYNAMIC_CAPABILITIES_IDENTIFIER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleancontains(String string)Check if the supplied string represents a constant of this enumeration.static Optional<OWSConstants.GetCapabilitiesParams>from(String string)Get the corresponding enum constant for the supplied string representation.static OWSConstants.GetCapabilitiesParamsvalueOf(String name)Returns the enum constant of this type with the specified name.static OWSConstants.GetCapabilitiesParams[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Sections
public static final OWSConstants.GetCapabilitiesParams Sections
-
AcceptVersions
public static final OWSConstants.GetCapabilitiesParams AcceptVersions
-
updateSequence
public static final OWSConstants.GetCapabilitiesParams updateSequence
-
AcceptFormats
public static final OWSConstants.GetCapabilitiesParams AcceptFormats
-
service
public static final OWSConstants.GetCapabilitiesParams service
-
request
public static final OWSConstants.GetCapabilitiesParams request
-
Section
public static final OWSConstants.GetCapabilitiesParams Section
-
CapabilitiesId
public static final OWSConstants.GetCapabilitiesParams CapabilitiesId
-
AcceptLanguages
public static final OWSConstants.GetCapabilitiesParams AcceptLanguages
-
-
Field Detail
-
DYNAMIC_CAPABILITIES_IDENTIFIER
public static final String DYNAMIC_CAPABILITIES_IDENTIFIER
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static OWSConstants.GetCapabilitiesParams[] 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 (OWSConstants.GetCapabilitiesParams c : OWSConstants.GetCapabilitiesParams.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OWSConstants.GetCapabilitiesParams 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
-
contains
public static boolean contains(String string)
Check if the supplied string represents a constant of this enumeration.- Parameters:
string- the string value- Returns:
- wether or not the string represents an enum value
-
from
public static Optional<OWSConstants.GetCapabilitiesParams> from(String string)
Get the corresponding enum constant for the supplied string representation.- Parameters:
string- the string value- Returns:
- the enum constant
-
-