org.virtualbox_7_0
Enum DHCPGroupConditionType

java.lang.Object
  extended by java.lang.Enum<DHCPGroupConditionType>
      extended by org.virtualbox_7_0.DHCPGroupConditionType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DHCPGroupConditionType>

public enum DHCPGroupConditionType
extends java.lang.Enum<DHCPGroupConditionType>


Enum Constant Summary
MAC
          MAC address
MACWildcard
          MAC address wildcard pattern.
userClassID
          User class ID
userClassIDWildcard
          User class ID wildcard pattern.
vendorClassID
          Vendor class ID
vendorClassIDWildcard
          Vendor class ID wildcard pattern.
 
Method Summary
static DHCPGroupConditionType fromValue(long v)
           
static DHCPGroupConditionType fromValue(java.lang.String v)
           
 int value()
           
static DHCPGroupConditionType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DHCPGroupConditionType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

MAC

public static final DHCPGroupConditionType MAC
MAC address


MACWildcard

public static final DHCPGroupConditionType MACWildcard
MAC address wildcard pattern.


vendorClassID

public static final DHCPGroupConditionType vendorClassID
Vendor class ID


vendorClassIDWildcard

public static final DHCPGroupConditionType vendorClassIDWildcard
Vendor class ID wildcard pattern.


userClassID

public static final DHCPGroupConditionType userClassID
User class ID


userClassIDWildcard

public static final DHCPGroupConditionType userClassIDWildcard
User class ID wildcard pattern.

Method Detail

values

public static DHCPGroupConditionType[] 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 (DHCPGroupConditionType c : DHCPGroupConditionType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static DHCPGroupConditionType 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 name
java.lang.NullPointerException - if the argument is null

value

public int value()

fromValue

public static DHCPGroupConditionType fromValue(long v)

fromValue

public static DHCPGroupConditionType fromValue(java.lang.String v)