org.opends.admin.ads
Enum ADSContext.ServerGroupProperty

java.lang.Object
  extended by java.lang.Enum<ADSContext.ServerGroupProperty>
      extended by org.opends.admin.ads.ADSContext.ServerGroupProperty
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ADSContext.ServerGroupProperty>
Enclosing class:
ADSContext

public static enum ADSContext.ServerGroupProperty
extends java.lang.Enum<ADSContext.ServerGroupProperty>

Enumeration containing the different server group properties that are stored in the ADS.


Enum Constant Summary
DESCRIPTION
          The description of the server group.
MEMBERS
          The members of the server group.
UID
          The UID of the server group.
 
Method Summary
 java.lang.String getAttributeName()
          Returns the attribute name.
static ADSContext.ServerGroupProperty valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ADSContext.ServerGroupProperty[] 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

UID

public static final ADSContext.ServerGroupProperty UID
The UID of the server group.


DESCRIPTION

public static final ADSContext.ServerGroupProperty DESCRIPTION
The description of the server group.


MEMBERS

public static final ADSContext.ServerGroupProperty MEMBERS
The members of the server group.

Method Detail

values

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

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

valueOf

public static ADSContext.ServerGroupProperty 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

getAttributeName

public java.lang.String getAttributeName()
Returns the attribute name.

Returns:
the attribute name.