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