public enum EDIFChangeType extends Enum<EDIFChangeType>
EDIFChange
Enum Constant and Description |
---|
CELL_INST_ADD |
CELL_INST_REMOVE |
NET_ADD |
NET_REMOVE |
PORT_ADD |
PORT_INST_ADD |
PORT_INST_REMOVE |
PORT_REMOVE |
Modifier and Type | Method and Description |
---|---|
static EDIFChangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EDIFChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EDIFChangeType CELL_INST_REMOVE
public static final EDIFChangeType CELL_INST_ADD
public static final EDIFChangeType NET_REMOVE
public static final EDIFChangeType NET_ADD
public static final EDIFChangeType PORT_REMOVE
public static final EDIFChangeType PORT_ADD
public static final EDIFChangeType PORT_INST_REMOVE
public static final EDIFChangeType PORT_INST_ADD
public static EDIFChangeType[] values()
for (EDIFChangeType c : EDIFChangeType.values()) System.out.println(c);
public static EDIFChangeType 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 null