Package io.tlf.jme.jfx.injfx.processor
Enum FrameTransferSceneProcessor.TransferMode
- java.lang.Object
-
- java.lang.Enum<FrameTransferSceneProcessor.TransferMode>
-
- io.tlf.jme.jfx.injfx.processor.FrameTransferSceneProcessor.TransferMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FrameTransferSceneProcessor.TransferMode>
- Enclosing interface:
- FrameTransferSceneProcessor
public static enum FrameTransferSceneProcessor.TransferMode extends java.lang.Enum<FrameTransferSceneProcessor.TransferMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALWAYSON_CHANGES
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FrameTransferSceneProcessor.TransferModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FrameTransferSceneProcessor.TransferMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALWAYS
public static final FrameTransferSceneProcessor.TransferMode ALWAYS
-
ON_CHANGES
public static final FrameTransferSceneProcessor.TransferMode ON_CHANGES
-
-
Method Detail
-
values
public static FrameTransferSceneProcessor.TransferMode[] 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 (FrameTransferSceneProcessor.TransferMode c : FrameTransferSceneProcessor.TransferMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FrameTransferSceneProcessor.TransferMode 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
-
-