public static enum Lines.GroupedLineType extends Enum<Lines.GroupedLineType>
Enum Constant and Description |
---|
END
End of a group of lines
Closes an open group of lines, if any.
|
MIDDLE
A grouped line, placed in a groups middle
Adds the current line to an existing group of lines.
|
START
Start of a group of lines
Creates a new group of lines.
|
Modifier and Type | Method and Description |
---|---|
static Lines.GroupedLineType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Lines.GroupedLineType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Lines.GroupedLineType START
Creates a new group of lines. Closes a previously not-closed group, if any.
public static final Lines.GroupedLineType MIDDLE
Adds the current line to an existing group of lines. If no group was open, a new group is created.
public static final Lines.GroupedLineType END
Closes an open group of lines, if any.
public static Lines.GroupedLineType[] values()
for (Lines.GroupedLineType c : Lines.GroupedLineType.values()) System.out.println(c);
public static Lines.GroupedLineType 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 © 2025. All rights reserved.