public static enum Directories.FileType extends java.lang.Enum<Directories.FileType>
Enum Constant and Description |
---|
FINAL
A permanent sstable file that is safe to use.
|
TEMPORARY
A temporary sstable file that will soon be deleted.
|
TXN_LOG
A transaction log file (contains information on final and temporary files).
|
Modifier and Type | Method and Description |
---|---|
static Directories.FileType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Directories.FileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Directories.FileType FINAL
public static final Directories.FileType TEMPORARY
public static final Directories.FileType TXN_LOG
public static Directories.FileType[] values()
for (Directories.FileType c : Directories.FileType.values()) System.out.println(c);
public static Directories.FileType 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 nullCopyright © 2020 The Apache Software Foundation