- All Implemented Interfaces:
Serializable,Comparable<PxQueryFlagEnum>,Constable
Filtering flags for scene queries.
See also: PxQueryFilterData.flags
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAbort traversal as soon as any hit is found and return it via callback.block.Traverse dynamic shapesAll hits are reported as touching.Run the post-intersection-test filter (see #PxQueryFilterCallback::postFilter())Run the pre-intersection-test filter (see #PxQueryFilterCallback::preFilter())Traverse static shapes -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic PxQueryFlagEnumforValue(int value) static PxQueryFlagEnumReturns the enum constant of this class with the specified name.static PxQueryFlagEnum[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
eSTATIC
Traverse static shapes -
eDYNAMIC
Traverse dynamic shapes -
ePREFILTER
Run the pre-intersection-test filter (see #PxQueryFilterCallback::preFilter()) -
ePOSTFILTER
Run the post-intersection-test filter (see #PxQueryFilterCallback::postFilter()) -
eANY_HIT
Abort traversal as soon as any hit is found and return it via callback.block. -
eNO_BLOCK
All hits are reported as touching. Overrides eBLOCK returned from user filters with eTOUCH.
-
-
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
-