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