public enum EIntervalType extends Enum<EIntervalType>
Enum Constant and Description |
---|
itDay |
itDayToDay |
itDayToHour |
itDayToMinute |
itDayToSecond |
itHour |
itHourToHour |
itHourToMinute |
itHourToSecond |
itMinute |
itMinuteToMinute |
itMinuteToSecond |
itMonth |
itMonthToMonth |
itSecond |
itYear |
itYearToMonth |
itYearToYear |
Modifier and Type | Method and Description |
---|---|
static EIntervalType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EIntervalType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EIntervalType itYear
public static final EIntervalType itYearToYear
public static final EIntervalType itYearToMonth
public static final EIntervalType itMonth
public static final EIntervalType itMonthToMonth
public static final EIntervalType itDay
public static final EIntervalType itDayToDay
public static final EIntervalType itDayToHour
public static final EIntervalType itDayToMinute
public static final EIntervalType itDayToSecond
public static final EIntervalType itHour
public static final EIntervalType itHourToHour
public static final EIntervalType itHourToMinute
public static final EIntervalType itHourToSecond
public static final EIntervalType itMinute
public static final EIntervalType itMinuteToMinute
public static final EIntervalType itMinuteToSecond
public static final EIntervalType itSecond
public static EIntervalType[] values()
for (EIntervalType c : EIntervalType.values()) System.out.println(c);
public static EIntervalType 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.