public enum StructureFiletype extends Enum<StructureFiletype>
| Modifier and Type | Method and Description |
|---|---|
List<String> |
getExtensions() |
static StructureFiletype |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StructureFiletype[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructureFiletype PDB
public static final StructureFiletype CIF
public static final StructureFiletype BCIF
public static final StructureFiletype MMTF
public static final StructureFiletype UNKNOWN
public static StructureFiletype[] values()
for (StructureFiletype c : StructureFiletype.values()) System.out.println(c);
public static StructureFiletype 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–2021 BioJava. All rights reserved.