public static enum IFileSystem.CachingMode extends Enum<IFileSystem.CachingMode>
Enum Constant and Description |
---|
CHECK_TIMESTAMPS |
FULL_CACHING |
FUZZY_TIMESTAMPS |
NO_CACHING |
Modifier and Type | Method and Description |
---|---|
static IFileSystem.CachingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IFileSystem.CachingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IFileSystem.CachingMode NO_CACHING
public static final IFileSystem.CachingMode CHECK_TIMESTAMPS
public static final IFileSystem.CachingMode FUZZY_TIMESTAMPS
public static final IFileSystem.CachingMode FULL_CACHING
public static IFileSystem.CachingMode[] values()
for (IFileSystem.CachingMode c : IFileSystem.CachingMode.values()) System.out.println(c);
public static IFileSystem.CachingMode 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 © 2024. All rights reserved.