org.sbml.jsbml.ext.spatial
public static enum BoundaryCondition.BoundaryKind extends java.lang.Enum<BoundaryCondition.BoundaryKind>
Enum Constant and Description |
---|
DIRICHLET
Dirichlet
|
NEUMANN
Neumann
|
ROBIN_INWARDNORMALGRADIENTCOEFFICIENT
Robin inward normal gradient coefficient
|
ROBIN_SUM
Robin sum
|
ROBIN_VALUECOEFFICIENT
Robin value coefficient
|
Modifier and Type | Method and Description |
---|---|
static BoundaryCondition.BoundaryKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BoundaryCondition.BoundaryKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoundaryCondition.BoundaryKind NEUMANN
public static final BoundaryCondition.BoundaryKind DIRICHLET
public static final BoundaryCondition.BoundaryKind ROBIN_VALUECOEFFICIENT
public static final BoundaryCondition.BoundaryKind ROBIN_INWARDNORMALGRADIENTCOEFFICIENT
public static final BoundaryCondition.BoundaryKind ROBIN_SUM
public static BoundaryCondition.BoundaryKind[] values()
for (BoundaryCondition.BoundaryKind c : BoundaryCondition.BoundaryKind.values()) System.out.println(c);
public static BoundaryCondition.BoundaryKind valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null