com.shephertz.app42.paas.sdk.android.util
Enum PAE_Constants
java.lang.Object
java.lang.Enum<PAE_Constants>
com.shephertz.app42.paas.sdk.android.util.PAE_Constants
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<PAE_Constants>
public enum PAE_Constants
- extends java.lang.Enum<PAE_Constants>
- Author:
- Ajay Tiwari
Method Summary |
java.lang.String |
getValue()
|
static PAE_Constants |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static PAE_Constants[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
API_KEYS
public static final PAE_Constants API_KEYS
VERSION
public static final PAE_Constants VERSION
TIME_SATMP
public static final PAE_Constants TIME_SATMP
LOG_TAG
public static final PAE_Constants LOG_TAG
values
public static PAE_Constants[] 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 (PAE_Constants c : PAE_Constants.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static PAE_Constants 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
getValue
public java.lang.String getValue()