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