public static enum ISimulator.Extension extends java.lang.Enum<ISimulator.Extension>
BitSit
should be extended when being set on a larger input pin.Enum Constant and Description |
---|
NONE |
SIGN_EXTEND |
ZERO_EXTEND |
Modifier and Type | Method and Description |
---|---|
static ISimulator.Extension |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ISimulator.Extension[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ISimulator.Extension NONE
public static final ISimulator.Extension ZERO_EXTEND
public static final ISimulator.Extension SIGN_EXTEND
public static ISimulator.Extension[] values()
for (ISimulator.Extension c : ISimulator.Extension.values()) System.out.println(c);
public static ISimulator.Extension 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