public enum GCUBELayoutType extends Enum<GCUBELayoutType>
| Enum Constant and Description |
|---|
ONE_COL
gives you a single column layout
|
THREE_COL
gives you three columns
|
THREE_ROWS_1_2_5050_1
gives you one top initial row, followed by a row with 2 columns 50/50 split, followed by another row
|
TWO_COL_3070
gives you two columns split 30/70
|
TWO_COL_5050
gives you two columns split 50/50
|
TWO_COL_7030
gives you two columns split 70/30
|
TWO_ROWS_1_2_3070
gives you one top initial row, followed by 2 columns split 30/70
|
TWO_ROWS_1_2_7030
gives you one top initial row, followed by 2 columns split 70/30
|
TWO_ROWS_2_7030_2_3070
gives you one row with 2 columns 70/30 split followed by another row with 2 columns 30/70 split.
|
| Modifier and Type | Method and Description |
|---|---|
static GCUBELayoutType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GCUBELayoutType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GCUBELayoutType ONE_COL
public static final GCUBELayoutType TWO_COL_5050
public static final GCUBELayoutType TWO_COL_3070
public static final GCUBELayoutType TWO_COL_7030
public static final GCUBELayoutType THREE_COL
public static final GCUBELayoutType TWO_ROWS_1_2_3070
public static final GCUBELayoutType TWO_ROWS_1_2_7030
public static final GCUBELayoutType THREE_ROWS_1_2_5050_1
public static final GCUBELayoutType TWO_ROWS_2_7030_2_3070
public static GCUBELayoutType[] values()
for (GCUBELayoutType c : GCUBELayoutType.values()) System.out.println(c);
public static GCUBELayoutType 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 © 2017. All Rights Reserved.