Package org.onlab.packet.dhcp
Enum DhcpRelayAgentOption.RelayAgentInfoOptions
- java.lang.Object
-
- java.lang.Enum<DhcpRelayAgentOption.RelayAgentInfoOptions>
-
- org.onlab.packet.dhcp.DhcpRelayAgentOption.RelayAgentInfoOptions
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DhcpRelayAgentOption.RelayAgentInfoOptions>
- Enclosing class:
- DhcpRelayAgentOption
public static enum DhcpRelayAgentOption.RelayAgentInfoOptions extends java.lang.Enum<DhcpRelayAgentOption.RelayAgentInfoOptions>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTH
CIRCUIT_ID
DOCSIS
LINK_SELECTION
RADIUS
RELAY_AGENT_FLAGS
REMOTE_ID
SERVER_ID_OVERRIDE
SUBSCRIBER_ID
VENDOR_SPECIFIC
VIRTUAL_SUBNET_SELECTION
VIRTUAL_SUBNET_SELECTION_CTRL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description byte
getValue()
static DhcpRelayAgentOption.RelayAgentInfoOptions
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DhcpRelayAgentOption.RelayAgentInfoOptions[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CIRCUIT_ID
public static final DhcpRelayAgentOption.RelayAgentInfoOptions CIRCUIT_ID
-
REMOTE_ID
public static final DhcpRelayAgentOption.RelayAgentInfoOptions REMOTE_ID
-
DOCSIS
public static final DhcpRelayAgentOption.RelayAgentInfoOptions DOCSIS
-
LINK_SELECTION
public static final DhcpRelayAgentOption.RelayAgentInfoOptions LINK_SELECTION
-
SUBSCRIBER_ID
public static final DhcpRelayAgentOption.RelayAgentInfoOptions SUBSCRIBER_ID
-
RADIUS
public static final DhcpRelayAgentOption.RelayAgentInfoOptions RADIUS
-
AUTH
public static final DhcpRelayAgentOption.RelayAgentInfoOptions AUTH
-
VENDOR_SPECIFIC
public static final DhcpRelayAgentOption.RelayAgentInfoOptions VENDOR_SPECIFIC
-
RELAY_AGENT_FLAGS
public static final DhcpRelayAgentOption.RelayAgentInfoOptions RELAY_AGENT_FLAGS
-
SERVER_ID_OVERRIDE
public static final DhcpRelayAgentOption.RelayAgentInfoOptions SERVER_ID_OVERRIDE
-
VIRTUAL_SUBNET_SELECTION
public static final DhcpRelayAgentOption.RelayAgentInfoOptions VIRTUAL_SUBNET_SELECTION
-
VIRTUAL_SUBNET_SELECTION_CTRL
public static final DhcpRelayAgentOption.RelayAgentInfoOptions VIRTUAL_SUBNET_SELECTION_CTRL
-
-
Method Detail
-
values
public static DhcpRelayAgentOption.RelayAgentInfoOptions[] 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 (DhcpRelayAgentOption.RelayAgentInfoOptions c : DhcpRelayAgentOption.RelayAgentInfoOptions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DhcpRelayAgentOption.RelayAgentInfoOptions 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
-
getValue
public byte getValue()
-
-