Package de.svenkubiak.jpushover.enums
Enum Param
- java.lang.Object
-
- java.lang.Enum<Param>
-
- de.svenkubiak.jpushover.enums.Param
-
- All Implemented Interfaces:
Serializable
,Comparable<Param>
public enum Param extends Enum<Param>
- Author:
- svenkubiak
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static Param
valueOf(String name)
Returns the enum constant of this type with the specified name.static Param[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CALLBACK
public static final Param CALLBACK
-
COUNT
public static final Param COUNT
-
DEVICE
public static final Param DEVICE
-
EXPIRE
public static final Param EXPIRE
-
HTML
public static final Param HTML
-
MESSAGE
public static final Param MESSAGE
-
MONOSPACE
public static final Param MONOSPACE
-
PERCENT
public static final Param PERCENT
-
PRIORITY
public static final Param PRIORITY
-
RETRY
public static final Param RETRY
-
SOUND
public static final Param SOUND
-
SUBTEXT
public static final Param SUBTEXT
-
TEXT
public static final Param TEXT
-
TIMESTAMP
public static final Param TIMESTAMP
-
TITLE
public static final Param TITLE
-
TOKEN
public static final Param TOKEN
-
URL
public static final Param URL
-
URL_TITLE
public static final Param URL_TITLE
-
USER
public static final Param USER
-
TTL
public static final Param TTL
-
-
Method Detail
-
values
public static Param[] 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 (Param c : Param.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Param valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-