public enum TableCaptionHandling extends Enum<TableCaptionHandling>
| Enum Constant and Description |
|---|
ADD |
AS_IS |
REMOVE |
REMOVE_EMPTY |
| Modifier and Type | Method and Description |
|---|---|
static TableCaptionHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableCaptionHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableCaptionHandling AS_IS
public static final TableCaptionHandling ADD
public static final TableCaptionHandling REMOVE_EMPTY
public static final TableCaptionHandling REMOVE
public static TableCaptionHandling[] values()
for (TableCaptionHandling c : TableCaptionHandling.values()) System.out.println(c);
public static TableCaptionHandling 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 © 2020. All rights reserved.