Class JNINativeMethod.Buffer

All Implemented Interfaces:
AutoCloseable, Iterable<JNINativeMethod>, NativeResource, Pointer
Enclosing class:
JNINativeMethod

public static class JNINativeMethod.Buffer extends StructBuffer<JNINativeMethod,JNINativeMethod.Buffer> implements NativeResource
An array of JNINativeMethod structs.
  • Constructor Details

    • Buffer

      public Buffer(ByteBuffer container)
      Creates a new JNINativeMethod.Buffer instance backed by the specified container.

      Changes to the container's content will be visible to the struct buffer instance and vice versa. The two buffers' position, limit, and mark values will be independent. The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided by JNINativeMethod.SIZEOF, and its mark will be undefined.

      The created buffer instance holds a strong reference to the container object.

    • Buffer

      public Buffer(long address, int cap)
  • Method Details

    • name

      public ByteBuffer name()
      Returns:
      a ByteBuffer view of the null-terminated string pointed to by the name field.
    • nameString

      public String nameString()
      Returns:
      the null-terminated string pointed to by the name field.
    • signature

      public ByteBuffer signature()
      Returns:
      a ByteBuffer view of the null-terminated string pointed to by the signature field.
    • signatureString

      public String signatureString()
      Returns:
      the null-terminated string pointed to by the signature field.
    • fnPtr

      public long fnPtr()
      Returns:
      the value of the fnPtr field.
    • name

      public JNINativeMethod.Buffer name(ByteBuffer value)
      Sets the address of the specified encoded string to the name field.
    • signature

      public JNINativeMethod.Buffer signature(ByteBuffer value)
      Sets the address of the specified encoded string to the signature field.
    • fnPtr

      public JNINativeMethod.Buffer fnPtr(long value)
      Sets the specified value to the fnPtr field.