com.android.sdklib.devices
Enum ButtonType
java.lang.Object
java.lang.Enum<ButtonType>
com.android.sdklib.devices.ButtonType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ButtonType>
public enum ButtonType
- extends java.lang.Enum<ButtonType>
Method Summary |
java.lang.String |
getDescription()
|
static ButtonType |
getEnum(java.lang.String value)
|
java.lang.String |
toString()
|
static ButtonType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ButtonType[] |
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, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
HARD
public static final ButtonType HARD
SOFT
public static final ButtonType SOFT
values
public static ButtonType[] 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 (ButtonType c : ButtonType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ButtonType 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
getEnum
@Nullable
public static ButtonType getEnum(@NonNull
java.lang.String value)
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Enum<ButtonType>
getDescription
@NonNull
public java.lang.String getDescription()