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