public enum PushBackend extends java.lang.Enum<PushBackend>
| Enum Constant and Description |
|---|
GCM
Google Cloud Messaging
|
JPUSH
JPush
|
| Modifier and Type | Method and Description |
|---|---|
static PushBackend |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PushBackend[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PushBackend GCM
public static final PushBackend JPUSH
public static PushBackend[] values()
for (PushBackend c : PushBackend.values()) System.out.println(c);
public static PushBackend 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 nullCopyright 2015 Kii Corporation. All rights reserved. (Last updated on 2016-10-13 08:55 UTC)