public static enum Dateline.ZoomStrategy extends Enum<Dateline.ZoomStrategy>
Dateline.setZoomStrategy(ZoomStrategy),
Dateline.getZoomStrategy()| Enum Constant and Description |
|---|
CHANGE_VISIBLE_END_TIME
Enumerator used to let the dateline know that zoom operations shall
only modify the end time of the currently visible time span.
|
CHANGE_VISIBLE_START_AND_END_TIME
Enumerator used to let the dateline know that zoom operations shall
modify the start and the end time of the currently visible time span.
|
| Modifier and Type | Method and Description |
|---|---|
static Dateline.ZoomStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Dateline.ZoomStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dateline.ZoomStrategy CHANGE_VISIBLE_END_TIME
Dateline.setZoomStrategy(ZoomStrategy)public static final Dateline.ZoomStrategy CHANGE_VISIBLE_START_AND_END_TIME
Dateline.setZoomStrategy(ZoomStrategy)public static Dateline.ZoomStrategy[] values()
for (Dateline.ZoomStrategy c : Dateline.ZoomStrategy.values()) System.out.println(c);
public static Dateline.ZoomStrategy 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.