net.opengis.kml.v_2_3
Enum ItemIconStateEnumType

java.lang.Object
  extended by java.lang.Enum<ItemIconStateEnumType>
      extended by net.opengis.kml.v_2_3.ItemIconStateEnumType
All Implemented Interfaces:
Serializable, Comparable<ItemIconStateEnumType>

public enum ItemIconStateEnumType
extends Enum<ItemIconStateEnumType>

Java class for itemIconStateEnumType.

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

 <simpleType name="itemIconStateEnumType">
   <restriction base="{http://www.opengis.net/kml/2.2}enumBaseType">
     <enumeration value="open"/>
     <enumeration value="closed"/>
     <enumeration value="error"/>
     <enumeration value="fetching0"/>
     <enumeration value="fetching1"/>
     <enumeration value="fetching2"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
CLOSED
           
ERROR
           
FETCHING_0
           
FETCHING_1
           
FETCHING_2
           
OPEN
           
 
Method Summary
static ItemIconStateEnumType fromValue(String v)
           
 String value()
           
static ItemIconStateEnumType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ItemIconStateEnumType[] 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

OPEN

public static final ItemIconStateEnumType OPEN

CLOSED

public static final ItemIconStateEnumType CLOSED

ERROR

public static final ItemIconStateEnumType ERROR

FETCHING_0

public static final ItemIconStateEnumType FETCHING_0

FETCHING_1

public static final ItemIconStateEnumType FETCHING_1

FETCHING_2

public static final ItemIconStateEnumType FETCHING_2
Method Detail

values

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

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

valueOf

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


Copyright © 2008-2016. All Rights Reserved.