public static enum GridLine.DstChangeType extends Enum<GridLine.DstChangeType>
Enum Constant and Description |
---|
NO_CHANGE
A value indicating that the grid line represents no change of the DST
time.
|
SUMMER_TIME_TO_WINTER_TIME
A value indicating that the summer time is over and that the winter
time begins.
|
WINTER_TIME_TO_SUMMER_TIME
A value indicating that the winter time is over and that the summer
time begins.
|
Modifier and Type | Method and Description |
---|---|
static GridLine.DstChangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridLine.DstChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridLine.DstChangeType SUMMER_TIME_TO_WINTER_TIME
public static final GridLine.DstChangeType WINTER_TIME_TO_SUMMER_TIME
public static final GridLine.DstChangeType NO_CHANGE
public static GridLine.DstChangeType[] values()
for (GridLine.DstChangeType c : GridLine.DstChangeType.values()) System.out.println(c);
public static GridLine.DstChangeType 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 © 2006–2020 Dirk Lemmermann Software & Consulting. All rights reserved.