public enum MarkerType extends java.lang.Enum<MarkerType>
BasePointMarker3D
Marker Type.Enum Constant and Description |
---|
InstancedMesh
The instanced mesh.
|
Pixel
The pixel point marker type.
|
TexturedQuad
The textured quad.
|
Modifier and Type | Method and Description |
---|---|
static MarkerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MarkerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MarkerType Pixel
public static final MarkerType TexturedQuad
public static final MarkerType InstancedMesh
public static MarkerType[] values()
for (MarkerType c : MarkerType.values()) System.out.println(c);
public static MarkerType 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