public enum SkeletonType extends java.lang.Enum<SkeletonType>
Skeleton's types.| Enum Constant and Description |
|---|
BONE
The
Skeleton is a bone entity. |
SKELETON
The
Skeleton is a skeleton entity, which means the associated node is the root node of the whole skeletal hierarchy. |
| Modifier and Type | Method and Description |
|---|---|
static SkeletonType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SkeletonType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SkeletonType SKELETON
Skeleton is a skeleton entity, which means the associated node is the root node of the whole skeletal hierarchy.public static final SkeletonType BONE
Skeleton is a bone entity.public static SkeletonType[] values()
for (SkeletonType c : SkeletonType.values()) System.out.println(c);
public static SkeletonType 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