public enum CardDestination extends Enum<CardDestination>
Enum Constant and Description |
---|
Eject
Sends the card to the eject bin.
|
Feeder
Returns the card to the feeder.
|
Hold
Holds the card inside the printer.
|
LaminatorAny
Sends the card to the laminator regardless of installed laminate.
ZMotif Series printers only. |
LaminatorBoth
Sends the card to the laminator for top and bottom lamination.
ZMotif Series printers only. |
LaminatorBottom
Sends the card to the laminator for bottom lamination.
ZMotif Series printers only. |
LaminatorNone
Sends the card to the laminator for no lamination.
ZMotif Series printers only. Top and bottom laminate must be removed. |
LaminatorTop
Sends the card to the laminator for top lamination.
ZMotif Series printers only. |
Reject
Sends the card to the reject bin.
ZMotif Series printers only. |
Modifier and Type | Method and Description |
---|---|
static CardDestination |
fromString(String text)
Returns the CardDestination enumeration for the specified text.
|
String |
getValue()
Returns the integer representation of the enumeration member.
|
static CardDestination |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CardDestination[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CardDestination Eject
public static final CardDestination Reject
public static final CardDestination Hold
public static final CardDestination Feeder
public static final CardDestination LaminatorTop
public static final CardDestination LaminatorBottom
public static final CardDestination LaminatorBoth
public static final CardDestination LaminatorNone
public static final CardDestination LaminatorAny
public static CardDestination[] values()
for (CardDestination c : CardDestination.values()) System.out.println(c);
public static CardDestination 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 getValue()
public static CardDestination fromString(String text)
text
- Text representation of the specified CardDestination enumeration member.
© 2016 ZIH Corp. All Rights Reserved.