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