public final class CacheStrategy
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
static CacheStrategy |
MANUAL
Deal with cached data manually.
|
static CacheStrategy |
ON_CALL
Refresh the data every time you call a method on the fileObject.
|
static CacheStrategy |
ON_RESOLVE
Refresh the data every time you request a file from
FileSystemManager.resolveFile(java.lang.String) |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getName()
Returns the name of the scope.
|
java.lang.String |
toString()
Returns the name of the scope.
|
public static final CacheStrategy MANUAL
FileObject.refresh() to refresh the object data.public static final CacheStrategy ON_RESOLVE
FileSystemManager.resolveFile(java.lang.String)public static final CacheStrategy ON_CALL