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) |
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