Package org.opennms.netmgt.enlinkd.model
Enum CdpElement.CdpGlobalDeviceIdFormat
- java.lang.Object
-
- java.lang.Enum<CdpElement.CdpGlobalDeviceIdFormat>
-
- org.opennms.netmgt.enlinkd.model.CdpElement.CdpGlobalDeviceIdFormat
-
- All Implemented Interfaces:
Serializable
,Comparable<CdpElement.CdpGlobalDeviceIdFormat>
- Enclosing class:
- CdpElement
public static enum CdpElement.CdpGlobalDeviceIdFormat extends Enum<CdpElement.CdpGlobalDeviceIdFormat>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description macAddress
other
serialNumber
SYNTAX INTEGER { serialNumber(1), macAddress(2), other(3) }
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CdpElement.CdpGlobalDeviceIdFormat
get(Integer code)
static String
getTypeString(Integer code)
Integer
getValue()
static CdpElement.CdpGlobalDeviceIdFormat
valueOf(String name)
Returns the enum constant of this type with the specified name.static CdpElement.CdpGlobalDeviceIdFormat[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
serialNumber
public static final CdpElement.CdpGlobalDeviceIdFormat serialNumber
SYNTAX INTEGER { serialNumber(1), macAddress(2), other(3) }
-
macAddress
public static final CdpElement.CdpGlobalDeviceIdFormat macAddress
-
other
public static final CdpElement.CdpGlobalDeviceIdFormat other
-
-
Method Detail
-
values
public static CdpElement.CdpGlobalDeviceIdFormat[] 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 (CdpElement.CdpGlobalDeviceIdFormat c : CdpElement.CdpGlobalDeviceIdFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CdpElement.CdpGlobalDeviceIdFormat valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public Integer getValue()
-
get
public static CdpElement.CdpGlobalDeviceIdFormat get(Integer code)
-
-