public enum IOBankType extends Enum<IOBankType>
Enum Constant and Description |
---|
BT_ADC |
BT_DAC |
BT_HIGH_DENSITY |
BT_HIGH_PERFORMANCE |
BT_HIGH_RANGE |
BT_MGT |
BT_NO_USER_IO |
BT_PSS |
BT_XP |
Modifier and Type | Method and Description |
---|---|
static IOBankType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IOBankType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IOBankType BT_ADC
public static final IOBankType BT_DAC
public static final IOBankType BT_HIGH_DENSITY
public static final IOBankType BT_HIGH_PERFORMANCE
public static final IOBankType BT_HIGH_RANGE
public static final IOBankType BT_MGT
public static final IOBankType BT_NO_USER_IO
public static final IOBankType BT_PSS
public static final IOBankType BT_XP
public static IOBankType[] values()
for (IOBankType c : IOBankType.values()) System.out.println(c);
public static IOBankType 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