public enum AutoCommitThreadLocal extends Enum<AutoCommitThreadLocal>
| 枚举常量和说明 |
|---|
INSTANCE
Instance auto commit thread local.
|
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
get()
Get boolean.
|
void |
remove()
Remove.
|
void |
set(boolean oldAutoCommit)
Set.
|
static AutoCommitThreadLocal |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static AutoCommitThreadLocal[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final AutoCommitThreadLocal INSTANCE
public static AutoCommitThreadLocal[] values()
for (AutoCommitThreadLocal c : AutoCommitThreadLocal.values()) System.out.println(c);
public static AutoCommitThreadLocal valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public void set(boolean oldAutoCommit)
oldAutoCommit - the old auto commitpublic boolean get()
public void remove()
Copyright © 2022 dromara. All rights reserved.