public enum StructureOutput extends Enum<StructureOutput>
| Enum Constant and Description |
|---|
BACKSLASH_LOWLINE |
COLON |
LONG_NEW_LINE |
LONG_TAB |
LOW_LINE |
NEW_LINE |
SPACE |
TAB |
VERTICAL_BAR |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static StructureOutput |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StructureOutput[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructureOutput SPACE
public static final StructureOutput NEW_LINE
public static final StructureOutput COLON
public static final StructureOutput VERTICAL_BAR
public static final StructureOutput LOW_LINE
public static final StructureOutput BACKSLASH_LOWLINE
public static final StructureOutput TAB
public static final StructureOutput LONG_NEW_LINE
public static final StructureOutput LONG_TAB
public static StructureOutput[] values()
for (StructureOutput c : StructureOutput.values()) System.out.println(c);
public static StructureOutput 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 String getValue()
Copyright © 2015. All rights reserved.