public enum IconType extends Enum<IconType>
| Enum Constant and Description |
|---|
AIRPLANE |
BRAIN |
CONSTRUCTION |
CROSS |
EXCLAMATIONMARK |
FOOTBALL |
QUESTIONMARK |
ROCKET |
TORSO |
| Modifier and Type | Method and Description |
|---|---|
static IconType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IconType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IconType CONSTRUCTION
public static final IconType AIRPLANE
public static final IconType QUESTIONMARK
public static final IconType FOOTBALL
public static final IconType ROCKET
public static final IconType BRAIN
public static final IconType EXCLAMATIONMARK
public static final IconType CROSS
public static final IconType TORSO
public static IconType[] values()
for (IconType c : IconType.values()) System.out.println(c);
public static IconType 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 nullCopyright © 2010–2020 T.I.V. Consulting GmbH. All rights reserved.