public static enum FixedWidthFormatter.Flow extends Enum<FixedWidthFormatter.Flow>
Enum Constant and Description |
---|
OVERFLOW
The flow should overflow.
|
TRUNCATE
The flow should be truncated.
|
WORD_WRAP
The flow should be word-wrapped.
|
WRAP
The flow should be wrapped.
|
Modifier and Type | Method and Description |
---|---|
static FixedWidthFormatter.Flow |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FixedWidthFormatter.Flow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FixedWidthFormatter.Flow TRUNCATE
public static final FixedWidthFormatter.Flow WRAP
public static final FixedWidthFormatter.Flow WORD_WRAP
public static final FixedWidthFormatter.Flow OVERFLOW
public static FixedWidthFormatter.Flow[] values()
for (FixedWidthFormatter.Flow c : FixedWidthFormatter.Flow.values()) System.out.println(c);
public static FixedWidthFormatter.Flow 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 nullCopyright © 2000-2014. All Rights Reserved.