Enum SplitModeType
- java.lang.Object
-
- java.lang.Enum<SplitModeType>
-
- net.webpdf.wsclient.schema.operation.SplitModeType
-
- All Implemented Interfaces:
Serializable,Comparable<SplitModeType>
public enum SplitModeType extends Enum<SplitModeType>
Java class for SplitModeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="SplitModeType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="last"/> <enumeration value="first"/> <enumeration value="list"/> <enumeration value="single"/> <enumeration value="each"/> <enumeration value="group"/> <enumeration value="burst"/> </restriction> </simpleType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SplitModeTypefromValue(String v)Stringvalue()static SplitModeTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SplitModeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LAST
public static final SplitModeType LAST
-
FIRST
public static final SplitModeType FIRST
-
LIST
public static final SplitModeType LIST
-
SINGLE
public static final SplitModeType SINGLE
-
EACH
public static final SplitModeType EACH
-
GROUP
public static final SplitModeType GROUP
-
BURST
public static final SplitModeType BURST
-
-
Method Detail
-
values
public static SplitModeType[] 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 (SplitModeType c : SplitModeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SplitModeType 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 SplitModeType fromValue(String v)
-
-