public static enum Component.MountType extends java.lang.Enum<Component.MountType>
Modifier and Type | Method and Description |
---|---|
static Component.MountType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Component.MountType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Component.MountType NONE
public static final Component.MountType DRAWABLE
public static final Component.MountType VIEW
public static final Component.MountType MOUNTABLE
public static Component.MountType[] values()
for (Component.MountType c : Component.MountType.values()) System.out.println(c);
public static Component.MountType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null