Class OgcEnum
- java.lang.Object
-
- de.terrestris.shoguncore.util.enumeration.OgcEnum
-
public class OgcEnum extends Object
- Author:
- Daniel Koch, terrestris GmbH & Co. KG
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classOgcEnum.EndPointA enum type for the allowed endPoint format.static classOgcEnum.OperationA enum type for the allowed operation format.static classOgcEnum.OperationTypeA enum type for the allowed operation type format.static classOgcEnum.ServiceA enum type for the allowed service format.static classOgcEnum.ServiceTypeA enum type for the allowed service type format.
-
Field Summary
Fields Modifier and Type Field Description static Map<OgcEnum.ServiceType,Set<OgcEnum.OperationType>>OPERATIONS_BY_SERVICETYPEA map that contains a set ofOgcEnum.OperationTypes for any possibleOgcEnum.ServiceType.static Map<OgcEnum.OperationType,Set<OgcEnum.ServiceType>>SERVICETYPES_BY_OPERATIONA map that contains a set ofOgcEnum.ServiceTypes for any possibleOgcEnum.OperationType.
-
Constructor Summary
Constructors Constructor Description OgcEnum()
-
-
-
Field Detail
-
OPERATIONS_BY_SERVICETYPE
public static final Map<OgcEnum.ServiceType,Set<OgcEnum.OperationType>> OPERATIONS_BY_SERVICETYPE
A map that contains a set ofOgcEnum.OperationTypes for any possibleOgcEnum.ServiceType. See also the opposite collection SERVICETYPES_BY_OPERATION.
-
SERVICETYPES_BY_OPERATION
public static final Map<OgcEnum.OperationType,Set<OgcEnum.ServiceType>> SERVICETYPES_BY_OPERATION
A map that contains a set ofOgcEnum.ServiceTypes for any possibleOgcEnum.OperationType. See also the opposite collection OPERATIONS_BY_SERVICETYPE.
-
-