edu.internet2.middleware.grouper.userData
Enum GrouperFavoriteFinder.GrouperFavoriteFinderType

java.lang.Object
  extended by java.lang.Enum<GrouperFavoriteFinder.GrouperFavoriteFinderType>
      extended by edu.internet2.middleware.grouper.userData.GrouperFavoriteFinder.GrouperFavoriteFinderType
All Implemented Interfaces:
Serializable, Comparable<GrouperFavoriteFinder.GrouperFavoriteFinderType>
Enclosing class:
GrouperFavoriteFinder

public static enum GrouperFavoriteFinder.GrouperFavoriteFinderType
extends Enum<GrouperFavoriteFinder.GrouperFavoriteFinderType>

type of objects to get


Enum Constant Summary
attributeDefNames
          attribute def names
attributeDefs
          attribute defs
groups
          groups
stems
          search includes stems
subjects
          subjects
 
Field Summary
static Set<GrouperFavoriteFinder.GrouperFavoriteFinderType> ALL_GROUPER_FINDER_TYPES
          all types
 
Method Summary
static GrouperFavoriteFinder.GrouperFavoriteFinderType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static GrouperFavoriteFinder.GrouperFavoriteFinderType valueOfIgnoreCase(String string, boolean exceptionOnNull)
          do a case-insensitive matching
static GrouperFavoriteFinder.GrouperFavoriteFinderType[] 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

stems

public static final GrouperFavoriteFinder.GrouperFavoriteFinderType stems
search includes stems


groups

public static final GrouperFavoriteFinder.GrouperFavoriteFinderType groups
groups


subjects

public static final GrouperFavoriteFinder.GrouperFavoriteFinderType subjects
subjects


attributeDefNames

public static final GrouperFavoriteFinder.GrouperFavoriteFinderType attributeDefNames
attribute def names


attributeDefs

public static final GrouperFavoriteFinder.GrouperFavoriteFinderType attributeDefs
attribute defs

Field Detail

ALL_GROUPER_FINDER_TYPES

public static final Set<GrouperFavoriteFinder.GrouperFavoriteFinderType> ALL_GROUPER_FINDER_TYPES
all types

Method Detail

values

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

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

valueOf

public static GrouperFavoriteFinder.GrouperFavoriteFinderType 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 GrouperFavoriteFinder.GrouperFavoriteFinderType valueOfIgnoreCase(String string,
                                                                                boolean exceptionOnNull)
do a case-insensitive matching

Parameters:
string -
exceptionOnNull - will not allow null or blank entries
Returns:
the enum or null or exception if not found