public enum AnimationFillMode extends java.lang.Enum<AnimationFillMode>
| Enum Constant and Description |
|---|
backwards |
both |
forwards |
inherit |
initial |
none |
| Modifier and Type | Method and Description |
|---|---|
static AnimationFillMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AnimationFillMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnimationFillMode none
public static final AnimationFillMode forwards
public static final AnimationFillMode backwards
public static final AnimationFillMode both
public static final AnimationFillMode initial
public static final AnimationFillMode inherit
public static AnimationFillMode[] values()
for (AnimationFillMode c : AnimationFillMode.values()) System.out.println(c);
public static AnimationFillMode 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 null