public static enum Flag.Background extends java.lang.Enum<Flag.Background>
Enum Constant and Description |
---|
FESSES
Horizontal stripes.
|
PALES
Vertical stripes.
|
PER_BEND
Diagonal top left to bottom right.
|
PER_BEND_SINISTER
Diagonal bottom left to top right.
|
PER_SALTIRE
Quartered diagonally.
|
PLAIN
A plain background.
|
QUARTERLY
Quartered rectangularly.
|
Modifier and Type | Field and Description |
---|---|
Flag.Alignment |
alignment |
Modifier and Type | Method and Description |
---|---|
static Flag.Background |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Flag.Background[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Flag.Background PLAIN
public static final Flag.Background QUARTERLY
public static final Flag.Background PALES
public static final Flag.Background FESSES
public static final Flag.Background PER_BEND
public static final Flag.Background PER_BEND_SINISTER
public static final Flag.Background PER_SALTIRE
public final Flag.Alignment alignment
public static Flag.Background[] values()
for (Flag.Background c : Flag.Background.values()) System.out.println(c);
public static Flag.Background 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