ca.nengo.model.neuron.impl
Enum IzhikevichSpikeGenerator.Preset

java.lang.Object
  extended by java.lang.Enum<IzhikevichSpikeGenerator.Preset>
      extended by ca.nengo.model.neuron.impl.IzhikevichSpikeGenerator.Preset
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IzhikevichSpikeGenerator.Preset>
Enclosing class:
IzhikevichSpikeGenerator

public static enum IzhikevichSpikeGenerator.Preset
extends java.lang.Enum<IzhikevichSpikeGenerator.Preset>

Preset parameter values corresponding to different cell types.

Author:
Bryan Tripp

Enum Constant Summary
CHATTERING
           
CUSTOM
           
DEFAULT
           
FAST_SPIKING
           
INTRINSICALLY_BURSTING
           
REGULAR_SPIKING
           
RESONATOR
           
 
Method Summary
 float getA()
           
 float getB()
           
 float getC()
           
 float getD()
           
static IzhikevichSpikeGenerator.Preset valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IzhikevichSpikeGenerator.Preset[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CUSTOM

public static final IzhikevichSpikeGenerator.Preset CUSTOM

DEFAULT

public static final IzhikevichSpikeGenerator.Preset DEFAULT

REGULAR_SPIKING

public static final IzhikevichSpikeGenerator.Preset REGULAR_SPIKING

INTRINSICALLY_BURSTING

public static final IzhikevichSpikeGenerator.Preset INTRINSICALLY_BURSTING

CHATTERING

public static final IzhikevichSpikeGenerator.Preset CHATTERING

FAST_SPIKING

public static final IzhikevichSpikeGenerator.Preset FAST_SPIKING

RESONATOR

public static final IzhikevichSpikeGenerator.Preset RESONATOR
Method Detail

values

public static IzhikevichSpikeGenerator.Preset[] 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 (IzhikevichSpikeGenerator.Preset c : IzhikevichSpikeGenerator.Preset.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static IzhikevichSpikeGenerator.Preset valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getA

public float getA()

getB

public float getB()

getC

public float getC()

getD

public float getD()