Enum TransitionStyleType
- java.lang.Object
-
- java.lang.Enum<TransitionStyleType>
-
- net.webpdf.wsclient.schema.operation.TransitionStyleType
-
- All Implemented Interfaces:
Serializable,Comparable<TransitionStyleType>
public enum TransitionStyleType extends Enum<TransitionStyleType>
Java class for TransitionStyleType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TransitionStyleType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="blinds"/> <enumeration value="box"/> <enumeration value="cover"/> <enumeration value="dissolve"/> <enumeration value="fade"/> <enumeration value="fly"/> <enumeration value="glitter"/> <enumeration value="push"/> <enumeration value="split"/> <enumeration value="uncover"/> <enumeration value="wipe"/> <enumeration value="none"/> </restriction> </simpleType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TransitionStyleTypefromValue(String v)Stringvalue()static TransitionStyleTypevalueOf(String name)Returns the enum constant of this type with the specified name.static TransitionStyleType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BLINDS
public static final TransitionStyleType BLINDS
-
BOX
public static final TransitionStyleType BOX
-
COVER
public static final TransitionStyleType COVER
-
DISSOLVE
public static final TransitionStyleType DISSOLVE
-
FADE
public static final TransitionStyleType FADE
-
FLY
public static final TransitionStyleType FLY
-
GLITTER
public static final TransitionStyleType GLITTER
-
PUSH
public static final TransitionStyleType PUSH
-
SPLIT
public static final TransitionStyleType SPLIT
-
UNCOVER
public static final TransitionStyleType UNCOVER
-
WIPE
public static final TransitionStyleType WIPE
-
NONE
public static final TransitionStyleType NONE
-
-
Method Detail
-
values
public static TransitionStyleType[] 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 (TransitionStyleType c : TransitionStyleType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TransitionStyleType 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
-
value
public String value()
-
fromValue
public static TransitionStyleType fromValue(String v)
-
-