public static enum CefPrintSettings.DuplexMode extends java.lang.Enum<CefPrintSettings.DuplexMode>
| Enum Constant and Description |
|---|
DUPLEX_MODE_LONG_EDGE |
DUPLEX_MODE_SHORT_EDGE |
DUPLEX_MODE_SIMPLEX |
DUPLEX_MODE_UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static CefPrintSettings.DuplexMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CefPrintSettings.DuplexMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CefPrintSettings.DuplexMode DUPLEX_MODE_LONG_EDGE
public static final CefPrintSettings.DuplexMode DUPLEX_MODE_SHORT_EDGE
public static final CefPrintSettings.DuplexMode DUPLEX_MODE_SIMPLEX
public static final CefPrintSettings.DuplexMode DUPLEX_MODE_UNKNOWN
public static CefPrintSettings.DuplexMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static CefPrintSettings.DuplexMode[] values()
for (CefPrintSettings.DuplexMode c : CefPrintSettings.DuplexMode.values()) System.out.println(c);