@PublicAPI public enum CardLayoutArrangement extends java.lang.Enum<CardLayoutArrangement>
Enum Constant and Description |
---|
ThreeXOne |
ThreeXTwo |
TwoXOne |
TwoXTwo |
Modifier and Type | Method and Description |
---|---|
int |
getCode() |
int |
getColumn() |
int |
getRow() |
static CardLayoutArrangement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CardLayoutArrangement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CardLayoutArrangement TwoXOne
public static final CardLayoutArrangement ThreeXOne
public static final CardLayoutArrangement TwoXTwo
public static final CardLayoutArrangement ThreeXTwo
public static CardLayoutArrangement[] values()
for (CardLayoutArrangement c : CardLayoutArrangement.values()) System.out.println(c);
public static CardLayoutArrangement 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 nullpublic int getCode()
public int getRow()
public int getColumn()