de.micromata.opengis.kml.v_2_2_0
Enum ListItemType

java.lang.Object
  extended by java.lang.Enum<ListItemType>
      extended by de.micromata.opengis.kml.v_2_2_0.ListItemType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ListItemType>

public enum ListItemType
extends java.lang.Enum<ListItemType>

Specifies how a Feature is displayed in the list view. Possible values are: check (default) - The Feature's visibility is tied to its item's checkbox. radioFolder - When specified for a Container, only one of the Container's items is visible at a time checkOffOnly - When specified for a Container or Network Link, prevents all items from being made visible at once—that is, the user can turn everything in the Container or Network Link off but cannot turn everything on at the same time. This setting is useful for Containers or Network Links containing large amounts of data. checkHideChildren - Use a normal checkbox for visibility but do not display the Container or Network Link's children in the list view. A checkbox allows the user to toggle visibility of the child objects in the viewer.


Enum Constant Summary
CHECK
           
CHECK_HIDE_CHILDREN
           
CHECK_OFF_ONLY
           
RADIO_FOLDER
           
 
Method Summary
static ListItemType fromValue(java.lang.String v)
           
 java.lang.String value()
           
static ListItemType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ListItemType[] 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

RADIO_FOLDER

public static final ListItemType RADIO_FOLDER

CHECK

public static final ListItemType CHECK

CHECK_HIDE_CHILDREN

public static final ListItemType CHECK_HIDE_CHILDREN

CHECK_OFF_ONLY

public static final ListItemType CHECK_OFF_ONLY
Method Detail

values

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

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

valueOf

public static ListItemType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public java.lang.String value()

fromValue

public static ListItemType fromValue(java.lang.String v)