Enum OrganelleTypes
- java.lang.Object
-
- java.lang.Enum<OrganelleTypes>
-
- bio.singa.simulation.model.agents.organelles.OrganelleTypes
-
- All Implemented Interfaces:
Serializable,Comparable<OrganelleTypes>
public enum OrganelleTypes extends Enum<OrganelleTypes>
- Author:
- cl
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CELLEARLY_ENDOSOMENUCLEUS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description OrganelleTemplatecreate()CellRegiongetInnerRegion()CellRegiongetMembraneRegion()static OrganelleTypesvalueOf(String name)Returns the enum constant of this type with the specified name.static OrganelleTypes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EARLY_ENDOSOME
public static final OrganelleTypes EARLY_ENDOSOME
-
NUCLEUS
public static final OrganelleTypes NUCLEUS
-
CELL
public static final OrganelleTypes CELL
-
-
Method Detail
-
values
public static OrganelleTypes[] 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 (OrganelleTypes c : OrganelleTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OrganelleTypes 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
-
getInnerRegion
public CellRegion getInnerRegion()
-
getMembraneRegion
public CellRegion getMembraneRegion()
-
create
public OrganelleTemplate create()
-
-