public enum Bracketing extends Enum<Bracketing>
Expression
s are surrounded with brackets when formatted.Enum Constant and Description |
---|
ALL
Put all
Expression s in brackets. |
INNER
Put all inner
Expression s in brackets. |
MINIMAL
Put only
Expression s in brackets where required (e.g. |
Modifier and Type | Method and Description |
---|---|
static Bracketing |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Bracketing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Bracketing ALL
Expression
s in brackets.public static final Bracketing INNER
Expression
s in brackets.public static final Bracketing MINIMAL
public static Bracketing[] values()
for (Bracketing c : Bracketing.values()) System.out.println(c);
public static Bracketing 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–2016 mmm-Team. All rights reserved.