public static enum IPaper.Outputs extends Enum<IPaper.Outputs>
Enum Constant and Description |
---|
OUTPUT_NEWLINE
Output a newline.
|
OUTPUT_PIXEL_BLACK
Output a black pixel.
|
OUTPUT_PIXEL_WHITE
Output a white pixel.
|
Modifier and Type | Method and Description |
---|---|
static IPaper.Outputs |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IPaper.Outputs[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IPaper.Outputs OUTPUT_NEWLINE
public static final IPaper.Outputs OUTPUT_PIXEL_BLACK
public static final IPaper.Outputs OUTPUT_PIXEL_WHITE
public static IPaper.Outputs[] values()
for (IPaper.Outputs c : IPaper.Outputs.values()) System.out.println(c);
public static IPaper.Outputs 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 nullCopyright © 2018 Ken Händel. All rights reserved.