@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum BlockType extends Enum<BlockType>
Enum Constant and Description |
---|
CELL |
KEY_VALUE_SET |
LAYOUT_FIGURE |
LAYOUT_FOOTER |
LAYOUT_HEADER |
LAYOUT_KEY_VALUE |
LAYOUT_LIST |
LAYOUT_PAGE_NUMBER |
LAYOUT_SECTION_HEADER |
LAYOUT_TABLE |
LAYOUT_TEXT |
LAYOUT_TITLE |
LINE |
MERGED_CELL |
PAGE |
QUERY |
QUERY_RESULT |
SELECTION_ELEMENT |
SIGNATURE |
TABLE |
TABLE_FOOTER |
TABLE_TITLE |
TITLE |
WORD |
Modifier and Type | Method and Description |
---|---|
static BlockType |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static BlockType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlockType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockType KEY_VALUE_SET
public static final BlockType PAGE
public static final BlockType LINE
public static final BlockType WORD
public static final BlockType TABLE
public static final BlockType CELL
public static final BlockType SELECTION_ELEMENT
public static final BlockType MERGED_CELL
public static final BlockType TITLE
public static final BlockType QUERY
public static final BlockType QUERY_RESULT
public static final BlockType SIGNATURE
public static final BlockType TABLE_TITLE
public static final BlockType TABLE_FOOTER
public static final BlockType LAYOUT_TEXT
public static final BlockType LAYOUT_TITLE
public static final BlockType LAYOUT_HEADER
public static final BlockType LAYOUT_FOOTER
public static final BlockType LAYOUT_SECTION_HEADER
public static final BlockType LAYOUT_PAGE_NUMBER
public static final BlockType LAYOUT_LIST
public static final BlockType LAYOUT_FIGURE
public static final BlockType LAYOUT_TABLE
public static final BlockType LAYOUT_KEY_VALUE
public static BlockType[] values()
for (BlockType c : BlockType.values()) System.out.println(c);
public static BlockType 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 nullpublic static BlockType fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.