public enum SciChartMeshTemplate extends java.lang.Enum<SciChartMeshTemplate>
Enum Constant and Description |
---|
Cube
The cube 3D mesh
|
Cylinder
The cylinder 3D mesh
|
Pyramid
The pyramid 3D mesh
|
Sphere
The sphere 3D mesh
|
Modifier and Type | Method and Description |
---|---|
static SciChartMeshTemplate |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SciChartMeshTemplate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SciChartMeshTemplate Cube
public static final SciChartMeshTemplate Sphere
public static final SciChartMeshTemplate Pyramid
public static final SciChartMeshTemplate Cylinder
public static SciChartMeshTemplate[] values()
for (SciChartMeshTemplate c : SciChartMeshTemplate.values()) System.out.println(c);
public static SciChartMeshTemplate 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