net.opengis.wcps.v_1_0
Enum RangeFieldType

java.lang.Object
  extended by java.lang.Enum<RangeFieldType>
      extended by net.opengis.wcps.v_1_0.RangeFieldType
All Implemented Interfaces:
Serializable, Comparable<RangeFieldType>

public enum RangeFieldType
extends Enum<RangeFieldType>

Java class for RangeFieldType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="RangeFieldType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="bool"/>
     <enumeration value="char"/>
     <enumeration value="unsigned char"/>
     <enumeration value="short"/>
     <enumeration value="unsigned short"/>
     <enumeration value="long"/>
     <enumeration value="unsigned long"/>
     <enumeration value="float"/>
     <enumeration value="double"/>
     <enumeration value="complex"/>
     <enumeration value="complex2"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
BOOL
           
CHAR
           
COMPLEX
           
COMPLEX_2
           
DOUBLE
           
FLOAT
           
LONG
           
SHORT
           
UNSIGNED_CHAR
           
UNSIGNED_LONG
           
UNSIGNED_SHORT
           
 
Method Summary
static RangeFieldType fromValue(String v)
           
 String value()
           
static RangeFieldType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static RangeFieldType[] 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

BOOL

public static final RangeFieldType BOOL

CHAR

public static final RangeFieldType CHAR

UNSIGNED_CHAR

public static final RangeFieldType UNSIGNED_CHAR

SHORT

public static final RangeFieldType SHORT

UNSIGNED_SHORT

public static final RangeFieldType UNSIGNED_SHORT

LONG

public static final RangeFieldType LONG

UNSIGNED_LONG

public static final RangeFieldType UNSIGNED_LONG

FLOAT

public static final RangeFieldType FLOAT

DOUBLE

public static final RangeFieldType DOUBLE

COMPLEX

public static final RangeFieldType COMPLEX

COMPLEX_2

public static final RangeFieldType COMPLEX_2
Method Detail

values

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

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

valueOf

public static RangeFieldType 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 RangeFieldType fromValue(String v)


Copyright © 2008-2015. All Rights Reserved.