public enum Style extends Enum<Style>
Enum Constant and Description |
---|
BOARDINGS |
COLOR30 |
DIFFERENCE |
GRAY |
MASK |
TRANSPARENT |
Modifier and Type | Method and Description |
---|---|
static Style |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style GRAY
public static final Style COLOR30
public static final Style DIFFERENCE
public static final Style TRANSPARENT
public static final Style MASK
public static final Style BOARDINGS
public static Style[] values()
for (Style c : Style.values()) System.out.println(c);
public static Style 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 © 2019. All rights reserved.