public enum ApiScheduleInterval extends Enum<ApiScheduleInterval>
Modifier and Type | Class and Description |
---|---|
static class |
ApiScheduleInterval.Adapter |
Modifier and Type | Method and Description |
---|---|
static ApiScheduleInterval |
fromValue(String input) |
String |
getValue() |
String |
toString() |
static ApiScheduleInterval |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApiScheduleInterval[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="MINUTE") public static final ApiScheduleInterval MINUTE
@SerializedName(value="HOUR") public static final ApiScheduleInterval HOUR
@SerializedName(value="DAY") public static final ApiScheduleInterval DAY
@SerializedName(value="WEEK") public static final ApiScheduleInterval WEEK
@SerializedName(value="MONTH") public static final ApiScheduleInterval MONTH
@SerializedName(value="YEAR") public static final ApiScheduleInterval YEAR
public static ApiScheduleInterval[] values()
for (ApiScheduleInterval c : ApiScheduleInterval.values()) System.out.println(c);
public static ApiScheduleInterval 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 String getValue()
public String toString()
toString
in class Enum<ApiScheduleInterval>
public static ApiScheduleInterval fromValue(String input)
Copyright © 2024. All rights reserved.