public enum MountingType extends Enum<MountingType>
| Enum Constant and Description |
|---|
DRAWABLE
Mounting type extends Drawable.
|
INFER
Mounting type will be inferred from return type.
|
VIEW
Mounting type extends View.
|
| Modifier and Type | Method and Description |
|---|---|
static MountingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MountingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MountingType INFER
public static final MountingType VIEW
public static final MountingType DRAWABLE
public static MountingType[] values()
for (MountingType c : MountingType.values()) System.out.println(c);
public static MountingType 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 null