Class mln_geometry_collection

java.lang.Object
org.maplibre.nativeffi.internal.c.mln_geometry_collection

public class mln_geometry_collection extends Object
struct mln_geometry_collection {
    const mln_geometry *geometries;
    size_t geometry_count;
}
  • Method Details

    • layout

      public static final GroupLayout layout()
      The layout of this struct
    • geometries$layout

      public static final AddressLayout geometries$layout()
      Layout for field:
      const mln_geometry *geometries
      
    • geometries$offset

      public static final long geometries$offset()
      Offset for field:
      const mln_geometry *geometries
      
    • geometries

      public static MemorySegment geometries(MemorySegment struct)
      Getter for field:
      const mln_geometry *geometries
      
    • geometries

      public static void geometries(MemorySegment struct, MemorySegment fieldValue)
      Setter for field:
      const mln_geometry *geometries
      
    • geometry_count$layout

      public static final ValueLayout.OfLong geometry_count$layout()
      Layout for field:
      size_t geometry_count
      
    • geometry_count$offset

      public static final long geometry_count$offset()
      Offset for field:
      size_t geometry_count
      
    • geometry_count

      public static long geometry_count(MemorySegment struct)
      Getter for field:
      size_t geometry_count
      
    • geometry_count

      public static void geometry_count(MemorySegment struct, long fieldValue)
      Setter for field:
      size_t geometry_count
      
    • asSlice

      public static MemorySegment asSlice(MemorySegment array, long index)
      Obtains a slice of arrayParam which selects the array element at index. The returned segment has address arrayParam.address() + index * layout().byteSize()
    • sizeof

      public static long sizeof()
      The size (in bytes) of this struct
    • allocate

      public static MemorySegment allocate(SegmentAllocator allocator)
      Allocate a segment of size layout().byteSize() using allocator
    • allocateArray

      public static MemorySegment allocateArray(long elementCount, SegmentAllocator allocator)
      Allocate an array of size elementCount using allocator. The returned segment has size elementCount * layout().byteSize().
    • reinterpret

      public static MemorySegment reinterpret(MemorySegment addr, Arena arena, Consumer<MemorySegment> cleanup)
      Reinterprets addr using target arena and cleanupAction (if any). The returned segment has size layout().byteSize()
    • reinterpret

      public static MemorySegment reinterpret(MemorySegment addr, long elementCount, Arena arena, Consumer<MemorySegment> cleanup)
      Reinterprets addr using target arena and cleanupAction (if any). The returned segment has size elementCount * layout().byteSize()