Package jexer.effect
Enum WindowWipeInEffect.Direction
- java.lang.Object
-
- java.lang.Enum<WindowWipeInEffect.Direction>
-
- jexer.effect.WindowWipeInEffect.Direction
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<WindowWipeInEffect.Direction>
- Enclosing class:
- WindowWipeInEffect
public static enum WindowWipeInEffect.Direction extends java.lang.Enum<WindowWipeInEffect.Direction>
Direction of wipe.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WindowWipeInEffect.DirectionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WindowWipeInEffect.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 WindowWipeInEffect.Direction UP
Expose the window from bottom-to-top.
-
DOWN
public static final WindowWipeInEffect.Direction DOWN
Expose the window from top-to-bottom.
-
LEFT
public static final WindowWipeInEffect.Direction LEFT
Expose the window from right-to-left.
-
RIGHT
public static final WindowWipeInEffect.Direction RIGHT
Expose the window from left-to-right.
-
-
Method Detail
-
values
public static WindowWipeInEffect.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 (WindowWipeInEffect.Direction c : WindowWipeInEffect.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 WindowWipeInEffect.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
-
-