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>
| Enum Constant and Description |
|---|
BURST |
EACH |
FIRST |
GROUP |
LAST |
LIST |
SINGLE |
| Modifier and Type | Method and Description |
|---|---|
static SplitModeType |
fromValue(String v) |
String |
value() |
static SplitModeType |
valueOf(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.
|
public static final SplitModeType LAST
public static final SplitModeType FIRST
public static final SplitModeType LIST
public static final SplitModeType SINGLE
public static final SplitModeType EACH
public static final SplitModeType GROUP
public static final SplitModeType BURST
public static SplitModeType[] values()
for (SplitModeType c : SplitModeType.values()) System.out.println(c);
public static SplitModeType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic String value()
public static SplitModeType fromValue(String v)
Copyright © 2017–2019 SoftVision Development GmbH, Fulda, Germany. All rights reserved.