public static enum PinEdge.Transition extends java.lang.Enum<PinEdge.Transition>
Enum Constant and Description |
---|
FALL
a falling edge
|
RISE
a rising edge
|
STABLE0
a stable low voltage
|
STABLE1
a stable high voltage
|
STABLEV
a stable analog voltage
|
Modifier and Type | Method and Description |
---|---|
static PinEdge.Transition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PinEdge.Transition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PinEdge.Transition STABLE1
public static final PinEdge.Transition STABLE0
public static final PinEdge.Transition RISE
public static final PinEdge.Transition FALL
public static final PinEdge.Transition STABLEV
public static PinEdge.Transition[] values()
for (PinEdge.Transition c : PinEdge.Transition.values()) System.out.println(c);
public static PinEdge.Transition 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