Enum MomentsOfInertia.SymmetryClass
- java.lang.Object
-
- java.lang.Enum<MomentsOfInertia.SymmetryClass>
-
- org.biojava.nbio.structure.geometry.MomentsOfInertia.SymmetryClass
-
- All Implemented Interfaces:
Serializable
,Comparable<MomentsOfInertia.SymmetryClass>
- Enclosing class:
- MomentsOfInertia
public static enum MomentsOfInertia.SymmetryClass extends Enum<MomentsOfInertia.SymmetryClass>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASYMMETRIC
LINEAR
OBLATE
PROLATE
SYMMETRIC
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MomentsOfInertia.SymmetryClass
valueOf(String name)
Returns the enum constant of this type with the specified name.static MomentsOfInertia.SymmetryClass[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LINEAR
public static final MomentsOfInertia.SymmetryClass LINEAR
-
PROLATE
public static final MomentsOfInertia.SymmetryClass PROLATE
-
OBLATE
public static final MomentsOfInertia.SymmetryClass OBLATE
-
SYMMETRIC
public static final MomentsOfInertia.SymmetryClass SYMMETRIC
-
ASYMMETRIC
public static final MomentsOfInertia.SymmetryClass ASYMMETRIC
-
-
Method Detail
-
values
public static MomentsOfInertia.SymmetryClass[] 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 (MomentsOfInertia.SymmetryClass c : MomentsOfInertia.SymmetryClass.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MomentsOfInertia.SymmetryClass 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
-
-