Package jexer.effect
Enum WindowWipeOutEffect.Direction
- java.lang.Object
-
- java.lang.Enum<WindowWipeOutEffect.Direction>
-
- jexer.effect.WindowWipeOutEffect.Direction
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<WindowWipeOutEffect.Direction>
- Enclosing class:
- WindowWipeOutEffect
public static enum WindowWipeOutEffect.Direction extends java.lang.Enum<WindowWipeOutEffect.Direction>
Direction of wipe.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WindowWipeOutEffect.DirectionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WindowWipeOutEffect.Direction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UP
public static final WindowWipeOutEffect.Direction UP
Clear the window from bottom-to-top.
-
DOWN
public static final WindowWipeOutEffect.Direction DOWN
Clear the window from top-to-bottom.
-
LEFT
public static final WindowWipeOutEffect.Direction LEFT
Clear the window from right-to-left.
-
RIGHT
public static final WindowWipeOutEffect.Direction RIGHT
Clear the window from left-to-right.
-
-
Method Detail
-
values
public static WindowWipeOutEffect.Direction[] 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 (WindowWipeOutEffect.Direction c : WindowWipeOutEffect.Direction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WindowWipeOutEffect.Direction 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
-
-