public enum Whitespace extends Enum<Whitespace>
Whitespace is a whitespace character string.| Enum Constant and Description |
|---|
SPACE
A single space character.
|
TAB
A single tab character.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getWhitespaceString()
Returns the whitespace string of this
Whitespace. |
static Whitespace |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Whitespace[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Whitespace SPACE
public static final Whitespace TAB
public static Whitespace[] values()
for (Whitespace c : Whitespace.values()) System.out.println(c);
public static Whitespace 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 getWhitespaceString()
Whitespace.Whitespace.Copyright © 2016 Markenwerk – Gesellschaft für markenbildende Maßnahmen mbH. All rights reserved.