public enum ContainerAnimations extends java.lang.Enum<ContainerAnimations>
AnimatedFlowContainer.| Enum Constant and Description |
|---|
FADE
A fade between the old and new view
|
SWIPE_LEFT
A swipe effect
|
SWIPE_RIGHT
A swipe effect
|
ZOOM_IN
A zoom effect
|
ZOOM_OUT
A zoom effect
|
| Modifier and Type | Method and Description |
|---|---|
java.util.function.Function<AnimatedFlowContainer,java.util.List<javafx.animation.KeyFrame>> |
getAnimationProducer()
Returns the list of
KeyFrame instances that defines the animation. |
static ContainerAnimations |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContainerAnimations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerAnimations FADE
public static final ContainerAnimations ZOOM_IN
public static final ContainerAnimations ZOOM_OUT
public static final ContainerAnimations SWIPE_LEFT
public static final ContainerAnimations SWIPE_RIGHT
public static ContainerAnimations[] values()
for (ContainerAnimations c : ContainerAnimations.values()) System.out.println(c);
public static ContainerAnimations valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.util.function.Function<AnimatedFlowContainer,java.util.List<javafx.animation.KeyFrame>> getAnimationProducer()
KeyFrame instances that defines the animation.