Package com.tableau.hyperapi.impl
Class BoolByReference
java.lang.Object
com.sun.jna.PointerType
com.sun.jna.ptr.ByReference
com.tableau.hyperapi.impl.BoolByReference
- All Implemented Interfaces:
com.sun.jna.NativeMapped
public final class BoolByReference
extends com.sun.jna.ptr.ByReference
Helper class that handles a bool by reference
-
Constructor Summary
ConstructorDescriptionConstruct a BoolByReference with the default value false.BoolByReference
(boolean value) Construct a BoolByReference. -
Method Summary
Methods inherited from class com.sun.jna.ptr.ByReference
toString
Methods inherited from class com.sun.jna.PointerType
equals, fromNative, getPointer, hashCode, nativeType, setPointer, toNative
-
Constructor Details
-
BoolByReference
public BoolByReference()Construct a BoolByReference with the default value false. -
BoolByReference
public BoolByReference(boolean value) Construct a BoolByReference.- Parameters:
value
- The value.
-
-
Method Details
-
setValue
public void setValue(boolean value) Setter.- Parameters:
value
- The underlying value.
-
getValue
public boolean getValue()Getter.- Returns:
- The underlying value.
-