com.eu.miscedautils.verilogparser
Enum FVPNet.NetType

java.lang.Object
  extended by java.lang.Enum<FVPNet.NetType>
      extended by com.eu.miscedautils.verilogparser.FVPNet.NetType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FVPNet.NetType>
Enclosing class:
FVPNet

public static enum FVPNet.NetType
extends java.lang.Enum<FVPNet.NetType>


Enum Constant Summary
IMPLICIT_PORT_WIRE
           
SUPPLY0
           
SUPPLY1
           
TRI
           
TRI0
           
TRI1
           
TRIAND
           
TRIOR
           
TRIREG
           
UNKNOWN
           
WAND
           
WIRE
           
WOR
           
 
Method Summary
static FVPNet.NetType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FVPNet.NetType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

WIRE

public static final FVPNet.NetType WIRE

TRI

public static final FVPNet.NetType TRI

TRI1

public static final FVPNet.NetType TRI1

SUPPLY0

public static final FVPNet.NetType SUPPLY0

WAND

public static final FVPNet.NetType WAND

TRIAND

public static final FVPNet.NetType TRIAND

TRI0

public static final FVPNet.NetType TRI0

SUPPLY1

public static final FVPNet.NetType SUPPLY1

WOR

public static final FVPNet.NetType WOR

TRIOR

public static final FVPNet.NetType TRIOR

TRIREG

public static final FVPNet.NetType TRIREG

IMPLICIT_PORT_WIRE

public static final FVPNet.NetType IMPLICIT_PORT_WIRE

UNKNOWN

public static final FVPNet.NetType UNKNOWN
Method Detail

values

public static FVPNet.NetType[] 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 (FVPNet.NetType c : FVPNet.NetType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static FVPNet.NetType 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