org.glite.lb

Class EventChangeACL.PermissionType

public static class EventChangeACL.PermissionType extends Enum<EventChangeACL.PermissionType>

Field Summary
static EventChangeACL.PermissionTypeALLOW
static EventChangeACL.PermissionTypeDENY
static EventChangeACL.PermissionTypeUNDEFINED
static List<EventChangeACL.PermissionType>VALUES
An immutable list containing the values comprising this enum class in the order they're declared.
Method Summary
List<EventChangeACL.PermissionType>family()
Returns an immutable list containing the values comprising this enum class in the order they're declared.
static EventChangeACL.PermissionTypevalueOf(String name)
Static factory to return the enum constant pertaining to the given string name.

Field Detail

ALLOW

public static final EventChangeACL.PermissionType ALLOW

DENY

public static final EventChangeACL.PermissionType DENY

UNDEFINED

public static final EventChangeACL.PermissionType UNDEFINED

VALUES

public static final List<EventChangeACL.PermissionType> VALUES
An immutable list containing the values comprising this enum class in the order they're declared. This field may be used to iterate over the constants as follows:
for(PermissionType c : PermissionType.VALUES)
    System.out.println(c);

Method Detail

family

public final List<EventChangeACL.PermissionType> family()
Returns an immutable list containing the values comprising this enum class in the order they're declared. This instance method simply returns VALUES. Few programmers should have any need to use this method. It is provided for use by sophisticated enum-based data structures to prevent the need for reflective access to VALUES.

Returns: an immutable list containing the values comprising this enum class, in the order they're declared.

valueOf

public static final EventChangeACL.PermissionType valueOf(String name)
Static factory to return the enum constant pertaining to the given string name. The string must match exactly an identifier used to declare an enum constant in this type.

Throws: IllegalArgumentException if this enum class has no constant with the specified name.