Package org.n52.shetland.ogc.sos
Enum SosConstants.CapabilitiesSections
- java.lang.Object
-
- java.lang.Enum<SosConstants.CapabilitiesSections>
-
- org.n52.shetland.ogc.sos.SosConstants.CapabilitiesSections
-
- All Implemented Interfaces:
Serializable,Comparable<SosConstants.CapabilitiesSections>
- Enclosing interface:
- SosConstants
public static enum SosConstants.CapabilitiesSections extends Enum<SosConstants.CapabilitiesSections>
enum with names of Capabilities sections supported by all versions
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AllContentsOperationsMetadataServiceIdentificationServiceProvider
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SosConstants.CapabilitiesSectionsvalueOf(String name)Returns the enum constant of this type with the specified name.static SosConstants.CapabilitiesSections[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ServiceIdentification
public static final SosConstants.CapabilitiesSections ServiceIdentification
-
ServiceProvider
public static final SosConstants.CapabilitiesSections ServiceProvider
-
OperationsMetadata
public static final SosConstants.CapabilitiesSections OperationsMetadata
-
Contents
public static final SosConstants.CapabilitiesSections Contents
-
All
public static final SosConstants.CapabilitiesSections All
-
-
Method Detail
-
values
public static SosConstants.CapabilitiesSections[] 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 (SosConstants.CapabilitiesSections c : SosConstants.CapabilitiesSections.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SosConstants.CapabilitiesSections 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
-
-