Enum ModuleFactory.Specificity
- java.lang.Object
-
- java.lang.Enum<ModuleFactory.Specificity>
-
- bio.singa.simulation.model.modules.concentration.ModuleFactory.Specificity
-
- All Implemented Interfaces:
Serializable,Comparable<ModuleFactory.Specificity>
- Enclosing class:
- ModuleFactory
public static enum ModuleFactory.Specificity extends Enum<ModuleFactory.Specificity>
The type ofUpdateSpecificity.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ENTITY_SPECIFICReferencesEntitySpecific.SECTION_SPECIFICReferencesSectionSpecific.UPDATABLE_SPECIFICReferencesUpdatableSpecific.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ModuleFactory.SpecificityvalueOf(String name)Returns the enum constant of this type with the specified name.static ModuleFactory.Specificity[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ENTITY_SPECIFIC
public static final ModuleFactory.Specificity ENTITY_SPECIFIC
ReferencesEntitySpecific.
-
SECTION_SPECIFIC
public static final ModuleFactory.Specificity SECTION_SPECIFIC
ReferencesSectionSpecific.
-
UPDATABLE_SPECIFIC
public static final ModuleFactory.Specificity UPDATABLE_SPECIFIC
ReferencesUpdatableSpecific.
-
-
Method Detail
-
values
public static ModuleFactory.Specificity[] 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 (ModuleFactory.Specificity c : ModuleFactory.Specificity.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ModuleFactory.Specificity 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
-
-