|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<GrouperCommitType>
edu.internet2.middleware.grouper.hibernate.GrouperCommitType
public enum GrouperCommitType
Various types of committing
Enum Constant Summary | |
---|---|
COMMIT_IF_NEW_TRANSACTION
only commit if this is a new transaction |
|
COMMIT_NOW
always commit right now |
Method Summary | |
---|---|
static GrouperCommitType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static GrouperCommitType |
valueOfIgnoreCase(java.lang.String string)
do a case-insensitive matching |
static GrouperCommitType[] |
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 GrouperCommitType COMMIT_NOW
public static final GrouperCommitType COMMIT_IF_NEW_TRANSACTION
Method Detail |
---|
public static GrouperCommitType[] values()
for (GrouperCommitType c : GrouperCommitType.values()) System.out.println(c);
public static GrouperCommitType 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 GrouperCommitType valueOfIgnoreCase(java.lang.String string)
string
-
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |