public enum PrinterSupported extends java.lang.Enum<PrinterSupported>
Enum Constant and Description |
---|
EPSON
Epson
|
RONGTA
Rongta RP-58
|
STAR
STAR TSP100III
|
Modifier and Type | Method and Description |
---|---|
static PrinterSupported |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PrinterSupported[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrinterSupported RONGTA
public static final PrinterSupported STAR
public static final PrinterSupported EPSON
public static PrinterSupported[] values()
for (PrinterSupported c : PrinterSupported.values()) System.out.println(c);
public static PrinterSupported 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