Package chemaxon.struc
Enum AtomProperty.Radical
- java.lang.Object
-
- java.lang.Enum<AtomProperty.Radical>
-
- chemaxon.struc.AtomProperty.Radical
-
- All Implemented Interfaces:
Serializable
,Comparable<AtomProperty.Radical>
- Enclosing class:
- AtomProperty
public static enum AtomProperty.Radical extends Enum<AtomProperty.Radical>
Enumeration of the supported radicals.- Since:
- Marvin 6.2. 2013/11/07
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DIVALENT
Divalent radical center.DIVALENT_SINGLET
Divalent radical center with singlet electronic configuration.DIVALENT_TRIPLET
Divalent radical center with triplet electronic configuration.MONOVALENT
Monovalent radical center.NO_RADICAL
Not radical center.QUADRIVALENT
Quadrivalent radical center.TRIVALENT
Trivalent radical center.TRIVALENT_DOUBLET
Trivalent radical center with doublet electronic configuration.TRIVALENT_QUARTET
Trivalent radical center with quartet electronic configuration.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AtomProperty.Radical
forIntValue(int intValue)
Gets theAtomProperty.Radical
that's int value is the given parameter.int
getIntValue()
Gets the integer representation of the radical.static AtomProperty.Radical
valueOf(String name)
Returns the enum constant of this type with the specified name.static AtomProperty.Radical[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_RADICAL
public static final AtomProperty.Radical NO_RADICAL
Not radical center.
-
MONOVALENT
public static final AtomProperty.Radical MONOVALENT
Monovalent radical center.
-
DIVALENT
public static final AtomProperty.Radical DIVALENT
Divalent radical center.
-
DIVALENT_SINGLET
public static final AtomProperty.Radical DIVALENT_SINGLET
Divalent radical center with singlet electronic configuration.
-
DIVALENT_TRIPLET
public static final AtomProperty.Radical DIVALENT_TRIPLET
Divalent radical center with triplet electronic configuration.
-
TRIVALENT
public static final AtomProperty.Radical TRIVALENT
Trivalent radical center.
-
TRIVALENT_DOUBLET
public static final AtomProperty.Radical TRIVALENT_DOUBLET
Trivalent radical center with doublet electronic configuration.
-
TRIVALENT_QUARTET
public static final AtomProperty.Radical TRIVALENT_QUARTET
Trivalent radical center with quartet electronic configuration.
-
QUADRIVALENT
public static final AtomProperty.Radical QUADRIVALENT
Quadrivalent radical center.
-
-
Method Detail
-
values
public static AtomProperty.Radical[] 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 (AtomProperty.Radical c : AtomProperty.Radical.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AtomProperty.Radical 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
-
getIntValue
public int getIntValue()
Gets the integer representation of the radical.- Returns:
- the radical value as int
-
forIntValue
public static AtomProperty.Radical forIntValue(int intValue)
Gets theAtomProperty.Radical
that's int value is the given parameter.- Parameters:
intValue
- the int value of the requiredAtomProperty.Radical
- Returns:
- the
AtomProperty.Radical
element which's int value is the same as the given parameterradicalValue
or null if there is no suchAtomProperty.Radical
element
-
-