|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<AdminLogging.LogFileSharing> com.avaje.ebean.AdminLogging.LogFileSharing
public static enum AdminLogging.LogFileSharing
Defines if transactions share a single log file or each have their own transaction log file.
Enum Constant Summary | |
---|---|
ALL
All transactions share the same log file. |
|
EXPLICIT
Explicit transactions each have their own transaction log file and implicit transaction all share a common log file. |
|
NONE
Every transaction has its own log file. |
Method Summary | |
---|---|
static AdminLogging.LogFileSharing |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AdminLogging.LogFileSharing[] |
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 AdminLogging.LogFileSharing NONE
public static final AdminLogging.LogFileSharing EXPLICIT
public static final AdminLogging.LogFileSharing ALL
Method Detail |
---|
public static AdminLogging.LogFileSharing[] values()
for (AdminLogging.LogFileSharing c : AdminLogging.LogFileSharing.values()) System.out.println(c);
public static AdminLogging.LogFileSharing 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 null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |