public enum MergeModeType extends Enum<MergeModeType>
Java class for MergeModeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="MergeModeType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="atTheEnd"/>
<enumeration value="atTheBeginning"/>
<enumeration value="afterPage"/>
<enumeration value="beforePage"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AFTER_PAGE |
AT_THE_BEGINNING |
AT_THE_END |
BEFORE_PAGE |
| Modifier and Type | Method and Description |
|---|---|
static MergeModeType |
fromValue(String v) |
String |
value() |
static MergeModeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MergeModeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MergeModeType AT_THE_END
public static final MergeModeType AT_THE_BEGINNING
public static final MergeModeType AFTER_PAGE
public static final MergeModeType BEFORE_PAGE
public static MergeModeType[] values()
for (MergeModeType c : MergeModeType.values()) System.out.println(c);
public static MergeModeType 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 MergeModeType fromValue(String v)
Copyright © 2017–2020 SoftVision Development GmbH, Fulda, Germany. All rights reserved.