Package net.webpdf.wsclient.openapi
Enum OperationTransition.DirectionEnum
- java.lang.Object
-
- java.lang.Enum<OperationTransition.DirectionEnum>
-
- net.webpdf.wsclient.openapi.OperationTransition.DirectionEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationTransition.DirectionEnum>
- Enclosing class:
- OperationTransition
public static enum OperationTransition.DirectionEnum extends Enum<OperationTransition.DirectionEnum>
The direction of the transition animation (provided that it can be applied to the animation). * leftToRight = From left to right * bottomToTop = From bottom to top * rightToLeft = From right to left * topToBottom = From top to bottom * topLeftToBottomRight = From top left to bottom right * none = Use the default value for the animation
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOTTOMTOTOPLEFTTORIGHTNONERIGHTTOLEFTTOPLEFTTOBOTTOMRIGHTTOPTOBOTTOM
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationTransition.DirectionEnumfromValue(String value)StringgetValue()StringtoString()static OperationTransition.DirectionEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationTransition.DirectionEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LEFTTORIGHT
public static final OperationTransition.DirectionEnum LEFTTORIGHT
-
BOTTOMTOTOP
public static final OperationTransition.DirectionEnum BOTTOMTOTOP
-
RIGHTTOLEFT
public static final OperationTransition.DirectionEnum RIGHTTOLEFT
-
TOPTOBOTTOM
public static final OperationTransition.DirectionEnum TOPTOBOTTOM
-
TOPLEFTTOBOTTOMRIGHT
public static final OperationTransition.DirectionEnum TOPLEFTTOBOTTOMRIGHT
-
NONE
public static final OperationTransition.DirectionEnum NONE
-
-
Method Detail
-
values
public static OperationTransition.DirectionEnum[] 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 (OperationTransition.DirectionEnum c : OperationTransition.DirectionEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationTransition.DirectionEnum valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<OperationTransition.DirectionEnum>
-
fromValue
public static OperationTransition.DirectionEnum fromValue(String value)
-
-