public static enum LocalPDBDirectory.FetchBehavior extends Enum<LocalPDBDirectory.FetchBehavior>
| Enum Constant and 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 and Description |
|---|---|
static LocalPDBDirectory.FetchBehavior |
DEFAULT |
| Modifier and Type | Method and Description |
|---|---|
static LocalPDBDirectory.FetchBehavior |
valueOf(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(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 © 2000–2016 BioJava. All rights reserved.