public static enum ItemListing.ColumnAlignment extends Enum<ItemListing.ColumnAlignment>
| Enum Constant and Description |
|---|
CENTER
Centered column content
|
LEFT
Left aligned column content
|
RIGHT
Right aligned column content
|
| Modifier and Type | Method and Description |
|---|---|
static ItemListing.ColumnAlignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ItemListing.ColumnAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemListing.ColumnAlignment LEFT
public static final ItemListing.ColumnAlignment CENTER
public static final ItemListing.ColumnAlignment RIGHT
public static ItemListing.ColumnAlignment[] values()
for (ItemListing.ColumnAlignment c : ItemListing.ColumnAlignment.values()) System.out.println(c);
public static ItemListing.ColumnAlignment 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 The Holon Platform. All rights reserved.