public static enum PDBStatus.Status extends Enum<PDBStatus.Status>
| Enum Constant and Description |
|---|
CURRENT |
REMOVED |
UNRELEASED |
| Modifier and Type | Method and Description |
|---|---|
static PDBStatus.Status |
fromString(String statusStr) |
static PDBStatus.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PDBStatus.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PDBStatus.Status REMOVED
public static final PDBStatus.Status CURRENT
public static final PDBStatus.Status UNRELEASED
public static PDBStatus.Status[] values()
for (PDBStatus.Status c : PDBStatus.Status.values()) System.out.println(c);
public static PDBStatus.Status 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 nullpublic static PDBStatus.Status fromString(String statusStr)
IllegalArgumentException - If the string is not recognizedCopyright © 2000–2021 BioJava. All rights reserved.