- java.lang.Object
-
- java.lang.Enum<LayoutAnimator.TransType>
-
- org.tbee.javafx.scene.layout.LayoutAnimator.TransType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<LayoutAnimator.TransType>
- Enclosing class:
- LayoutAnimator
static enum LayoutAnimator.TransType extends java.lang.Enum<LayoutAnimator.TransType>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
TransType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LayoutAnimator.TransType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LayoutAnimator.TransType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOUNDS
public static final LayoutAnimator.TransType BOUNDS
-
OPACITY
public static final LayoutAnimator.TransType OPACITY
-
-
Method Detail
-
values
public static LayoutAnimator.TransType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LayoutAnimator.TransType c : LayoutAnimator.TransType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LayoutAnimator.TransType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-