public enum ConnectionIsolationLevel extends Enum<ConnectionIsolationLevel>
| Modifier and Type | Class and Description |
|---|---|
static interface |
ConnectionIsolationLevel.ConnectionIsolationVisitor<T> |
| Modifier and Type | Method and Description |
|---|---|
abstract <T> T |
accept(ConnectionIsolationLevel.ConnectionIsolationVisitor<T> visitor) |
static ConnectionIsolationLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConnectionIsolationLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectionIsolationLevel DEFAULT
public static final ConnectionIsolationLevel SHARED
public static final ConnectionIsolationLevel EXCLUSIVE
public static ConnectionIsolationLevel[] values()
for (ConnectionIsolationLevel c : ConnectionIsolationLevel.values()) System.out.println(c);
public static ConnectionIsolationLevel valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic abstract <T> T accept(ConnectionIsolationLevel.ConnectionIsolationVisitor<T> visitor)
Copyright © 2016–2020. All rights reserved.