Package net.webpdf.wsclient.openapi
Enum MetadataTransition.DirectionEnum
- java.lang.Object
-
- java.lang.Enum<MetadataTransition.DirectionEnum>
-
- net.webpdf.wsclient.openapi.MetadataTransition.DirectionEnum
-
- All Implemented Interfaces:
Serializable,Comparable<MetadataTransition.DirectionEnum>
- Enclosing class:
- MetadataTransition
public static enum MetadataTransition.DirectionEnum extends Enum<MetadataTransition.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 MetadataTransition.DirectionEnumfromValue(String value)StringgetValue()StringtoString()static MetadataTransition.DirectionEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static MetadataTransition.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 MetadataTransition.DirectionEnum LEFTTORIGHT
-
BOTTOMTOTOP
public static final MetadataTransition.DirectionEnum BOTTOMTOTOP
-
RIGHTTOLEFT
public static final MetadataTransition.DirectionEnum RIGHTTOLEFT
-
TOPTOBOTTOM
public static final MetadataTransition.DirectionEnum TOPTOBOTTOM
-
TOPLEFTTOBOTTOMRIGHT
public static final MetadataTransition.DirectionEnum TOPLEFTTOBOTTOMRIGHT
-
NONE
public static final MetadataTransition.DirectionEnum NONE
-
-
Method Detail
-
values
public static MetadataTransition.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 (MetadataTransition.DirectionEnum c : MetadataTransition.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 MetadataTransition.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<MetadataTransition.DirectionEnum>
-
fromValue
public static MetadataTransition.DirectionEnum fromValue(String value)
-
-