|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CompositeType>
edu.internet2.middleware.grouper.misc.CompositeType
public enum CompositeType
Composite Type.
Enum Constant Summary | |
---|---|
COMPLEMENT
the members in the left, which are not in the right (e.g. the right is an excludes list) |
|
INTERSECTION
the members who are in the left, who are also in the right (right is a required list) |
|
UNION
the members in the left, or in the right (right is an includes list) |
Method Summary | |
---|---|
java.lang.String |
getName()
get name of composite type, e.g. complement, union, intersection |
java.lang.String |
toString()
|
static CompositeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static CompositeType |
valueOfIgnoreCase(java.lang.String theName)
find the value of a string and ignore case |
static CompositeType[] |
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, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final CompositeType COMPLEMENT
public static final CompositeType UNION
public static final CompositeType INTERSECTION
Method Detail |
---|
public static CompositeType[] values()
for (CompositeType c : CompositeType.values()) System.out.println(c);
public static CompositeType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic static CompositeType valueOfIgnoreCase(java.lang.String theName)
theName
- public java.lang.String getName()
public java.lang.String toString()
toString
in class java.lang.Enum<CompositeType>
Object.toString()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |