public static enum CircuitChangeJobs.ChangeArcEnum extends java.lang.Enum<CircuitChangeJobs.ChangeArcEnum>
Enum Constant and Description |
---|
DIRECTIONAL |
FIXEDANGLE |
HEADEXTEND |
NONFIXEDANGLE |
NONRIGID |
RIGID |
TAILEXTEND |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static CircuitChangeJobs.ChangeArcEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CircuitChangeJobs.ChangeArcEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CircuitChangeJobs.ChangeArcEnum RIGID
public static final CircuitChangeJobs.ChangeArcEnum NONRIGID
public static final CircuitChangeJobs.ChangeArcEnum FIXEDANGLE
public static final CircuitChangeJobs.ChangeArcEnum NONFIXEDANGLE
public static final CircuitChangeJobs.ChangeArcEnum DIRECTIONAL
public static final CircuitChangeJobs.ChangeArcEnum HEADEXTEND
public static final CircuitChangeJobs.ChangeArcEnum TAILEXTEND
public static CircuitChangeJobs.ChangeArcEnum[] values()
for (CircuitChangeJobs.ChangeArcEnum c : CircuitChangeJobs.ChangeArcEnum.values()) System.out.println(c);
public static CircuitChangeJobs.ChangeArcEnum valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<CircuitChangeJobs.ChangeArcEnum>