public static enum AssemblyAnalysisView.Symmetry extends java.lang.Enum<AssemblyAnalysisView.Symmetry>
Enum Constant and Description |
---|
FULL
A full view of the assembly.
|
OCTANT
A view of one-eighth of the assembly.
|
QUARTER
A view of one-quarter of the assembly.
|
Modifier and Type | Field and Description |
---|---|
java.lang.String |
name
The user-friendly name of the symmetry type.
|
int |
sections
The number of possible sections for this symmetry.
|
Modifier and Type | Method and Description |
---|---|
static AssemblyAnalysisView.Symmetry |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AssemblyAnalysisView.Symmetry[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssemblyAnalysisView.Symmetry FULL
public static final AssemblyAnalysisView.Symmetry QUARTER
public static final AssemblyAnalysisView.Symmetry OCTANT
public final java.lang.String name
public final int sections
public static AssemblyAnalysisView.Symmetry[] values()
for (AssemblyAnalysisView.Symmetry c : AssemblyAnalysisView.Symmetry.values()) System.out.println(c);
public static AssemblyAnalysisView.Symmetry 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