public enum FlowStyle extends Enum<FlowStyle>
| Enum Constant and Description |
|---|
AUTO
Block style for the root level and flow style for other levels
|
BLOCK
Block style
|
FLOW
Flow style
|
| Modifier and Type | Method and Description |
|---|---|
static FlowStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowStyle FLOW
public static final FlowStyle BLOCK
public static final FlowStyle AUTO
public static FlowStyle[] values()
for (FlowStyle c : FlowStyle.values()) System.out.println(c);
public static FlowStyle 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–2022. All rights reserved.