public enum ItemIconState extends Enum<ItemIconState>
Icon used in the List view that reflects the state of a Folder or Link fetch. Icons associated with the open and closed modes are used for Folders and Network Links. Icons associated with the error and fetching0, fetching1, and fetching2 modes are used for Network Links. The following screen capture illustrates the Google Earth icons for these states:
| Enum Constant and Description |
|---|
CLOSED |
ERROR |
FETCHING_0 |
FETCHING_1 |
FETCHING_2 |
OPEN |
| Modifier and Type | Method and Description |
|---|---|
static ItemIconState |
fromValue(String v) |
String |
value() |
static ItemIconState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ItemIconState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemIconState OPEN
public static final ItemIconState CLOSED
public static final ItemIconState ERROR
public static final ItemIconState FETCHING_0
public static final ItemIconState FETCHING_1
public static final ItemIconState FETCHING_2
public static ItemIconState[] values()
for (ItemIconState c : ItemIconState.values()) System.out.println(c);
public static ItemIconState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic String value()
public static ItemIconState fromValue(String v)
Copyright © 2014 Micromata GmbH. All rights reserved.