edu.internet2.middleware.grouper.instrumentation
Enum InstrumentationDataBuiltinTypes

java.lang.Object
  extended by java.lang.Enum<InstrumentationDataBuiltinTypes>
      extended by edu.internet2.middleware.grouper.instrumentation.InstrumentationDataBuiltinTypes
All Implemented Interfaces:
Serializable, Comparable<InstrumentationDataBuiltinTypes>

public enum InstrumentationDataBuiltinTypes
extends Enum<InstrumentationDataBuiltinTypes>

Author:
shilen

Enum Constant Summary
API_GROUP_ADD
          group add
API_GROUP_DELETE
          group delete
API_MEMBERSHIP_ADD
          membership (not privilege) add (immediate and composite)
API_MEMBERSHIP_DELETE
          membership (not privilege) delete (immediate and composite)
API_STEM_ADD
          folder add
API_STEM_DELETE
          folder delete
UI_REQUESTS
          Hits to servlet
WS_REQUESTS
          Hits to servlet
 
Method Summary
static InstrumentationDataBuiltinTypes valueOf(String name)
          Returns the enum constant of this type with the specified name.
static InstrumentationDataBuiltinTypes[] 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

UI_REQUESTS

public static final InstrumentationDataBuiltinTypes UI_REQUESTS
Hits to servlet


WS_REQUESTS

public static final InstrumentationDataBuiltinTypes WS_REQUESTS
Hits to servlet


API_STEM_ADD

public static final InstrumentationDataBuiltinTypes API_STEM_ADD
folder add


API_STEM_DELETE

public static final InstrumentationDataBuiltinTypes API_STEM_DELETE
folder delete


API_GROUP_ADD

public static final InstrumentationDataBuiltinTypes API_GROUP_ADD
group add


API_GROUP_DELETE

public static final InstrumentationDataBuiltinTypes API_GROUP_DELETE
group delete


API_MEMBERSHIP_ADD

public static final InstrumentationDataBuiltinTypes API_MEMBERSHIP_ADD
membership (not privilege) add (immediate and composite)


API_MEMBERSHIP_DELETE

public static final InstrumentationDataBuiltinTypes API_MEMBERSHIP_DELETE
membership (not privilege) delete (immediate and composite)

Method Detail

values

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

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

valueOf

public static InstrumentationDataBuiltinTypes valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null