Package org.lwjgl.glfw
Class GLFWErrorCallback
- java.lang.Object
-
- org.lwjgl.system.Callback
-
- org.lwjgl.glfw.GLFWErrorCallback
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,GLFWErrorCallbackI
,org.lwjgl.system.CallbackI
,org.lwjgl.system.CallbackI.V
,org.lwjgl.system.NativeResource
,org.lwjgl.system.Pointer
public abstract class GLFWErrorCallback extends org.lwjgl.system.Callback implements GLFWErrorCallbackI
Instances of this class may be passed to theSetErrorCallback
method.Type
void (*) ( int error, char *description )
- Since:
- version 3.0
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.lwjgl.system.CallbackI
org.lwjgl.system.CallbackI.B, org.lwjgl.system.CallbackI.D, org.lwjgl.system.CallbackI.F, org.lwjgl.system.CallbackI.I, org.lwjgl.system.CallbackI.J, org.lwjgl.system.CallbackI.N, org.lwjgl.system.CallbackI.P, org.lwjgl.system.CallbackI.S, org.lwjgl.system.CallbackI.V, org.lwjgl.system.CallbackI.Z
-
-
Field Summary
-
Fields inherited from interface org.lwjgl.glfw.GLFWErrorCallbackI
SIGNATURE
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GLFWErrorCallback
create(long functionPointer)
Creates aGLFWErrorCallback
instance from the specified function pointer.static GLFWErrorCallback
create(GLFWErrorCallbackI instance)
Creates aGLFWErrorCallback
instance that delegates to the specifiedGLFWErrorCallbackI
instance.static GLFWErrorCallback
createPrint()
Returns aGLFWErrorCallback
instance that prints the error to theAPIUtil.DEBUG_STREAM
.static GLFWErrorCallback
createPrint(java.io.PrintStream stream)
Returns aGLFWErrorCallback
instance that prints the error in the specifiedPrintStream
.static GLFWErrorCallback
createSafe(long functionPointer)
static GLFWErrorCallback
createThrow()
Returns aGLFWErrorCallback
instance that throws anIllegalStateException
when an error occurs.static java.lang.String
getDescription(long description)
Converts the specifiedGLFWErrorCallback
argument to a String.GLFWErrorCallback
set()
SeeSetErrorCallback
.-
Methods inherited from class org.lwjgl.system.Callback
__stdcall, address, equals, free, free, get, getSafe, hashCode, toString
-
Methods inherited from interface org.lwjgl.glfw.GLFWErrorCallbackI
callback, getSignature, invoke
-
-
-
-
Method Detail
-
create
public static GLFWErrorCallback create(long functionPointer)
Creates aGLFWErrorCallback
instance from the specified function pointer.- Returns:
- the new
GLFWErrorCallback
-
createSafe
@Nullable public static GLFWErrorCallback createSafe(long functionPointer)
-
create
public static GLFWErrorCallback create(GLFWErrorCallbackI instance)
Creates aGLFWErrorCallback
instance that delegates to the specifiedGLFWErrorCallbackI
instance.
-
getDescription
public static java.lang.String getDescription(long description)
Converts the specifiedGLFWErrorCallback
argument to a String.This method may only be used inside a GLFWErrorCallback invocation.
- Parameters:
description
- pointer to the UTF-8 encoded description string- Returns:
- the description as a String
-
createPrint
public static GLFWErrorCallback createPrint()
Returns aGLFWErrorCallback
instance that prints the error to theAPIUtil.DEBUG_STREAM
.- Returns:
- the GLFWerrorCallback
-
createPrint
public static GLFWErrorCallback createPrint(java.io.PrintStream stream)
Returns aGLFWErrorCallback
instance that prints the error in the specifiedPrintStream
.- Parameters:
stream
- the PrintStream to use- Returns:
- the GLFWerrorCallback
-
createThrow
public static GLFWErrorCallback createThrow()
Returns aGLFWErrorCallback
instance that throws anIllegalStateException
when an error occurs.- Returns:
- the GLFWerrorCallback
-
set
public GLFWErrorCallback set()
SeeSetErrorCallback
.
-
-