| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<FlushModeType>
org.jboss.seam.annotations.FlushModeType
public enum FlushModeType
| Enum Constant Summary | |
|---|---|
| AUTOFlushing occurs automatically at commit time and when necessary before query executions. | |
| COMMITFlushing occurs automatically at transaction commit time. | |
| MANUALFlushing never occurs automatically, all changes are queued until the application calls flush() explicitly. | |
| Method Summary | |
|---|---|
|  boolean | dirtyBetweenTransactions()Does this flush mode keep unflushed changes past a transaction commit? | 
| static FlushModeType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static FlushModeType[] | values()Returns an array containing the constants of this enum type, in the order they're declared. | 
| Methods inherited from class java.lang.Enum | 
|---|
| clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf | 
| Methods inherited from class java.lang.Object | 
|---|
| finalize, getClass, notify, notifyAll, wait, wait, wait | 
| Enum Constant Detail | 
|---|
public static final FlushModeType MANUAL
public static final FlushModeType AUTO
public static final FlushModeType COMMIT
| Method Detail | 
|---|
public static final FlushModeType[] values()
for(FlushModeType c : FlushModeType.values())
        System.out.println(c);
public static FlushModeType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified namepublic boolean dirtyBetweenTransactions()
| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||