public enum Style extends Enum<Style>
Enum Constant and Description |
---|
METHOD_INVOCATION_ON_NEW_LINE
Force method invocation to a new line.
|
Modifier and Type | Method and Description |
---|---|
static Style |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style METHOD_INVOCATION_ON_NEW_LINE
Invoke
expressions.
A new line is forced with an empty comment on the last element of the line.
This style can be applied to the last element in an invocation chain and will force every preceding invocation to end with a new line.
public static Style[] values()
for (Style c : Style.values()) System.out.println(c);
public static Style 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–2018 jenesis4java. All rights reserved.