edu.internet2.middleware.grouperClient.ws
Enum StemScope

java.lang.Object
  extended by java.lang.Enum<StemScope>
      extended by edu.internet2.middleware.grouperClient.ws.StemScope
All Implemented Interfaces:
Serializable, Comparable<StemScope>

public enum StemScope
extends Enum<StemScope>

scope of groups under a stem. either all or just one level (immediate)


Enum Constant Summary
ALL_IN_SUBTREE
          all groups in this folder or subfolders
ONE_LEVEL
          just direct immediate chlidren
 
Method Summary
static StemScope valueOf(String name)
          Returns the enum constant of this type with the specified name.
static StemScope valueOfIgnoreCase(String string)
          do a case-insensitive matching
static StemScope[] 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

ONE_LEVEL

public static final StemScope ONE_LEVEL
just direct immediate chlidren


ALL_IN_SUBTREE

public static final StemScope ALL_IN_SUBTREE
all groups in this folder or subfolders

Method Detail

values

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

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

valueOf

public static StemScope 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

valueOfIgnoreCase

public static StemScope valueOfIgnoreCase(String string)
do a case-insensitive matching

Parameters:
string -
Returns:
the enum or null or exception if not found