public enum WalFileType extends Enum<WalFileType>
| Enum Constant and Description |
|---|
kAliveLogFile
Indicates that WAL file is live and resides in the main db directory
|
kArchivedLogFile
Indicates that WAL file is in archive directory.
|
| Modifier and Type | Method and Description |
|---|---|
static WalFileType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WalFileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WalFileType kArchivedLogFile
public static final WalFileType kAliveLogFile
public static WalFileType[] values()
for (WalFileType c : WalFileType.values()) System.out.println(c);
public static WalFileType 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 nullCopyright © 2021. All rights reserved.