public enum BoundaryConditionKind extends Enum<BoundaryConditionKind>
| 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 BoundaryConditionKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoundaryConditionKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoundaryConditionKind Neumann
public static final BoundaryConditionKind Dirichlet
public static final BoundaryConditionKind Robin_valueCoefficient
public static final BoundaryConditionKind Robin_inwardNormalGradientCoefficient
public static final BoundaryConditionKind Robin_sum
public static BoundaryConditionKind[] values()
for (BoundaryConditionKind c : BoundaryConditionKind.values()) System.out.println(c);
public static BoundaryConditionKind 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.