public enum ContinuationIndent extends Enum<ContinuationIndent>
| Enum Constant and Description |
|---|
ALIGN_TO_FIRST |
INDENT_0 |
INDENT_1 |
INDENT_2 |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static ContinuationIndent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContinuationIndent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContinuationIndent ALIGN_TO_FIRST
public static final ContinuationIndent NONE
public static final ContinuationIndent INDENT_0
public static final ContinuationIndent INDENT_1
public static final ContinuationIndent INDENT_2
public static ContinuationIndent[] values()
for (ContinuationIndent c : ContinuationIndent.values()) System.out.println(c);
public static ContinuationIndent 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 © 2018. All rights reserved.