public enum FileLockMethod extends java.lang.Enum<FileLockMethod>
| Enum Constant and Description |
|---|
FILE
This locking method means the cooperative file locking protocol should be
used.
|
FS
Use the file system to lock the file; don't use a separate lock file.
|
NO
This locking method means no locking is used at all.
|
SERIALIZED
This locking method means multiple writers are allowed, and they
synchronize themselves.
|
SOCKET
This locking method means a socket is created on the given machine.
|
| Modifier and Type | Method and Description |
|---|---|
static FileLockMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileLockMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileLockMethod NO
public static final FileLockMethod FILE
public static final FileLockMethod SOCKET
public static final FileLockMethod SERIALIZED
public static final FileLockMethod FS
public static FileLockMethod[] values()
for (FileLockMethod c : FileLockMethod.values()) System.out.println(c);
public static FileLockMethod valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null