|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<WsMemberFilter>
edu.internet2.middleware.grouperClient.ws.WsMemberFilter
public enum WsMemberFilter
member filter for retrieving members.
Enum Constant Summary | |
---|---|
All
retrieve all members (immediate, effective and composite) |
|
Composite
if this is a composite group, then return all the memberships that match the composite operator (union, intersection, complement). |
|
Effective
retrieve members which exist due a group as a member of another group (for composite groups, this will not return anything) |
|
Immediate
return only direct members of a group (for composite groups this will not return anything) |
|
NonImmediate
return only non direct members of a group (will return effective, composite, etc) |
Method Summary | |
---|---|
static WsMemberFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static WsMemberFilter |
valueOfIgnoreCase(String string)
do a case-insensitive matching |
static WsMemberFilter[] |
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 |
---|
public static final WsMemberFilter All
public static final WsMemberFilter Effective
public static final WsMemberFilter Immediate
public static final WsMemberFilter NonImmediate
public static final WsMemberFilter Composite
Method Detail |
---|
public static WsMemberFilter[] values()
for (WsMemberFilter c : WsMemberFilter.values()) System.out.println(c);
public static WsMemberFilter valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static WsMemberFilter valueOfIgnoreCase(String string)
string
-
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |