public enum OperatorWrapOption extends Enum<OperatorWrapOption>
Enum Constant and Description |
---|
EOL
Require that the operator is at the end of the line.
|
NL
Require that the operator is on a new line.
|
Modifier and Type | Method and Description |
---|---|
static OperatorWrapOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperatorWrapOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperatorWrapOption NL
public static final OperatorWrapOption EOL
public static OperatorWrapOption[] values()
for (OperatorWrapOption c : OperatorWrapOption.values()) System.out.println(c);
public static OperatorWrapOption 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 © 2001-2015. All Rights Reserved.