- All Implemented Interfaces:
Serializable,Comparable<PxActorTypeEnum>,Constable
Identifies each type of actor.
See also: PxActor
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAn articulation link See also: PxArticulationLinkA FEM-based cloth Note: In development See also: PxFEMClothA HairSystem Note: In development See also: PxHairSystemA PBD ParticleSystem See also: PxPBDParticleSystemA dynamic rigid body See also: PxRigidDynamicA static rigid body See also: PxRigidStaticA FEM-based soft body See also: PxSoftBody -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic PxActorTypeEnumforValue(int value) static PxActorTypeEnumReturns the enum constant of this class with the specified name.static PxActorTypeEnum[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
eRIGID_STATIC
A static rigid body See also: PxRigidStatic -
eRIGID_DYNAMIC
A dynamic rigid body See also: PxRigidDynamic -
eARTICULATION_LINK
An articulation link See also: PxArticulationLink -
eSOFTBODY
A FEM-based soft body See also: PxSoftBody -
eFEMCLOTH
A FEM-based cloth Note: In development See also: PxFEMCloth -
ePBD_PARTICLESYSTEM
A PBD ParticleSystem See also: PxPBDParticleSystem -
eHAIRSYSTEM
A HairSystem Note: In development See also: PxHairSystem
-
-
Field Details
-
value
public final int value
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
forValue
-