public static enum OpenOp.Complexity extends java.lang.Enum<OpenOp.Complexity>
| Enum Constant and Description |
|---|
COMPLEX
This level is complex, which will cause certain levels downstream from here (that might otherwise fit on
the same line) to not be considered.
|
SIMPLE
This level is simple.
|
| Modifier and Type | Method and Description |
|---|---|
static OpenOp.Complexity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OpenOp.Complexity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OpenOp.Complexity SIMPLE
public static final OpenOp.Complexity COMPLEX
public static OpenOp.Complexity[] values()
for (OpenOp.Complexity c : OpenOp.Complexity.values()) System.out.println(c);
public static OpenOp.Complexity 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 null