public enum TableStyle extends Enum<TableStyle>
Enum Constant and Description |
---|
ASCII |
ASCII_BLANK |
BLANK |
DOUBLE |
DOUBLE_SINGLE |
SINGLE |
SINGLE_BLANK |
SINGLE_DASHED |
SINGLE_DOUBLE |
Modifier and Type | Method and Description |
---|---|
org.refcodes.mixin.TableBody<Character> |
getBody()
Returns the table body's characters.
|
org.refcodes.mixin.TableHeader<Character> |
getHeader()
Returns the table header's characters.
|
org.refcodes.mixin.TableTail<Character> |
getTail()
Returns the table tail's characters.
|
static TableStyle |
toTableStyle(String aValue) |
static TableStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableStyle SINGLE
public static final TableStyle DOUBLE
public static final TableStyle DOUBLE_SINGLE
public static final TableStyle SINGLE_DOUBLE
public static final TableStyle SINGLE_DASHED
public static final TableStyle ASCII
public static final TableStyle BLANK
public static final TableStyle SINGLE_BLANK
public static final TableStyle ASCII_BLANK
public static TableStyle[] values()
for (TableStyle c : TableStyle.values()) System.out.println(c);
public static TableStyle 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 org.refcodes.mixin.TableHeader<Character> getHeader()
public org.refcodes.mixin.TableBody<Character> getBody()
public org.refcodes.mixin.TableTail<Character> getTail()
public static TableStyle toTableStyle(String aValue)
Copyright © 2017. All rights reserved.