Package org.biojava.nbio.aaproperties
Enum CommandPrompt.PropertyName
- java.lang.Object
-
- java.lang.Enum<CommandPrompt.PropertyName>
-
- org.biojava.nbio.aaproperties.CommandPrompt.PropertyName
-
- All Implemented Interfaces:
Serializable
,Comparable<CommandPrompt.PropertyName>
- Enclosing class:
- CommandPrompt
public static enum CommandPrompt.PropertyName extends Enum<CommandPrompt.PropertyName>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description A
Absorbance_False
Absorbance_True
ApliphaticIndex
AverageHydropathyValue
C
D
E
ExtinctionCoefficient_False
ExtinctionCoefficient_True
F
G
H
I
InstabilityIndex
IsoelectricPoint
K
L
M
MolecularWeight
N
NetCharge_pH_7
P
Q
R
S
T
V
W
Y
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CommandPrompt.PropertyName
valueOf(String name)
Returns the enum constant of this type with the specified name.static CommandPrompt.PropertyName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MolecularWeight
public static final CommandPrompt.PropertyName MolecularWeight
-
Absorbance_True
public static final CommandPrompt.PropertyName Absorbance_True
-
Absorbance_False
public static final CommandPrompt.PropertyName Absorbance_False
-
ExtinctionCoefficient_True
public static final CommandPrompt.PropertyName ExtinctionCoefficient_True
-
ExtinctionCoefficient_False
public static final CommandPrompt.PropertyName ExtinctionCoefficient_False
-
InstabilityIndex
public static final CommandPrompt.PropertyName InstabilityIndex
-
ApliphaticIndex
public static final CommandPrompt.PropertyName ApliphaticIndex
-
AverageHydropathyValue
public static final CommandPrompt.PropertyName AverageHydropathyValue
-
IsoelectricPoint
public static final CommandPrompt.PropertyName IsoelectricPoint
-
NetCharge_pH_7
public static final CommandPrompt.PropertyName NetCharge_pH_7
-
A
public static final CommandPrompt.PropertyName A
-
R
public static final CommandPrompt.PropertyName R
-
N
public static final CommandPrompt.PropertyName N
-
D
public static final CommandPrompt.PropertyName D
-
C
public static final CommandPrompt.PropertyName C
-
E
public static final CommandPrompt.PropertyName E
-
Q
public static final CommandPrompt.PropertyName Q
-
G
public static final CommandPrompt.PropertyName G
-
H
public static final CommandPrompt.PropertyName H
-
I
public static final CommandPrompt.PropertyName I
-
L
public static final CommandPrompt.PropertyName L
-
K
public static final CommandPrompt.PropertyName K
-
M
public static final CommandPrompt.PropertyName M
-
F
public static final CommandPrompt.PropertyName F
-
P
public static final CommandPrompt.PropertyName P
-
S
public static final CommandPrompt.PropertyName S
-
T
public static final CommandPrompt.PropertyName T
-
W
public static final CommandPrompt.PropertyName W
-
Y
public static final CommandPrompt.PropertyName Y
-
V
public static final CommandPrompt.PropertyName V
-
-
Method Detail
-
values
public static CommandPrompt.PropertyName[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CommandPrompt.PropertyName c : CommandPrompt.PropertyName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CommandPrompt.PropertyName valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-