public enum AddressType extends java.lang.Enum<AddressType>
Enum Constant and Description |
---|
IpmbSlaveAddress |
SystemSoftwareId |
Modifier and Type | Method and Description |
---|---|
int |
getCode() |
static AddressType |
parseInt(int value) |
static AddressType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AddressType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AddressType IpmbSlaveAddress
public static final AddressType SystemSoftwareId
public static AddressType[] values()
for (AddressType c : AddressType.values()) System.out.println(c);
public static AddressType 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 nullpublic int getCode()
public static AddressType parseInt(int value)