public static enum FemReaderBase.Numbering extends java.lang.Enum<FemReaderBase.Numbering>
| Enum Constant and Description |
|---|
PRESERVE
Attempts to preserve the node and element numbering given in the
input.
|
PRESERVE_BASE0
Attempts to preserve the node and element numbering given in the
input, expect that if the input numbering is one-based, all numbers
will be decremented by one to make the numbering zero-based.
|
RESET
Nodes and elements are numbered according to the ArtiSynth default,
with numbers starting at 0 and equal to the component indices.
|
| Modifier and Type | Method and Description |
|---|---|
static FemReaderBase.Numbering |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FemReaderBase.Numbering[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FemReaderBase.Numbering RESET
public static final FemReaderBase.Numbering PRESERVE
public static final FemReaderBase.Numbering PRESERVE_BASE0
public static FemReaderBase.Numbering[] values()
for (FemReaderBase.Numbering c : FemReaderBase.Numbering.values()) System.out.println(c);
public static FemReaderBase.Numbering 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