net.opengis.olsnav.v_1_3
Enum CursorOriginEnum

java.lang.Object
  extended by java.lang.Enum<CursorOriginEnum>
      extended by net.opengis.olsnav.v_1_3.CursorOriginEnum
All Implemented Interfaces:
Serializable, Comparable<CursorOriginEnum>

public enum CursorOriginEnum
extends Enum<CursorOriginEnum>

Java class for CursorOriginEnum.

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

 <simpleType name="CursorOriginEnum">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="CURRENT_POSITION"/>
     <enumeration value="RESULT_SET_START"/>
     <enumeration value="RESULT_SET_END"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
CURRENT_POSITION
           
RESULT_SET_END
           
RESULT_SET_START
           
 
Method Summary
static CursorOriginEnum fromValue(String v)
           
 String value()
           
static CursorOriginEnum valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CursorOriginEnum[] 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

CURRENT_POSITION

public static final CursorOriginEnum CURRENT_POSITION

RESULT_SET_START

public static final CursorOriginEnum RESULT_SET_START

RESULT_SET_END

public static final CursorOriginEnum RESULT_SET_END
Method Detail

values

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

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

valueOf

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


Copyright © 2008-2015. All Rights Reserved.