public enum LockingStrategyName extends Enum<LockingStrategyName>
| Enum Constant and Description |
|---|
NATIVE_FILESYSTEM |
NONE |
SIMPLE_FILESYSTEM |
SINGLE_INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
static LockingStrategyName |
of(String value) |
static LockingStrategyName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LockingStrategyName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LockingStrategyName SIMPLE_FILESYSTEM
public static final LockingStrategyName NATIVE_FILESYSTEM
public static final LockingStrategyName SINGLE_INSTANCE
public static final LockingStrategyName NONE
public static LockingStrategyName[] values()
for (LockingStrategyName c : LockingStrategyName.values()) System.out.println(c);
public static LockingStrategyName 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 static LockingStrategyName of(String value)
Copyright © 2006-2019 Red Hat, Inc. and others. Licensed under the GNU Lesser General Public License (LGPL), version 2.1 or later.