public static enum Directories.FileType extends java.lang.Enum<Directories.FileType>
| Enum Constant and Description | 
|---|
| FINALA permanent sstable file that is safe to use. | 
| TEMPORARYA temporary sstable file that will soon be deleted. | 
| TXN_LOGA 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 © 2018 The Apache Software Foundation