public static enum Line.State extends Enum<Line.State>
Enum Constant and Description |
---|
EQUAL |
NOT_EQUAL |
ONLY_LEFT |
ONLY_RIGHT |
Modifier and Type | Method and Description |
---|---|
static Line.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Line.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Line.State EQUAL
public static final Line.State NOT_EQUAL
public static final Line.State ONLY_LEFT
public static final Line.State ONLY_RIGHT
public static Line.State[] values()
for (Line.State c : Line.State.values()) System.out.println(c);
public static Line.State 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 © 2013–2021 Adobe. All rights reserved.