Package org.n52.shetland.inspire.dls
Enum InspireCapabilities.InspireSpatialDataServiceType
- java.lang.Object
-
- java.lang.Enum<InspireCapabilities.InspireSpatialDataServiceType>
-
- org.n52.shetland.inspire.dls.InspireCapabilities.InspireSpatialDataServiceType
-
- All Implemented Interfaces:
Serializable,Comparable<InspireCapabilities.InspireSpatialDataServiceType>
- Enclosing interface:
- InspireCapabilities
public static enum InspireCapabilities.InspireSpatialDataServiceType extends Enum<InspireCapabilities.InspireSpatialDataServiceType>
INSPIRE capabilities spatial data service type- Since:
- 1.0.0
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InspireCapabilities.InspireSpatialDataServiceTypevalueOf(String name)Returns the enum constant of this type with the specified name.static InspireCapabilities.InspireSpatialDataServiceType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
discovery
public static final InspireCapabilities.InspireSpatialDataServiceType discovery
-
view
public static final InspireCapabilities.InspireSpatialDataServiceType view
-
download
public static final InspireCapabilities.InspireSpatialDataServiceType download
-
transformation
public static final InspireCapabilities.InspireSpatialDataServiceType transformation
-
invoke
public static final InspireCapabilities.InspireSpatialDataServiceType invoke
-
other
public static final InspireCapabilities.InspireSpatialDataServiceType other
-
-
Method Detail
-
values
public static InspireCapabilities.InspireSpatialDataServiceType[] 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 (InspireCapabilities.InspireSpatialDataServiceType c : InspireCapabilities.InspireSpatialDataServiceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InspireCapabilities.InspireSpatialDataServiceType 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
-
-