public static enum TTableWidget.Border extends java.lang.Enum<TTableWidget.Border>
Enum Constant and Description |
---|
DOUBLE
Double bar: ║ (vertical) and ═ (horizontal).
|
NONE
No border.
|
SINGLE
Single bar: │ (vertical) and ─ (horizontal).
|
THICK
Thick bar: ┃ (vertical heavy) and ━ (horizontal heavy).
|
Modifier and Type | Method and Description |
---|---|
static TTableWidget.Border |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TTableWidget.Border[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TTableWidget.Border NONE
public static final TTableWidget.Border SINGLE
public static final TTableWidget.Border DOUBLE
public static final TTableWidget.Border THICK
public static TTableWidget.Border[] values()
for (TTableWidget.Border c : TTableWidget.Border.values()) System.out.println(c);
public static TTableWidget.Border valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2019 Kevin Lamonte. Licensed MIT.