public enum AutoSizeMode extends java.lang.Enum<AutoSizeMode>
Enum Constant and Description |
---|
INTERPOLATION
Resizes barcode to specified size.
|
NEAREST
Resizes barcode to nearest lowest possible size specified by ImageWidth and ImageHeight properties.
|
NONE
Automatic resizing is disabled.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static AutoSizeMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutoSizeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoSizeMode NONE
public static final AutoSizeMode NEAREST
public static final AutoSizeMode INTERPOLATION
public static AutoSizeMode[] values()
for (AutoSizeMode c : AutoSizeMode.values()) System.out.println(c);
public static AutoSizeMode 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 int getValue()