public static enum Timeline.ZoomMode extends Enum<Timeline.ZoomMode>
Enum Constant and Description |
---|
CENTER
The time shown in the middle of the timeline will also be in the
middle after the zoom has finished.
|
KEEP_END_TIME
The time shown at the end of the timeline will also be at the end
after the zoom has finished.
|
KEEP_START_TIME
The time shown at the beginning of the timeline will also be at the
beginning after the zoom has finished.
|
Modifier and Type | Method and Description |
---|---|
static Timeline.ZoomMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Timeline.ZoomMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Timeline.ZoomMode CENTER
public static final Timeline.ZoomMode KEEP_START_TIME
public static final Timeline.ZoomMode KEEP_END_TIME
public static Timeline.ZoomMode[] values()
for (Timeline.ZoomMode c : Timeline.ZoomMode.values()) System.out.println(c);
public static Timeline.ZoomMode 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 © 2014 Dirk Lemmermann Software & Consulting. All rights reserved.