public static enum DRC.DRCCheckMode extends java.lang.Enum<DRC.DRCCheckMode>
| Enum Constant and Description |
|---|
ERROR_CHECK_CELL
DRC stops after first error between 2 nodes is found (default)
|
ERROR_CHECK_DEFAULT |
ERROR_CHECK_EXHAUSTIVE
DRC stops after first error per cell is found
|
| Modifier and Type | Method and Description |
|---|---|
int |
mode() |
java.lang.String |
toString() |
static DRC.DRCCheckMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DRC.DRCCheckMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DRC.DRCCheckMode ERROR_CHECK_DEFAULT
public static final DRC.DRCCheckMode ERROR_CHECK_CELL
public static final DRC.DRCCheckMode ERROR_CHECK_EXHAUSTIVE
public static DRC.DRCCheckMode[] values()
for (DRC.DRCCheckMode c : DRC.DRCCheckMode.values()) System.out.println(c);
public static DRC.DRCCheckMode 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 int mode()
public java.lang.String toString()
toString in class java.lang.Enum<DRC.DRCCheckMode>