public enum CronType extends Enum<CronType>
| Enum Constant and Description |
|---|
EXPORT_PLAYADVISOR |
IMPORT_PLAYADVISOR |
IMPORT_PLAYMAPPING |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(String s) |
String |
toString() |
static CronType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CronType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="Playadvisor import") public static final CronType IMPORT_PLAYADVISOR
@SerializedName(value="Playmapping import") public static final CronType IMPORT_PLAYMAPPING
@SerializedName(value="Playadvisor export") public static final CronType EXPORT_PLAYADVISOR
public static CronType[] values()
for (CronType c : CronType.values()) System.out.println(c);
public static CronType 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 nullpublic boolean equals(String s)
Copyright © 2017. All rights reserved.