public enum Projection extends Enum<Projection>
| Enum Constant and Description |
|---|
Chair
Projection of the low energy conformation (chair) of a cyclohexane.
|
Fischer
Fischer projections are used for linear chain-form carbohydrates.
|
Haworth
Haworth projection are used to depict ring-form carbohydrates.
|
| Modifier and Type | Method and Description |
|---|---|
static Projection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Projection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Projection Fischer
public static final Projection Haworth
public static final Projection Chair
public static Projection[] values()
for (Projection c : Projection.values()) System.out.println(c);
public static Projection 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 © 2018. All Rights Reserved.