public enum CellTopology extends Enum<CellTopology>
| Enum Constant and Description |
|---|
INNER
A membrane is enclosing this subsection.
|
MEMBRANE
The membrane separating inner and outer subsections.
|
OUTER
A membrane is separating this subsection form the inner subsection.
|
| Modifier and Type | Method and Description |
|---|---|
static CellTopology |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CellTopology[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellTopology INNER
public static final CellTopology OUTER
public static final CellTopology MEMBRANE
public static CellTopology[] values()
for (CellTopology c : CellTopology.values()) System.out.println(c);
public static CellTopology 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 © 2019. All rights reserved.