public static enum LocalPDBDirectory.FetchBehavior extends java.lang.Enum<LocalPDBDirectory.FetchBehavior>
Enum Constant | Description |
---|---|
FETCH_FILES |
Fetch missing files from the server.
|
FETCH_IF_OUTDATED |
Fetch missing files from the server, also fetch if file present but older than the
server file.
|
FETCH_REMEDIATED |
Fetch missing files from the server.
|
FORCE_DOWNLOAD |
For every file, force downloading from the server
|
LOCAL_ONLY |
Never fetch from the server; Throw errors for missing files
|
Modifier and Type | Field | Description |
---|---|---|
static LocalPDBDirectory.FetchBehavior |
DEFAULT |
Modifier and Type | Method | Description |
---|---|---|
static LocalPDBDirectory.FetchBehavior |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static LocalPDBDirectory.FetchBehavior[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LocalPDBDirectory.FetchBehavior LOCAL_ONLY
public static final LocalPDBDirectory.FetchBehavior FETCH_FILES
public static final LocalPDBDirectory.FetchBehavior FETCH_IF_OUTDATED
public static final LocalPDBDirectory.FetchBehavior FETCH_REMEDIATED
public static final LocalPDBDirectory.FetchBehavior FORCE_DOWNLOAD
public static final LocalPDBDirectory.FetchBehavior DEFAULT
public static LocalPDBDirectory.FetchBehavior[] values()
for (LocalPDBDirectory.FetchBehavior c : LocalPDBDirectory.FetchBehavior.values()) System.out.println(c);
public static LocalPDBDirectory.FetchBehavior 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 null