public enum WrapMode extends Enum<WrapMode>
| Enum Constant and Description |
|---|
NONE
Lines of a multi-line text fragment (filter-specific) will be separated with the LF character (line feed, \n).
|
PLACEHOLDERS
Replace line terminators in multi-line text fragments (filter-specific) with in-line codes.
|
SPACES
Replace line terminators in multi-line text fragments (filter-specific) with spaces,
thus merging lines together (or unwrapping the lines).
|
| Modifier and Type | Method and Description |
|---|---|
static WrapMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WrapMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WrapMode NONE
wrapModepublic static final WrapMode SPACES
wrapModepublic static final WrapMode PLACEHOLDERS
wrapModepublic static WrapMode[] values()
for (WrapMode c : WrapMode.values()) System.out.println(c);
public static WrapMode 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 © 2019. All rights reserved.