public enum TableStrategy extends Enum<TableStrategy>
| Enum Constant and Description |
|---|
DRAW_ALL |
DRAW_HORIZONTAL |
DRAW_NONE |
DRAW_OUTSIDE |
DRAW_OUTSIDE_WITH_TITLE |
DRAW_VERTICAL |
| Modifier and Type | Method and Description |
|---|---|
static TableStrategy |
fromChar(char c) |
static TableStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableStrategy DRAW_NONE
public static final TableStrategy DRAW_OUTSIDE
public static final TableStrategy DRAW_OUTSIDE_WITH_TITLE
public static final TableStrategy DRAW_HORIZONTAL
public static final TableStrategy DRAW_VERTICAL
public static final TableStrategy DRAW_ALL
public static TableStrategy[] values()
for (TableStrategy c : TableStrategy.values()) System.out.println(c);
public static TableStrategy 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 TableStrategy fromChar(char c)
Copyright © 2017. All rights reserved.