com.sun.electric.tool.drc
Enum DRC.DRCErrorType
java.lang.Object
java.lang.Enum<DRC.DRCErrorType>
com.sun.electric.tool.drc.DRC.DRCErrorType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<DRC.DRCErrorType>
- Enclosing class:
- DRC
public static enum DRC.DRCErrorType
- extends java.lang.Enum<DRC.DRCErrorType>
QUICK DRC ERROR REPORTING
Method Summary |
static DRC.DRCErrorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DRC.DRCErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
SPACINGERROR
public static final DRC.DRCErrorType SPACINGERROR
MINWIDTHERROR
public static final DRC.DRCErrorType MINWIDTHERROR
NOTCHERROR
public static final DRC.DRCErrorType NOTCHERROR
MINSIZEERROR
public static final DRC.DRCErrorType MINSIZEERROR
BADLAYERERROR
public static final DRC.DRCErrorType BADLAYERERROR
LAYERSURROUNDERROR
public static final DRC.DRCErrorType LAYERSURROUNDERROR
MINAREAERROR
public static final DRC.DRCErrorType MINAREAERROR
ENCLOSEDAREAERROR
public static final DRC.DRCErrorType ENCLOSEDAREAERROR
SURROUNDERROR
public static final DRC.DRCErrorType SURROUNDERROR
FORBIDDEN
public static final DRC.DRCErrorType FORBIDDEN
RESOLUTION
public static final DRC.DRCErrorType RESOLUTION
CUTERROR
public static final DRC.DRCErrorType CUTERROR
SLOTSIZEERROR
public static final DRC.DRCErrorType SLOTSIZEERROR
ZEROLENGTHARCWARN
public static final DRC.DRCErrorType ZEROLENGTHARCWARN
TECHMIXWARN
public static final DRC.DRCErrorType TECHMIXWARN
values
public static DRC.DRCErrorType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (DRC.DRCErrorType c : DRC.DRCErrorType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static DRC.DRCErrorType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null