public enum SplitMeshPolicy extends java.lang.Enum<SplitMeshPolicy>
Enum Constant and Description |
---|
CLONE_DATA
Control points and vertex elements data will be cloned
|
COMPACT_DATA
Only used control points and vertex elements data will be copied to the sub-mesh
|
Modifier and Type | Method and Description |
---|---|
static SplitMeshPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SplitMeshPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SplitMeshPolicy CLONE_DATA
public static final SplitMeshPolicy COMPACT_DATA
public static SplitMeshPolicy[] values()
for (SplitMeshPolicy c : SplitMeshPolicy.values()) System.out.println(c);
public static SplitMeshPolicy 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