public static enum AbstractEmbosserWriter.Padding extends java.lang.Enum<AbstractEmbosserWriter.Padding>
| Enum Constant | Description |
|---|---|
AFTER |
Pad only after form feed.
|
BEFORE |
Pad only before form feed.
|
BOTH |
Pad both before and after form feed.
|
NONE |
Do not pad form feed.
|
| Modifier and Type | Method | Description |
|---|---|---|
static AbstractEmbosserWriter.Padding |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static AbstractEmbosserWriter.Padding[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractEmbosserWriter.Padding BOTH
public static final AbstractEmbosserWriter.Padding BEFORE
public static final AbstractEmbosserWriter.Padding AFTER
public static final AbstractEmbosserWriter.Padding NONE
public static AbstractEmbosserWriter.Padding[] values()
for (AbstractEmbosserWriter.Padding c : AbstractEmbosserWriter.Padding.values()) System.out.println(c);
public static AbstractEmbosserWriter.Padding 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 null