Class MDBCmpFunc

java.lang.Object
org.lwjgl.system.Callback
org.lwjgl.util.lmdb.MDBCmpFunc
All Implemented Interfaces:
AutoCloseable, CallbackI, NativeResource, Pointer, MDBCmpFuncI

public abstract class MDBCmpFunc extends Callback implements MDBCmpFuncI
Callback function: MDB_cmp_func *
  • Method Details

    • create

      public static MDBCmpFunc create(long functionPointer)
      Creates a MDBCmpFunc instance from the specified function pointer.
      Returns:
      the new MDBCmpFunc
    • createSafe

      public static @Nullable MDBCmpFunc createSafe(long functionPointer)
      Like create, but returns null if functionPointer is NULL.
    • create

      public static MDBCmpFunc create(MDBCmpFuncI instance)
      Creates a MDBCmpFunc instance that delegates to the specified MDBCmpFuncI instance.