public enum BridgeType extends Enum<BridgeType>
| Enum Constant and Description |
|---|
antiparallel |
parallel |
| Modifier and Type | Method and Description |
|---|---|
static BridgeType |
fromCharacter(Character stype) |
String |
toString() |
static BridgeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BridgeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BridgeType parallel
public static final BridgeType antiparallel
public static BridgeType[] values()
for (BridgeType c : BridgeType.values()) System.out.println(c);
public static BridgeType 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 BridgeType fromCharacter(Character stype)
public String toString()
toString in class Enum<BridgeType>Copyright © 2000-2016 BioJava. All Rights Reserved.