com.hqme.cm
Enum VSDFunctionGroups.ACCommand

java.lang.Object
  extended by java.lang.Enum<VSDFunctionGroups.ACCommand>
      extended by com.hqme.cm.VSDFunctionGroups.ACCommand
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<VSDFunctionGroups.ACCommand>
Enclosing class:
VSDFunctionGroups

public static enum VSDFunctionGroups.ACCommand
extends java.lang.Enum<VSDFunctionGroups.ACCommand>


Enum Constant Summary
AC_ADMIN_DELEGATE
           
AC_CREATE_ACCOUNT
           
AC_DELEGATE
           
AC_DELETE_ACCOUNT
           
AC_SET_ACCOUNT_PROPERTIES
           
 
Method Summary
static VSDFunctionGroups.ACCommand valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static VSDFunctionGroups.ACCommand[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AC_CREATE_ACCOUNT

public static final VSDFunctionGroups.ACCommand AC_CREATE_ACCOUNT

AC_DELETE_ACCOUNT

public static final VSDFunctionGroups.ACCommand AC_DELETE_ACCOUNT

AC_DELEGATE

public static final VSDFunctionGroups.ACCommand AC_DELEGATE

AC_ADMIN_DELEGATE

public static final VSDFunctionGroups.ACCommand AC_ADMIN_DELEGATE

AC_SET_ACCOUNT_PROPERTIES

public static final VSDFunctionGroups.ACCommand AC_SET_ACCOUNT_PROPERTIES
Method Detail

values

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

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

valueOf

public static VSDFunctionGroups.ACCommand 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