Package org.opennms.netmgt.enlinkd.model
Enum BridgeElement.BridgeDot1dStpProtocolSpecification
- java.lang.Object
-
- java.lang.Enum<BridgeElement.BridgeDot1dStpProtocolSpecification>
-
- org.opennms.netmgt.enlinkd.model.BridgeElement.BridgeDot1dStpProtocolSpecification
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BridgeElement.BridgeDot1dStpProtocolSpecification>
- Enclosing class:
- BridgeElement
public static enum BridgeElement.BridgeDot1dStpProtocolSpecification extends java.lang.Enum<BridgeElement.BridgeDot1dStpProtocolSpecification>
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description protected static java.util.Map<java.lang.Integer,java.lang.String>
s_typeMap
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BridgeElement.BridgeDot1dStpProtocolSpecification
get(java.lang.Integer code)
static java.lang.String
getTypeString(java.lang.Integer code)
java.lang.Integer
getValue()
static BridgeElement.BridgeDot1dStpProtocolSpecification
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BridgeElement.BridgeDot1dStpProtocolSpecification[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DOT1D_STP_PROTOCOL_SPECIFICATION_UNKNOWN
public static final BridgeElement.BridgeDot1dStpProtocolSpecification DOT1D_STP_PROTOCOL_SPECIFICATION_UNKNOWN
-
DOT1D_STP_PROTOCOL_SPECIFICATION_DECLB100
public static final BridgeElement.BridgeDot1dStpProtocolSpecification DOT1D_STP_PROTOCOL_SPECIFICATION_DECLB100
-
DOT1D_STP_PROTOCOL_SPECIFICATION_IEEE8021D
public static final BridgeElement.BridgeDot1dStpProtocolSpecification DOT1D_STP_PROTOCOL_SPECIFICATION_IEEE8021D
-
DOT1D_STP_PROTOCOL_SPECIFICATION_IEEE8021M
public static final BridgeElement.BridgeDot1dStpProtocolSpecification DOT1D_STP_PROTOCOL_SPECIFICATION_IEEE8021M
-
DOT1D_STP_PROTOCOL_SPECIFICATION_IEEE8021AQ
public static final BridgeElement.BridgeDot1dStpProtocolSpecification DOT1D_STP_PROTOCOL_SPECIFICATION_IEEE8021AQ
-
-
Method Detail
-
values
public static BridgeElement.BridgeDot1dStpProtocolSpecification[] 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 (BridgeElement.BridgeDot1dStpProtocolSpecification c : BridgeElement.BridgeDot1dStpProtocolSpecification.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BridgeElement.BridgeDot1dStpProtocolSpecification valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getTypeString
public static java.lang.String getTypeString(java.lang.Integer code)
-
getValue
public java.lang.Integer getValue()
-
get
public static BridgeElement.BridgeDot1dStpProtocolSpecification get(java.lang.Integer code)
-
-