public enum SpatialKind extends Enum<SpatialKind>
spatialIndex
attribute within a SpatialComponent. Supported values this type are
bound to a Cartesian coordinate system. This has been defined in version 1 of
the Dynamic Structures specification.| Enum Constant and Description |
|---|
alpha
Refers to elemental rotation of an object about the X coordinate axis
|
beta
Refers to elemental rotation of an object about the Y coordinate axis
|
cartesianX
Refers to the X coordinate component of an object's position within a
Cartesian coordinate system
|
cartesianY
Refers to the Y coordinate component of an object's position within a
Cartesian coordinate system
|
cartesianZ
Refers to the Z coordinate component of an object's position within a
Cartesian coordinate system
|
F_x
Refers to the X component of the force vector that drives movement
|
F_y
Refers to the Y component of the force vector that drives movement
|
F_z
Refers to the Z component of the force vector that drives movement
|
gamma
Refers to elemental rotation of an object about the Z coordinate axis
|
| Modifier and Type | Method and Description |
|---|---|
static SpatialKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpatialKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpatialKind cartesianX
public static final SpatialKind cartesianY
public static final SpatialKind cartesianZ
public static final SpatialKind alpha
public static final SpatialKind beta
public static final SpatialKind gamma
public static final SpatialKind F_x
public static final SpatialKind F_y
public static final SpatialKind F_z
public static SpatialKind[] values()
for (SpatialKind c : SpatialKind.values()) System.out.println(c);
public static SpatialKind valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2009–2017. All rights reserved.