public static enum Plan.DurationUnit extends Enum<Plan.DurationUnit>
| Enum Constant and Description |
|---|
DAY |
MONTH |
UNRECOGNIZED |
| Modifier and Type | Method and Description |
|---|---|
static Plan.DurationUnit |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Plan.DurationUnit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Plan.DurationUnit DAY
public static final Plan.DurationUnit MONTH
public static final Plan.DurationUnit UNRECOGNIZED
public static Plan.DurationUnit[] values()
for (Plan.DurationUnit c : Plan.DurationUnit.values()) System.out.println(c);
public static Plan.DurationUnit 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 © 2013–2018. All rights reserved.