public static enum Box.DisplayType extends Enum<Box.DisplayType>
| Enum Constant and Description |
|---|
BLOCK |
INLINE |
INLINE_BLOCK |
INLINE_TABLE |
LIST_ITEM |
NONE |
RUN_IN |
TABLE |
TABLE_CAPTION |
TABLE_CELL |
TABLE_COLUMN |
TABLE_COLUMN_GROUP |
TABLE_FOOTER_GROUP |
TABLE_HEADER_GROUP |
TABLE_ROW |
TABLE_ROW_GROUP |
| Modifier and Type | Method and Description |
|---|---|
static Box.DisplayType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Box.DisplayType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Box.DisplayType NONE
public static final Box.DisplayType INLINE
public static final Box.DisplayType BLOCK
public static final Box.DisplayType LIST_ITEM
public static final Box.DisplayType INLINE_BLOCK
public static final Box.DisplayType RUN_IN
public static final Box.DisplayType TABLE
public static final Box.DisplayType INLINE_TABLE
public static final Box.DisplayType TABLE_ROW_GROUP
public static final Box.DisplayType TABLE_HEADER_GROUP
public static final Box.DisplayType TABLE_FOOTER_GROUP
public static final Box.DisplayType TABLE_ROW
public static final Box.DisplayType TABLE_COLUMN_GROUP
public static final Box.DisplayType TABLE_COLUMN
public static final Box.DisplayType TABLE_CELL
public static final Box.DisplayType TABLE_CAPTION
public static Box.DisplayType[] values()
for (Box.DisplayType c : Box.DisplayType.values()) System.out.println(c);
public static Box.DisplayType 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 © 2015. All rights reserved.