net.opengis.ows_context
Enum ServiceType

java.lang.Object
  extended by java.lang.Enum<ServiceType>
      extended by net.opengis.ows_context.ServiceType
All Implemented Interfaces:
Serializable, Comparable<ServiceType>

public enum ServiceType
extends Enum<ServiceType>

Classe Java pour serviceType.

Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.

 <simpleType name="serviceType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="urn:ogc:serviceType:WMS"/>
     <enumeration value="urn:ogc:serviceType:WFS"/>
     <enumeration value="urn:ogc:serviceType:WCS"/>
     <enumeration value="urn:ogc:serviceType:GML"/>
     <enumeration value="urn:ogc:serviceType:SLD"/>
     <enumeration value="urn:ogc:serviceType:FES"/>
     <enumeration value="urn:ogc:serviceType:KML"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
URN_OGC_SERVICE_TYPE_FES
           
URN_OGC_SERVICE_TYPE_GML
           
URN_OGC_SERVICE_TYPE_KML
           
URN_OGC_SERVICE_TYPE_SLD
           
URN_OGC_SERVICE_TYPE_WCS
           
URN_OGC_SERVICE_TYPE_WFS
           
URN_OGC_SERVICE_TYPE_WMS
           
 
Method Summary
static ServiceType fromValue(String v)
           
 String value()
           
static ServiceType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ServiceType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

URN_OGC_SERVICE_TYPE_WMS

public static final ServiceType URN_OGC_SERVICE_TYPE_WMS

URN_OGC_SERVICE_TYPE_WFS

public static final ServiceType URN_OGC_SERVICE_TYPE_WFS

URN_OGC_SERVICE_TYPE_WCS

public static final ServiceType URN_OGC_SERVICE_TYPE_WCS

URN_OGC_SERVICE_TYPE_GML

public static final ServiceType URN_OGC_SERVICE_TYPE_GML

URN_OGC_SERVICE_TYPE_SLD

public static final ServiceType URN_OGC_SERVICE_TYPE_SLD

URN_OGC_SERVICE_TYPE_FES

public static final ServiceType URN_OGC_SERVICE_TYPE_FES

URN_OGC_SERVICE_TYPE_KML

public static final ServiceType URN_OGC_SERVICE_TYPE_KML
Method Detail

values

public static ServiceType[] 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 (ServiceType c : ServiceType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ServiceType 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 name
NullPointerException - if the argument is null

value

public String value()

fromValue

public static ServiceType fromValue(String v)


Copyright © 2014 IRSTV CNRS-FR-2488. All Rights Reserved.