Class ClearanceCalculatorPtr
- java.lang.Object
-
- org.robwork.sdurw_pathoptimization.ClearanceCalculatorPtr
-
public class ClearanceCalculatorPtr extends java.lang.Object
Ptr stores a pointer and optionally takes ownership of the value.
-
-
Constructor Summary
Constructors Constructor Description ClearanceCalculatorPtr()
Default constructor yielding a NULL-pointer.ClearanceCalculatorPtr(long cPtr, boolean cMemoryOwn)
ClearanceCalculatorPtr(ClearanceCalculator ptr)
Do not take ownership of ptr.
ptr can be null.
The constructor is implicit on purpose.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ClearanceCalculator
__ref__()
Dereferencing operator.double
clearance(State state)
Calculates Clearance for the state
ClearanceCalculatorCPtr
cptr()
void
delete()
ClearanceCalculator
deref()
The pointer stored in the object.boolean
equals(ClearanceCalculator p)
static long
getCPtr(ClearanceCalculatorPtr obj)
ClearanceCalculator
getDeref()
Member access operator.boolean
isNull()
checks if the pointer is nullboolean
isShared()
check if this Ptr has shared ownership or none
ownership
-
-
-
Constructor Detail
-
ClearanceCalculatorPtr
public ClearanceCalculatorPtr(long cPtr, boolean cMemoryOwn)
-
ClearanceCalculatorPtr
public ClearanceCalculatorPtr()
Default constructor yielding a NULL-pointer.
-
ClearanceCalculatorPtr
public ClearanceCalculatorPtr(ClearanceCalculator ptr)
Do not take ownership of ptr.
ptr can be null.
The constructor is implicit on purpose.
-
-
Method Detail
-
getCPtr
public static long getCPtr(ClearanceCalculatorPtr obj)
-
delete
public void delete()
-
deref
public ClearanceCalculator deref()
The pointer stored in the object.
-
__ref__
public ClearanceCalculator __ref__()
Dereferencing operator.
-
getDeref
public ClearanceCalculator getDeref()
Member access operator.
-
equals
public boolean equals(ClearanceCalculator p)
-
isShared
public boolean isShared()
check if this Ptr has shared ownership or none
ownership- Returns:
- true if Ptr has shared ownership, false if it has no ownership.
-
isNull
public boolean isNull()
checks if the pointer is null- Returns:
- Returns true if the pointer is null
-
cptr
public ClearanceCalculatorCPtr cptr()
-
clearance
public double clearance(State state)
Calculates Clearance for the state
- Parameters:
state
- [in] State for which to calculate the clearance- Returns:
- The clearance.
-
-