public enum Range extends Enum<Range>
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Range |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Range[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="last30") public static final Range LAST30
@SerializedName(value="last60") public static final Range LAST60
@SerializedName(value="last180") public static final Range LAST180
@SerializedName(value="last365") public static final Range LAST365
public static Range[] values()
for (Range c : Range.values()) System.out.println(c);
public static Range 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 nullCopyright © 2023 Cense Data Inc.. All rights reserved.