public static enum FemElement.ElementClass extends java.lang.Enum<FemElement.ElementClass>
Enum Constant and Description |
---|
MEMBRANE |
SHELL |
VOLUMETRIC |
Modifier and Type | Method and Description |
---|---|
static FemElement.ElementClass |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FemElement.ElementClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FemElement.ElementClass VOLUMETRIC
public static final FemElement.ElementClass SHELL
public static final FemElement.ElementClass MEMBRANE
public static FemElement.ElementClass[] values()
for (FemElement.ElementClass c : FemElement.ElementClass.values()) System.out.println(c);
public static FemElement.ElementClass 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