Package org.biojava.nbio.structure.scop
Enum Astral.AstralSet
- java.lang.Object
-
- java.lang.Enum<Astral.AstralSet>
-
- org.biojava.nbio.structure.scop.Astral.AstralSet
-
- All Implemented Interfaces:
Serializable,Comparable<Astral.AstralSet>
- Enclosing class:
- Astral
public static enum Astral.AstralSet extends Enum<Astral.AstralSet>
An ASTRAL sequence-identity cutoff with an identifier such as:1.75A_95
Also contains a URL pointing to a FASTA file containing the representatives. Every character before the first whitespace character of each header in the FASTA file is expected to be a representative's name.- Author:
- dmyersturnbull
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FORTY_175FORTY_175AFORTY_175BFORTY_201FORTY_202FORTY_203NINETY_FIVE_175NINETY_FIVE_175ANINETY_FIVE_175BNINETY_FIVE_201NINETY_FIVE_202NINETY_FIVE_203
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()StringgetUrl()static Astral.AstralSetparse(String str)StringtoString()static Astral.AstralSetvalueOf(String name)Returns the enum constant of this type with the specified name.static Astral.AstralSet[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FORTY_175
public static final Astral.AstralSet FORTY_175
-
NINETY_FIVE_175
public static final Astral.AstralSet NINETY_FIVE_175
-
FORTY_175A
public static final Astral.AstralSet FORTY_175A
-
NINETY_FIVE_175A
public static final Astral.AstralSet NINETY_FIVE_175A
-
FORTY_175B
public static final Astral.AstralSet FORTY_175B
-
NINETY_FIVE_175B
public static final Astral.AstralSet NINETY_FIVE_175B
-
FORTY_201
public static final Astral.AstralSet FORTY_201
-
NINETY_FIVE_201
public static final Astral.AstralSet NINETY_FIVE_201
-
FORTY_202
public static final Astral.AstralSet FORTY_202
-
NINETY_FIVE_202
public static final Astral.AstralSet NINETY_FIVE_202
-
FORTY_203
public static final Astral.AstralSet FORTY_203
-
NINETY_FIVE_203
public static final Astral.AstralSet NINETY_FIVE_203
-
-
Method Detail
-
values
public static Astral.AstralSet[] 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 (Astral.AstralSet c : Astral.AstralSet.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Astral.AstralSet 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
-
parse
public static Astral.AstralSet parse(String str)
-
toString
public String toString()
- Overrides:
toStringin classEnum<Astral.AstralSet>
-
-