public enum FileHashCacheMode extends Enum<FileHashCacheMode>
| Enum Constant and Description | 
|---|
| LIMITED_PREFIX_TREE | 
| LIMITED_PREFIX_TREE_PARALLEL | 
| LOADING_CACHE | 
| PARALLEL_COMPARISON | 
| PREFIX_TREE | 
| Modifier and Type | Field and Description | 
|---|---|
| static FileHashCacheMode | DEFAULT | 
| Modifier and Type | Method and Description | 
|---|---|
| static FileHashCacheMode | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static FileHashCacheMode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final FileHashCacheMode LOADING_CACHE
public static final FileHashCacheMode PREFIX_TREE
public static final FileHashCacheMode LIMITED_PREFIX_TREE
public static final FileHashCacheMode LIMITED_PREFIX_TREE_PARALLEL
public static final FileHashCacheMode PARALLEL_COMPARISON
public static final FileHashCacheMode DEFAULT
public static FileHashCacheMode[] values()
for (FileHashCacheMode c : FileHashCacheMode.values()) System.out.println(c);
public static FileHashCacheMode 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 null