Package org.lemsml.export.dlems
Enum DLemsKeywords
- java.lang.Object
-
- java.lang.Enum<DLemsKeywords>
-
- org.lemsml.export.dlems.DLemsKeywords
-
- All Implemented Interfaces:
Serializable
,Comparable<DLemsKeywords>
public enum DLemsKeywords extends Enum<DLemsKeywords>
- Author:
- matteocantarelli
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
get()
static DLemsKeywords
valueOf(String name)
Returns the enum constant of this type with the specified name.static DLemsKeywords[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DT
public static final DLemsKeywords DT
-
SEED
public static final DLemsKeywords SEED
-
REPORT_FILE
public static final DLemsKeywords REPORT_FILE
-
DYNAMICS
public static final DLemsKeywords DYNAMICS
-
EVENTS
public static final DLemsKeywords EVENTS
-
CONDITION
public static final DLemsKeywords CONDITION
-
DIRECTION
public static final DLemsKeywords DIRECTION
-
EFFECT
public static final DLemsKeywords EFFECT
-
NAME
public static final DLemsKeywords NAME
-
TYPE
public static final DLemsKeywords TYPE
-
TITLE
public static final DLemsKeywords TITLE
-
PARAMETERS
public static final DLemsKeywords PARAMETERS
-
STATE
public static final DLemsKeywords STATE
-
STATE_FUNCTIONS
public static final DLemsKeywords STATE_FUNCTIONS
-
T_END
public static final DLemsKeywords T_END
-
T_START
public static final DLemsKeywords T_START
-
COMMENT
public static final DLemsKeywords COMMENT
-
DUMP_TO_FILE
public static final DLemsKeywords DUMP_TO_FILE
-
OUTPUT_FILE
public static final DLemsKeywords OUTPUT_FILE
-
SPIKE_FILE
public static final DLemsKeywords SPIKE_FILE
-
SPIKE_FILE_FORMAT
public static final DLemsKeywords SPIKE_FILE_FORMAT
-
EVENT_SELECTIONS
public static final DLemsKeywords EVENT_SELECTIONS
-
EVENT_SELECTION_ID
public static final DLemsKeywords EVENT_SELECTION_ID
-
SELECT
public static final DLemsKeywords SELECT
-
EVENT_PORT
public static final DLemsKeywords EVENT_PORT
-
FILE_NAME
public static final DLemsKeywords FILE_NAME
-
OUTPUT_COLUMNS
public static final DLemsKeywords OUTPUT_COLUMNS
-
VARIABLE
public static final DLemsKeywords VARIABLE
-
QUANTITY
public static final DLemsKeywords QUANTITY
-
DISPLAY
public static final DLemsKeywords DISPLAY
-
ABSCISSA_AXIS
public static final DLemsKeywords ABSCISSA_AXIS
-
MIN
public static final DLemsKeywords MIN
-
MAX
public static final DLemsKeywords MAX
-
ORDINATE_AXIS
public static final DLemsKeywords ORDINATE_AXIS
-
CURVES
public static final DLemsKeywords CURVES
-
ABSCISSA
public static final DLemsKeywords ABSCISSA
-
ORDINATE
public static final DLemsKeywords ORDINATE
-
POPULATION
public static final DLemsKeywords POPULATION
-
POPULATION_INDEX
public static final DLemsKeywords POPULATION_INDEX
-
SEGMENT_ID
public static final DLemsKeywords SEGMENT_ID
-
SEGMENT_NAME
public static final DLemsKeywords SEGMENT_NAME
-
FRACTION_ALONG
public static final DLemsKeywords FRACTION_ALONG
-
COLOUR
public static final DLemsKeywords COLOUR
-
POPULATIONS
public static final DLemsKeywords POPULATIONS
-
SIZE
public static final DLemsKeywords SIZE
-
SYNAPSES
public static final DLemsKeywords SYNAPSES
-
SYNAPSE
public static final DLemsKeywords SYNAPSE
-
COMPONENT
public static final DLemsKeywords COMPONENT
-
PROJECTIONS
public static final DLemsKeywords PROJECTIONS
-
PRE_POPULATION
public static final DLemsKeywords PRE_POPULATION
-
POST_POPULATION
public static final DLemsKeywords POST_POPULATION
-
CONNECTIONS
public static final DLemsKeywords CONNECTIONS
-
PRE_CELL_ID
public static final DLemsKeywords PRE_CELL_ID
-
POST_CELL_ID
public static final DLemsKeywords POST_CELL_ID
-
WEIGHT
public static final DLemsKeywords WEIGHT
-
DELAY
public static final DLemsKeywords DELAY
-
INPUTS
public static final DLemsKeywords INPUTS
-
TEMPERATURE
public static final DLemsKeywords TEMPERATURE
-
NEURON_VARIABLE_NAME
public static final DLemsKeywords NEURON_VARIABLE_NAME
-
NEURON_MECHANISM_NAME
public static final DLemsKeywords NEURON_MECHANISM_NAME
-
NEURON_SECTION_NAME
public static final DLemsKeywords NEURON_SECTION_NAME
-
NEURON_FRACT_ALONG
public static final DLemsKeywords NEURON_FRACT_ALONG
-
NEURON_VARIABLE_SCALE
public static final DLemsKeywords NEURON_VARIABLE_SCALE
-
EXPORT_LIBRARY_VERSION
public static final DLemsKeywords EXPORT_LIBRARY_VERSION
-
CVODE
public static final DLemsKeywords CVODE
-
ABS_TOL
public static final DLemsKeywords ABS_TOL
-
REL_TOL
public static final DLemsKeywords REL_TOL
-
-
Method Detail
-
values
public static DLemsKeywords[] 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 (DLemsKeywords c : DLemsKeywords.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DLemsKeywords 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
-
get
public String get()
-
-