public static enum BoundaryCondition.BoundaryKind extends 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(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2009–2016. All rights reserved.