public enum MultilinesStrategy extends Enum<MultilinesStrategy>
| Enum Constant and Description |
|---|
KEEP_STARTING_QUOTE |
REMOVE_STARTING_QUOTE |
| Modifier and Type | Method and Description |
|---|---|
void |
cleanList(List<? extends CharSequence> lines) |
static MultilinesStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MultilinesStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultilinesStrategy REMOVE_STARTING_QUOTE
public static final MultilinesStrategy KEEP_STARTING_QUOTE
public static MultilinesStrategy[] values()
for (MultilinesStrategy c : MultilinesStrategy.values()) System.out.println(c);
public static MultilinesStrategy 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 void cleanList(List<? extends CharSequence> lines)
Copyright © 2017. All rights reserved.