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