package com.srbenoit.modeling.grid;

/**
 * The possible element types in a simulation.
 */
public enum EnumElementType {

    /** a fixed element that cannot move */
    FIXED,

    /** an element that moves at a fixed rate */
    MOVING,

    /** a simple granule that interacts with Lennard-Jones interactions */
    LJ_GRANULE,

    /** an element within a cell or organelle membrane */
    MEMBRANE,

    /** an element of cortical actin cytoskeleton */
    ACTIN,

    /** a diffusing signal particle */
    SIGNAL,

    /** an ECM element */
    ECM,

    /** an element that exerts directional pressure */
    PRESSER;
}
