public enum TableStructureKind extends Enum<TableStructureKind>
| Enum Constant and Description |
|---|
MULTIPLE_CONTENTS
Multiple contents - for this table structure one or more table contents are allowed.
|
SINGLE_CONTENT
Single content - for this table structure only on table content is allowed.
|
| Modifier and Type | Method and Description |
|---|---|
static TableStructureKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableStructureKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableStructureKind SINGLE_CONTENT
public static final TableStructureKind MULTIPLE_CONTENTS
public static TableStructureKind[] values()
for (TableStructureKind c : TableStructureKind.values()) System.out.println(c);
public static TableStructureKind 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. All rights reserved.