Package psidev.psi.mi.jami.model
Enum AllostericEffectorType
- java.lang.Object
-
- java.lang.Enum<AllostericEffectorType>
-
- psidev.psi.mi.jami.model.AllostericEffectorType
-
- All Implemented Interfaces:
Serializable
,Comparable<AllostericEffectorType>
public enum AllostericEffectorType extends Enum<AllostericEffectorType>
The types of allosteryEffectors- Since:
23/05/13
- Version:
- $Id$
- Author:
- Marine Dumousseau (marine@ebi.ac.uk)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description feature_modification
molecule
other
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AllostericEffectorType
valueOf(String name)
Returns the enum constant of this type with the specified name.static AllostericEffectorType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
molecule
public static final AllostericEffectorType molecule
-
feature_modification
public static final AllostericEffectorType feature_modification
-
other
public static final AllostericEffectorType other
-
-
Method Detail
-
values
public static AllostericEffectorType[] 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 (AllostericEffectorType c : AllostericEffectorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AllostericEffectorType 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
-
-