Package functions

Class GeneratedFunctions

java.lang.Object
functions.GeneratedFunctions

public class GeneratedFunctions extends Object
  • Field Details

    • _UNSAFE

      private static final sun.misc.Unsafe _UNSAFE
    • ERROR_HANDLER

      public static final error_handler_fn ERROR_HANDLER
      The error handler MEOS calls on this binding's threads. MEOS's own default ends the process with exit(EXIT_FAILURE), which would take the whole JVM down; MeosErrorHandler records the level, code and message instead, which MeosErrorHandler.checkError() reads after each call and rethrows as a Java exception. Registering it is what makes a MEOS error reach the caller, so every thread installs it. Held in a static field so jnr-ffi keeps the native callback alive for the life of the process.
    • MEOS_READY

      private static final ThreadLocal<Boolean> MEOS_READY
    • MEOS_PROCESS_READY

      private static boolean MEOS_PROCESS_READY
    • _LIB

      private static final String _LIB
      See Also:
    • _meos_a

    • _meos_b

    • _meos_c

    • _meos_d

    • _dispatch

      private static final Map<String,Object> _dispatch
  • Constructor Details

    • GeneratedFunctions

      public GeneratedFunctions()
  • Method Details

    • _freeCStr

      private static void _freeCStr(jnr.ffi.Pointer _p)
      Free a char* returned by an owning (non-const) MEOS function. Null-safe.
    • ensureReady

      public static void ensureReady()
      Initialises MEOS for the calling thread.

      What MEOS holds per thread and what it holds per process differ, so the two are set up separately. The session timezone and the collation cache are thread-local, and the PROJ, GEOS and RNG contexts are created lazily per thread, so each thread prepares its own. The error handler is a single process-wide pointer, and meos_initialize() resets it to MEOS's default, which ends the process on an error; running that per thread would disarm the handler the other threads depend on. It therefore runs once, under a lock, before any thread goes on.

    • meos_error

      public static void meos_error(int errlevel, int errcode, String format)
    • meos_errno

      public static int meos_errno()
    • meos_errno_set

      public static int meos_errno_set(int err)
    • meos_errno_restore

      public static int meos_errno_restore(int err)
    • meos_errno_reset

      public static int meos_errno_reset()
    • meos_array_create

      public static jnr.ffi.Pointer meos_array_create(int elem_size)
    • meos_array_add

      public static void meos_array_add(jnr.ffi.Pointer array, jnr.ffi.Pointer value)
    • meos_array_get

      public static jnr.ffi.Pointer meos_array_get(jnr.ffi.Pointer array, int n)
    • meos_array_count

      public static int meos_array_count(jnr.ffi.Pointer array)
    • meos_array_reset

      public static void meos_array_reset(jnr.ffi.Pointer array)
    • meos_array_reset_free

      public static void meos_array_reset_free(jnr.ffi.Pointer array)
    • meos_array_destroy

      public static void meos_array_destroy(jnr.ffi.Pointer array)
    • meos_array_destroy_free

      public static void meos_array_destroy_free(jnr.ffi.Pointer array)
    • rtree_create_intspan

      public static jnr.ffi.Pointer rtree_create_intspan()
    • rtree_create_bigintspan

      public static jnr.ffi.Pointer rtree_create_bigintspan()
    • rtree_create_floatspan

      public static jnr.ffi.Pointer rtree_create_floatspan()
    • rtree_create_datespan

      public static jnr.ffi.Pointer rtree_create_datespan()
    • rtree_create_tstzspan

      public static jnr.ffi.Pointer rtree_create_tstzspan()
    • rtree_create_tbox

      public static jnr.ffi.Pointer rtree_create_tbox()
    • rtree_create_stbox

      public static jnr.ffi.Pointer rtree_create_stbox()
    • rtree_create_tpcbox

      public static jnr.ffi.Pointer rtree_create_tpcbox()
    • rtree_free

      public static void rtree_free(jnr.ffi.Pointer rtree)
    • rtree_insert

      public static void rtree_insert(jnr.ffi.Pointer rtree, jnr.ffi.Pointer box, int id)
    • rtree_insert_temporal

      public static void rtree_insert_temporal(jnr.ffi.Pointer rtree, jnr.ffi.Pointer temp, int id)
    • rtree_insert_temporal_split

      public static void rtree_insert_temporal_split(jnr.ffi.Pointer rtree, jnr.ffi.Pointer temp, int id, int maxboxes)
    • rtree_search

      public static int rtree_search(jnr.ffi.Pointer rtree, int op, jnr.ffi.Pointer query, jnr.ffi.Pointer result)
    • rtree_search_temporal

      public static int rtree_search_temporal(jnr.ffi.Pointer rtree, int op, jnr.ffi.Pointer temp, jnr.ffi.Pointer result)
    • rtree_search_temporal_dedup

      public static int rtree_search_temporal_dedup(jnr.ffi.Pointer rtree, int op, jnr.ffi.Pointer temp, int maxboxes, jnr.ffi.Pointer result)
    • meos_initialize_error_handler

      public static void meos_initialize_error_handler(error_handler_fn err_handler)
    • meos_initialize_allocator

      public static void meos_initialize_allocator(jnr.ffi.Pointer malloc_fn, jnr.ffi.Pointer realloc_fn, jnr.ffi.Pointer free_fn)
    • meos_initialize_noexit_error_handler

      public static void meos_initialize_noexit_error_handler()
    • meos_initialize_timezone

      public static void meos_initialize_timezone(String name)
    • meos_initialize_collation

      public static void meos_initialize_collation()
    • meos_finalize_timezone

      public static void meos_finalize_timezone()
    • meos_finalize_collation

      public static void meos_finalize_collation()
    • meos_finalize_projsrs

      public static void meos_finalize_projsrs()
    • meos_finalize_ways

      public static void meos_finalize_ways()
    • meos_initialize_pointcloud

      public static void meos_initialize_pointcloud()
    • meos_set_datestyle

      public static boolean meos_set_datestyle(String newval, jnr.ffi.Pointer extra)
    • meos_set_intervalstyle

      public static boolean meos_set_intervalstyle(String newval, int extra)
    • meos_get_datestyle

      public static String meos_get_datestyle()
    • meos_get_intervalstyle

      public static String meos_get_intervalstyle()
    • meos_set_spatial_ref_sys_csv

      public static void meos_set_spatial_ref_sys_csv(String path)
    • meos_set_ways_csv

      public static void meos_set_ways_csv(String path)
    • meos_initialize

      public static void meos_initialize()
    • meos_finalize

      public static void meos_finalize()
    • meos_version

      public static String meos_version()
    • meos_full_version

      public static String meos_full_version()
    • mobilitydb_version

      public static String mobilitydb_version()
    • mobilitydb_full_version

      public static String mobilitydb_full_version()
    • bigintset_in

      public static jnr.ffi.Pointer bigintset_in(String str)
    • bigintset_out

      public static String bigintset_out(jnr.ffi.Pointer set)
    • bigintspan_expand

      public static jnr.ffi.Pointer bigintspan_expand(jnr.ffi.Pointer s, long value)
    • bigintspan_in

      public static jnr.ffi.Pointer bigintspan_in(String str)
    • bigintspan_out

      public static String bigintspan_out(jnr.ffi.Pointer s)
    • bigintspanset_in

      public static jnr.ffi.Pointer bigintspanset_in(String str)
    • bigintspanset_out

      public static String bigintspanset_out(jnr.ffi.Pointer ss)
    • dateset_in

      public static jnr.ffi.Pointer dateset_in(String str)
    • dateset_out

      public static String dateset_out(jnr.ffi.Pointer s)
    • datespan_in

      public static jnr.ffi.Pointer datespan_in(String str)
    • datespan_out

      public static String datespan_out(jnr.ffi.Pointer s)
    • datespanset_in

      public static jnr.ffi.Pointer datespanset_in(String str)
    • datespanset_out

      public static String datespanset_out(jnr.ffi.Pointer ss)
    • floatset_in

      public static jnr.ffi.Pointer floatset_in(String str)
    • floatset_out

      public static String floatset_out(jnr.ffi.Pointer set, int maxdd)
    • floatspan_expand

      public static jnr.ffi.Pointer floatspan_expand(jnr.ffi.Pointer s, double value)
    • floatspan_in

      public static jnr.ffi.Pointer floatspan_in(String str)
    • floatspan_out

      public static String floatspan_out(jnr.ffi.Pointer s, int maxdd)
    • floatspanset_in

      public static jnr.ffi.Pointer floatspanset_in(String str)
    • floatspanset_out

      public static String floatspanset_out(jnr.ffi.Pointer ss, int maxdd)
    • intset_in

      public static jnr.ffi.Pointer intset_in(String str)
    • intset_out

      public static String intset_out(jnr.ffi.Pointer set)
    • intspan_expand

      public static jnr.ffi.Pointer intspan_expand(jnr.ffi.Pointer s, int value)
    • intspan_in

      public static jnr.ffi.Pointer intspan_in(String str)
    • intspan_out

      public static String intspan_out(jnr.ffi.Pointer s)
    • intspanset_in

      public static jnr.ffi.Pointer intspanset_in(String str)
    • intspanset_out

      public static String intspanset_out(jnr.ffi.Pointer ss)
    • set_as_hexwkb

      public static String set_as_hexwkb(jnr.ffi.Pointer s, byte variant)
    • set_as_wkb

      public static jnr.ffi.Pointer set_as_wkb(jnr.ffi.Pointer s, byte variant)
    • set_from_hexwkb

      public static jnr.ffi.Pointer set_from_hexwkb(String hexwkb)
    • set_from_wkb

      public static jnr.ffi.Pointer set_from_wkb(jnr.ffi.Pointer wkb, long size)
    • span_as_hexwkb

      public static String span_as_hexwkb(jnr.ffi.Pointer s, byte variant)
    • span_as_wkb

      public static jnr.ffi.Pointer span_as_wkb(jnr.ffi.Pointer s, byte variant)
    • span_from_hexwkb

      public static jnr.ffi.Pointer span_from_hexwkb(String hexwkb)
    • span_from_wkb

      public static jnr.ffi.Pointer span_from_wkb(jnr.ffi.Pointer wkb, long size)
    • spanset_as_hexwkb

      public static String spanset_as_hexwkb(jnr.ffi.Pointer ss, byte variant)
    • spanset_as_wkb

      public static jnr.ffi.Pointer spanset_as_wkb(jnr.ffi.Pointer ss, byte variant)
    • spanset_from_hexwkb

      public static jnr.ffi.Pointer spanset_from_hexwkb(String hexwkb)
    • spanset_from_wkb

      public static jnr.ffi.Pointer spanset_from_wkb(jnr.ffi.Pointer wkb, long size)
    • textset_in

      public static jnr.ffi.Pointer textset_in(String str)
    • textset_out

      public static String textset_out(jnr.ffi.Pointer set)
    • tstzset_in

      public static jnr.ffi.Pointer tstzset_in(String str)
    • tstzset_out

      public static String tstzset_out(jnr.ffi.Pointer set)
    • tstzspan_in

      public static jnr.ffi.Pointer tstzspan_in(String str)
    • tstzspan_out

      public static String tstzspan_out(jnr.ffi.Pointer s)
    • tstzspanset_in

      public static jnr.ffi.Pointer tstzspanset_in(String str)
    • tstzspanset_out

      public static String tstzspanset_out(jnr.ffi.Pointer ss)
    • bigintset_make

      public static jnr.ffi.Pointer bigintset_make(jnr.ffi.Pointer values, int count)
    • bigintspan_make

      public static jnr.ffi.Pointer bigintspan_make(long lower, long upper, boolean lower_inc, boolean upper_inc)
    • dateset_make

      public static jnr.ffi.Pointer dateset_make(jnr.ffi.Pointer values, int count)
    • datespan_make

      public static jnr.ffi.Pointer datespan_make(int lower, int upper, boolean lower_inc, boolean upper_inc)
    • floatset_make

      public static jnr.ffi.Pointer floatset_make(jnr.ffi.Pointer values, int count)
    • floatspan_make

      public static jnr.ffi.Pointer floatspan_make(double lower, double upper, boolean lower_inc, boolean upper_inc)
    • intset_make

      public static jnr.ffi.Pointer intset_make(jnr.ffi.Pointer values, int count)
    • intspan_make

      public static jnr.ffi.Pointer intspan_make(int lower, int upper, boolean lower_inc, boolean upper_inc)
    • set_copy

      public static jnr.ffi.Pointer set_copy(jnr.ffi.Pointer s)
    • span_copy

      public static jnr.ffi.Pointer span_copy(jnr.ffi.Pointer s)
    • spanset_copy

      public static jnr.ffi.Pointer spanset_copy(jnr.ffi.Pointer ss)
    • spanset_make

      public static jnr.ffi.Pointer spanset_make(jnr.ffi.Pointer spans, int count)
    • textset_make

      public static jnr.ffi.Pointer textset_make(jnr.ffi.Pointer values, int count)
    • tstzset_make

      public static jnr.ffi.Pointer tstzset_make(jnr.ffi.Pointer values, int count)
    • tstzspan_make

      public static jnr.ffi.Pointer tstzspan_make(OffsetDateTime lower, OffsetDateTime upper, boolean lower_inc, boolean upper_inc)
    • bigint_to_set

      public static jnr.ffi.Pointer bigint_to_set(long i)
    • bigint_to_span

      public static jnr.ffi.Pointer bigint_to_span(int i)
    • bigint_to_spanset

      public static jnr.ffi.Pointer bigint_to_spanset(int i)
    • date_to_set

      public static jnr.ffi.Pointer date_to_set(int d)
    • date_to_span

      public static jnr.ffi.Pointer date_to_span(int d)
    • date_to_spanset

      public static jnr.ffi.Pointer date_to_spanset(int d)
    • dateset_to_tstzset

      public static jnr.ffi.Pointer dateset_to_tstzset(jnr.ffi.Pointer s)
    • datespan_to_tstzspan

      public static jnr.ffi.Pointer datespan_to_tstzspan(jnr.ffi.Pointer s)
    • datespanset_to_tstzspanset

      public static jnr.ffi.Pointer datespanset_to_tstzspanset(jnr.ffi.Pointer ss)
    • float_to_set

      public static jnr.ffi.Pointer float_to_set(double d)
    • float_to_span

      public static jnr.ffi.Pointer float_to_span(double d)
    • float_to_spanset

      public static jnr.ffi.Pointer float_to_spanset(double d)
    • floatset_to_intset

      public static jnr.ffi.Pointer floatset_to_intset(jnr.ffi.Pointer s)
    • floatspan_to_intspan

      public static jnr.ffi.Pointer floatspan_to_intspan(jnr.ffi.Pointer s)
    • floatspan_to_bigintspan

      public static jnr.ffi.Pointer floatspan_to_bigintspan(jnr.ffi.Pointer s)
    • floatspanset_to_intspanset

      public static jnr.ffi.Pointer floatspanset_to_intspanset(jnr.ffi.Pointer ss)
    • int_to_set

      public static jnr.ffi.Pointer int_to_set(int i)
    • int_to_span

      public static jnr.ffi.Pointer int_to_span(int i)
    • int_to_spanset

      public static jnr.ffi.Pointer int_to_spanset(int i)
    • intset_to_floatset

      public static jnr.ffi.Pointer intset_to_floatset(jnr.ffi.Pointer s)
    • intspan_to_floatspan

      public static jnr.ffi.Pointer intspan_to_floatspan(jnr.ffi.Pointer s)
    • intspan_to_bigintspan

      public static jnr.ffi.Pointer intspan_to_bigintspan(jnr.ffi.Pointer s)
    • bigintspan_to_intspan

      public static jnr.ffi.Pointer bigintspan_to_intspan(jnr.ffi.Pointer s)
    • bigintspan_to_floatspan

      public static jnr.ffi.Pointer bigintspan_to_floatspan(jnr.ffi.Pointer s)
    • intspanset_to_floatspanset

      public static jnr.ffi.Pointer intspanset_to_floatspanset(jnr.ffi.Pointer ss)
    • set_to_span

      public static jnr.ffi.Pointer set_to_span(jnr.ffi.Pointer s)
    • set_to_spanset

      public static jnr.ffi.Pointer set_to_spanset(jnr.ffi.Pointer s)
    • span_to_spanset

      public static jnr.ffi.Pointer span_to_spanset(jnr.ffi.Pointer s)
    • text_to_set

      public static jnr.ffi.Pointer text_to_set(jnr.ffi.Pointer txt)
    • timestamptz_to_set

      public static jnr.ffi.Pointer timestamptz_to_set(OffsetDateTime t)
    • timestamptz_to_span

      public static jnr.ffi.Pointer timestamptz_to_span(OffsetDateTime t)
    • timestamptz_to_spanset

      public static jnr.ffi.Pointer timestamptz_to_spanset(OffsetDateTime t)
    • tstzset_to_dateset

      public static jnr.ffi.Pointer tstzset_to_dateset(jnr.ffi.Pointer s)
    • tstzspan_to_datespan

      public static jnr.ffi.Pointer tstzspan_to_datespan(jnr.ffi.Pointer s)
    • tstzspanset_to_datespanset

      public static jnr.ffi.Pointer tstzspanset_to_datespanset(jnr.ffi.Pointer ss)
    • bigintset_end_value

      public static long bigintset_end_value(jnr.ffi.Pointer s)
    • bigintset_start_value

      public static long bigintset_start_value(jnr.ffi.Pointer s)
    • bigintset_value_n

      public static jnr.ffi.Pointer bigintset_value_n(jnr.ffi.Pointer s, int n)
    • bigintset_values

      public static jnr.ffi.Pointer bigintset_values(jnr.ffi.Pointer s, jnr.ffi.Pointer count)
    • bigintspan_lower

      public static long bigintspan_lower(jnr.ffi.Pointer s)
    • bigintspan_upper

      public static long bigintspan_upper(jnr.ffi.Pointer s)
    • bigintspan_width

      public static long bigintspan_width(jnr.ffi.Pointer s)
    • bigintspanset_lower

      public static long bigintspanset_lower(jnr.ffi.Pointer ss)
    • bigintspanset_upper

      public static long bigintspanset_upper(jnr.ffi.Pointer ss)
    • bigintspanset_width

      public static long bigintspanset_width(jnr.ffi.Pointer ss, boolean boundspan)
    • dateset_end_value

      public static int dateset_end_value(jnr.ffi.Pointer s)
    • dateset_start_value

      public static int dateset_start_value(jnr.ffi.Pointer s)
    • dateset_value_n

      public static jnr.ffi.Pointer dateset_value_n(jnr.ffi.Pointer s, int n)
    • dateset_values

      public static jnr.ffi.Pointer dateset_values(jnr.ffi.Pointer s, jnr.ffi.Pointer count)
    • datespan_duration

      public static jnr.ffi.Pointer datespan_duration(jnr.ffi.Pointer s)
    • datespan_lower

      public static int datespan_lower(jnr.ffi.Pointer s)
    • datespan_upper

      public static int datespan_upper(jnr.ffi.Pointer s)
    • datespanset_date_n

      public static jnr.ffi.Pointer datespanset_date_n(jnr.ffi.Pointer ss, int n)
    • datespanset_dates

      public static jnr.ffi.Pointer datespanset_dates(jnr.ffi.Pointer ss)
    • datespanset_duration

      public static jnr.ffi.Pointer datespanset_duration(jnr.ffi.Pointer ss, boolean boundspan)
    • datespanset_end_date

      public static int datespanset_end_date(jnr.ffi.Pointer ss)
    • datespanset_lower

      public static int datespanset_lower(jnr.ffi.Pointer ss)
    • datespanset_num_dates

      public static int datespanset_num_dates(jnr.ffi.Pointer ss)
    • datespanset_start_date

      public static int datespanset_start_date(jnr.ffi.Pointer ss)
    • datespanset_upper

      public static int datespanset_upper(jnr.ffi.Pointer ss)
    • floatset_end_value

      public static double floatset_end_value(jnr.ffi.Pointer s)
    • floatset_start_value

      public static double floatset_start_value(jnr.ffi.Pointer s)
    • floatset_value_n

      public static jnr.ffi.Pointer floatset_value_n(jnr.ffi.Pointer s, int n)
    • floatset_values

      public static jnr.ffi.Pointer floatset_values(jnr.ffi.Pointer s, jnr.ffi.Pointer count)
    • floatspan_lower

      public static double floatspan_lower(jnr.ffi.Pointer s)
    • floatspan_upper

      public static double floatspan_upper(jnr.ffi.Pointer s)
    • floatspan_width

      public static double floatspan_width(jnr.ffi.Pointer s)
    • floatspanset_lower

      public static double floatspanset_lower(jnr.ffi.Pointer ss)
    • floatspanset_upper

      public static double floatspanset_upper(jnr.ffi.Pointer ss)
    • floatspanset_width

      public static double floatspanset_width(jnr.ffi.Pointer ss, boolean boundspan)
    • intset_end_value

      public static int intset_end_value(jnr.ffi.Pointer s)
    • intset_start_value

      public static int intset_start_value(jnr.ffi.Pointer s)
    • intset_value_n

      public static jnr.ffi.Pointer intset_value_n(jnr.ffi.Pointer s, int n)
    • intset_values

      public static jnr.ffi.Pointer intset_values(jnr.ffi.Pointer s, jnr.ffi.Pointer count)
    • intspan_lower

      public static int intspan_lower(jnr.ffi.Pointer s)
    • intspan_upper

      public static int intspan_upper(jnr.ffi.Pointer s)
    • intspan_width

      public static int intspan_width(jnr.ffi.Pointer s)
    • intspanset_lower

      public static int intspanset_lower(jnr.ffi.Pointer ss)
    • intspanset_upper

      public static int intspanset_upper(jnr.ffi.Pointer ss)
    • intspanset_width

      public static int intspanset_width(jnr.ffi.Pointer ss, boolean boundspan)
    • set_hash

      public static int set_hash(jnr.ffi.Pointer s)
    • set_hash_extended

      public static long set_hash_extended(jnr.ffi.Pointer s, long seed)
    • set_num_values

      public static int set_num_values(jnr.ffi.Pointer s)
    • span_hash

      public static int span_hash(jnr.ffi.Pointer s)
    • span_hash_extended

      public static long span_hash_extended(jnr.ffi.Pointer s, long seed)
    • span_lower_inc

      public static boolean span_lower_inc(jnr.ffi.Pointer s)
    • span_upper_inc

      public static boolean span_upper_inc(jnr.ffi.Pointer s)
    • spanset_end_span

      public static jnr.ffi.Pointer spanset_end_span(jnr.ffi.Pointer ss)
    • spanset_hash

      public static int spanset_hash(jnr.ffi.Pointer ss)
    • spanset_hash_extended

      public static long spanset_hash_extended(jnr.ffi.Pointer ss, long seed)
    • spanset_lower_inc

      public static boolean spanset_lower_inc(jnr.ffi.Pointer ss)
    • spanset_num_spans

      public static int spanset_num_spans(jnr.ffi.Pointer ss)
    • spanset_span

      public static jnr.ffi.Pointer spanset_span(jnr.ffi.Pointer ss)
    • spanset_span_n

      public static jnr.ffi.Pointer spanset_span_n(jnr.ffi.Pointer ss, int i)
    • spanset_spanarr

      public static jnr.ffi.Pointer spanset_spanarr(jnr.ffi.Pointer ss, jnr.ffi.Pointer count)
    • spanset_start_span

      public static jnr.ffi.Pointer spanset_start_span(jnr.ffi.Pointer ss)
    • spanset_upper_inc

      public static boolean spanset_upper_inc(jnr.ffi.Pointer ss)
    • textset_end_value

      public static jnr.ffi.Pointer textset_end_value(jnr.ffi.Pointer s)
    • textset_start_value

      public static jnr.ffi.Pointer textset_start_value(jnr.ffi.Pointer s)
    • textset_value_n

      public static jnr.ffi.Pointer textset_value_n(jnr.ffi.Pointer s, int n)
    • textset_values

      public static jnr.ffi.Pointer textset_values(jnr.ffi.Pointer s, jnr.ffi.Pointer count)
    • tstzset_end_value

      public static OffsetDateTime tstzset_end_value(jnr.ffi.Pointer s)
    • tstzset_start_value

      public static OffsetDateTime tstzset_start_value(jnr.ffi.Pointer s)
    • tstzset_value_n

      public static jnr.ffi.Pointer tstzset_value_n(jnr.ffi.Pointer s, int n)
    • tstzset_values

      public static jnr.ffi.Pointer tstzset_values(jnr.ffi.Pointer s, jnr.ffi.Pointer count)
    • tstzspan_duration

      public static jnr.ffi.Pointer tstzspan_duration(jnr.ffi.Pointer s)
    • tstzspan_lower

      public static OffsetDateTime tstzspan_lower(jnr.ffi.Pointer s)
    • tstzspan_upper

      public static OffsetDateTime tstzspan_upper(jnr.ffi.Pointer s)
    • tstzspanset_duration

      public static jnr.ffi.Pointer tstzspanset_duration(jnr.ffi.Pointer ss, boolean boundspan)
    • tstzspanset_end_timestamptz

      public static OffsetDateTime tstzspanset_end_timestamptz(jnr.ffi.Pointer ss)
    • tstzspanset_lower

      public static OffsetDateTime tstzspanset_lower(jnr.ffi.Pointer ss)
    • tstzspanset_num_timestamps

      public static int tstzspanset_num_timestamps(jnr.ffi.Pointer ss)
    • tstzspanset_start_timestamptz

      public static OffsetDateTime tstzspanset_start_timestamptz(jnr.ffi.Pointer ss)
    • tstzspanset_timestamps

      public static jnr.ffi.Pointer tstzspanset_timestamps(jnr.ffi.Pointer ss)
    • tstzspanset_timestamptz_n

      public static jnr.ffi.Pointer tstzspanset_timestamptz_n(jnr.ffi.Pointer ss, int n)
    • tstzspanset_upper

      public static OffsetDateTime tstzspanset_upper(jnr.ffi.Pointer ss)
    • bigintset_shift_scale

      public static jnr.ffi.Pointer bigintset_shift_scale(jnr.ffi.Pointer s, long shift, long width, boolean hasshift, boolean haswidth)
    • bigintspan_shift_scale

      public static jnr.ffi.Pointer bigintspan_shift_scale(jnr.ffi.Pointer s, long shift, long width, boolean hasshift, boolean haswidth)
    • bigintspanset_shift_scale

      public static jnr.ffi.Pointer bigintspanset_shift_scale(jnr.ffi.Pointer ss, long shift, long width, boolean hasshift, boolean haswidth)
    • dateset_shift_scale

      public static jnr.ffi.Pointer dateset_shift_scale(jnr.ffi.Pointer s, int shift, int width, boolean hasshift, boolean haswidth)
    • datespan_shift_scale

      public static jnr.ffi.Pointer datespan_shift_scale(jnr.ffi.Pointer s, int shift, int width, boolean hasshift, boolean haswidth)
    • datespanset_shift_scale

      public static jnr.ffi.Pointer datespanset_shift_scale(jnr.ffi.Pointer ss, int shift, int width, boolean hasshift, boolean haswidth)
    • floatset_ceil

      public static jnr.ffi.Pointer floatset_ceil(jnr.ffi.Pointer s)
    • floatset_degrees

      public static jnr.ffi.Pointer floatset_degrees(jnr.ffi.Pointer s, boolean normalize)
    • floatset_floor

      public static jnr.ffi.Pointer floatset_floor(jnr.ffi.Pointer s)
    • floatset_radians

      public static jnr.ffi.Pointer floatset_radians(jnr.ffi.Pointer s)
    • floatset_shift_scale

      public static jnr.ffi.Pointer floatset_shift_scale(jnr.ffi.Pointer s, double shift, double width, boolean hasshift, boolean haswidth)
    • floatspan_ceil

      public static jnr.ffi.Pointer floatspan_ceil(jnr.ffi.Pointer s)
    • floatspan_degrees

      public static jnr.ffi.Pointer floatspan_degrees(jnr.ffi.Pointer s, boolean normalize)
    • floatspan_floor

      public static jnr.ffi.Pointer floatspan_floor(jnr.ffi.Pointer s)
    • floatspan_radians

      public static jnr.ffi.Pointer floatspan_radians(jnr.ffi.Pointer s)
    • floatspan_round

      public static jnr.ffi.Pointer floatspan_round(jnr.ffi.Pointer s, int maxdd)
    • floatspan_shift_scale

      public static jnr.ffi.Pointer floatspan_shift_scale(jnr.ffi.Pointer s, double shift, double width, boolean hasshift, boolean haswidth)
    • floatspanset_ceil

      public static jnr.ffi.Pointer floatspanset_ceil(jnr.ffi.Pointer ss)
    • floatspanset_floor

      public static jnr.ffi.Pointer floatspanset_floor(jnr.ffi.Pointer ss)
    • floatspanset_degrees

      public static jnr.ffi.Pointer floatspanset_degrees(jnr.ffi.Pointer ss, boolean normalize)
    • floatspanset_radians

      public static jnr.ffi.Pointer floatspanset_radians(jnr.ffi.Pointer ss)
    • floatspanset_round

      public static jnr.ffi.Pointer floatspanset_round(jnr.ffi.Pointer ss, int maxdd)
    • floatspanset_shift_scale

      public static jnr.ffi.Pointer floatspanset_shift_scale(jnr.ffi.Pointer ss, double shift, double width, boolean hasshift, boolean haswidth)
    • intset_shift_scale

      public static jnr.ffi.Pointer intset_shift_scale(jnr.ffi.Pointer s, int shift, int width, boolean hasshift, boolean haswidth)
    • intspan_shift_scale

      public static jnr.ffi.Pointer intspan_shift_scale(jnr.ffi.Pointer s, int shift, int width, boolean hasshift, boolean haswidth)
    • intspanset_shift_scale

      public static jnr.ffi.Pointer intspanset_shift_scale(jnr.ffi.Pointer ss, int shift, int width, boolean hasshift, boolean haswidth)
    • tstzspan_expand

      public static jnr.ffi.Pointer tstzspan_expand(jnr.ffi.Pointer s, jnr.ffi.Pointer interv)
    • set_round

      public static jnr.ffi.Pointer set_round(jnr.ffi.Pointer s, int maxdd)
    • textcat_text_textset

      public static jnr.ffi.Pointer textcat_text_textset(jnr.ffi.Pointer txt, jnr.ffi.Pointer s)
    • textcat_textset_text

      public static jnr.ffi.Pointer textcat_textset_text(jnr.ffi.Pointer s, jnr.ffi.Pointer txt)
    • textset_initcap

      public static jnr.ffi.Pointer textset_initcap(jnr.ffi.Pointer s)
    • textset_lower

      public static jnr.ffi.Pointer textset_lower(jnr.ffi.Pointer s)
    • textset_upper

      public static jnr.ffi.Pointer textset_upper(jnr.ffi.Pointer s)
    • timestamptz_tprecision

      public static OffsetDateTime timestamptz_tprecision(OffsetDateTime t, jnr.ffi.Pointer duration, OffsetDateTime torigin)
    • tstzset_shift_scale

      public static jnr.ffi.Pointer tstzset_shift_scale(jnr.ffi.Pointer s, jnr.ffi.Pointer shift, jnr.ffi.Pointer duration)
    • tstzset_tprecision

      public static jnr.ffi.Pointer tstzset_tprecision(jnr.ffi.Pointer s, jnr.ffi.Pointer duration, OffsetDateTime torigin)
    • tstzspan_shift_scale

      public static jnr.ffi.Pointer tstzspan_shift_scale(jnr.ffi.Pointer s, jnr.ffi.Pointer shift, jnr.ffi.Pointer duration)
    • tstzspan_tprecision

      public static jnr.ffi.Pointer tstzspan_tprecision(jnr.ffi.Pointer s, jnr.ffi.Pointer duration, OffsetDateTime torigin)
    • tstzspanset_shift_scale

      public static jnr.ffi.Pointer tstzspanset_shift_scale(jnr.ffi.Pointer ss, jnr.ffi.Pointer shift, jnr.ffi.Pointer duration)
    • tstzspanset_tprecision

      public static jnr.ffi.Pointer tstzspanset_tprecision(jnr.ffi.Pointer ss, jnr.ffi.Pointer duration, OffsetDateTime torigin)
    • set_cmp

      public static int set_cmp(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • set_eq

      public static boolean set_eq(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • set_ge

      public static boolean set_ge(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • set_gt

      public static boolean set_gt(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • set_le

      public static boolean set_le(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • set_lt

      public static boolean set_lt(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • set_ne

      public static boolean set_ne(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • span_cmp

      public static int span_cmp(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • span_eq

      public static boolean span_eq(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • span_ge

      public static boolean span_ge(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • span_gt

      public static boolean span_gt(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • span_le

      public static boolean span_le(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • span_lt

      public static boolean span_lt(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • span_ne

      public static boolean span_ne(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • spanset_cmp

      public static int spanset_cmp(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • spanset_eq

      public static boolean spanset_eq(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • spanset_ge

      public static boolean spanset_ge(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • spanset_gt

      public static boolean spanset_gt(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • spanset_le

      public static boolean spanset_le(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • spanset_lt

      public static boolean spanset_lt(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • spanset_ne

      public static boolean spanset_ne(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • set_spans

      public static jnr.ffi.Pointer set_spans(jnr.ffi.Pointer s, jnr.ffi.Pointer count)
    • set_split_each_n_spans

      public static jnr.ffi.Pointer set_split_each_n_spans(jnr.ffi.Pointer s, int elems_per_span, jnr.ffi.Pointer count)
    • set_split_n_spans

      public static jnr.ffi.Pointer set_split_n_spans(jnr.ffi.Pointer s, int span_count, jnr.ffi.Pointer count)
    • spanset_spans

      public static jnr.ffi.Pointer spanset_spans(jnr.ffi.Pointer ss, jnr.ffi.Pointer count)
    • spanset_split_each_n_spans

      public static jnr.ffi.Pointer spanset_split_each_n_spans(jnr.ffi.Pointer ss, int elems_per_span, jnr.ffi.Pointer count)
    • spanset_split_n_spans

      public static jnr.ffi.Pointer spanset_split_n_spans(jnr.ffi.Pointer ss, int span_count, jnr.ffi.Pointer count)
    • adjacent_span_bigint

      public static boolean adjacent_span_bigint(jnr.ffi.Pointer s, long i)
    • adjacent_span_date

      public static boolean adjacent_span_date(jnr.ffi.Pointer s, int d)
    • adjacent_span_float

      public static boolean adjacent_span_float(jnr.ffi.Pointer s, double d)
    • adjacent_span_int

      public static boolean adjacent_span_int(jnr.ffi.Pointer s, int i)
    • adjacent_span_span

      public static boolean adjacent_span_span(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • adjacent_span_spanset

      public static boolean adjacent_span_spanset(jnr.ffi.Pointer s, jnr.ffi.Pointer ss)
    • adjacent_span_timestamptz

      public static boolean adjacent_span_timestamptz(jnr.ffi.Pointer s, OffsetDateTime t)
    • adjacent_bigint_span

      public static boolean adjacent_bigint_span(long i, jnr.ffi.Pointer s)
    • adjacent_date_span

      public static boolean adjacent_date_span(int d, jnr.ffi.Pointer s)
    • adjacent_float_span

      public static boolean adjacent_float_span(double d, jnr.ffi.Pointer s)
    • adjacent_int_span

      public static boolean adjacent_int_span(int i, jnr.ffi.Pointer s)
    • adjacent_timestamptz_span

      public static boolean adjacent_timestamptz_span(OffsetDateTime t, jnr.ffi.Pointer s)
    • adjacent_spanset_bigint

      public static boolean adjacent_spanset_bigint(jnr.ffi.Pointer ss, long i)
    • adjacent_spanset_date

      public static boolean adjacent_spanset_date(jnr.ffi.Pointer ss, int d)
    • adjacent_spanset_float

      public static boolean adjacent_spanset_float(jnr.ffi.Pointer ss, double d)
    • adjacent_spanset_int

      public static boolean adjacent_spanset_int(jnr.ffi.Pointer ss, int i)
    • adjacent_spanset_timestamptz

      public static boolean adjacent_spanset_timestamptz(jnr.ffi.Pointer ss, OffsetDateTime t)
    • adjacent_spanset_span

      public static boolean adjacent_spanset_span(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • adjacent_spanset_spanset

      public static boolean adjacent_spanset_spanset(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • contained_bigint_set

      public static boolean contained_bigint_set(long i, jnr.ffi.Pointer s)
    • contained_bigint_span

      public static boolean contained_bigint_span(long i, jnr.ffi.Pointer s)
    • contained_bigint_spanset

      public static boolean contained_bigint_spanset(long i, jnr.ffi.Pointer ss)
    • contained_date_set

      public static boolean contained_date_set(int d, jnr.ffi.Pointer s)
    • contained_date_span

      public static boolean contained_date_span(int d, jnr.ffi.Pointer s)
    • contained_date_spanset

      public static boolean contained_date_spanset(int d, jnr.ffi.Pointer ss)
    • contained_float_set

      public static boolean contained_float_set(double d, jnr.ffi.Pointer s)
    • contained_float_span

      public static boolean contained_float_span(double d, jnr.ffi.Pointer s)
    • contained_float_spanset

      public static boolean contained_float_spanset(double d, jnr.ffi.Pointer ss)
    • contained_int_set

      public static boolean contained_int_set(int i, jnr.ffi.Pointer s)
    • contained_int_span

      public static boolean contained_int_span(int i, jnr.ffi.Pointer s)
    • contained_int_spanset

      public static boolean contained_int_spanset(int i, jnr.ffi.Pointer ss)
    • contained_set_set

      public static boolean contained_set_set(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • contained_span_span

      public static boolean contained_span_span(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • contained_span_spanset

      public static boolean contained_span_spanset(jnr.ffi.Pointer s, jnr.ffi.Pointer ss)
    • contained_spanset_span

      public static boolean contained_spanset_span(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • contained_spanset_spanset

      public static boolean contained_spanset_spanset(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • contained_text_set

      public static boolean contained_text_set(jnr.ffi.Pointer txt, jnr.ffi.Pointer s)
    • contained_timestamptz_set

      public static boolean contained_timestamptz_set(OffsetDateTime t, jnr.ffi.Pointer s)
    • contained_timestamptz_span

      public static boolean contained_timestamptz_span(OffsetDateTime t, jnr.ffi.Pointer s)
    • contained_timestamptz_spanset

      public static boolean contained_timestamptz_spanset(OffsetDateTime t, jnr.ffi.Pointer ss)
    • contains_set_bigint

      public static boolean contains_set_bigint(jnr.ffi.Pointer s, long i)
    • contains_set_date

      public static boolean contains_set_date(jnr.ffi.Pointer s, int d)
    • contains_set_float

      public static boolean contains_set_float(jnr.ffi.Pointer s, double d)
    • contains_set_int

      public static boolean contains_set_int(jnr.ffi.Pointer s, int i)
    • contains_set_set

      public static boolean contains_set_set(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • contains_set_text

      public static boolean contains_set_text(jnr.ffi.Pointer s, jnr.ffi.Pointer t)
    • contains_set_timestamptz

      public static boolean contains_set_timestamptz(jnr.ffi.Pointer s, OffsetDateTime t)
    • contains_span_bigint

      public static boolean contains_span_bigint(jnr.ffi.Pointer s, long i)
    • contains_span_date

      public static boolean contains_span_date(jnr.ffi.Pointer s, int d)
    • contains_span_float

      public static boolean contains_span_float(jnr.ffi.Pointer s, double d)
    • contains_span_int

      public static boolean contains_span_int(jnr.ffi.Pointer s, int i)
    • contains_span_span

      public static boolean contains_span_span(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • contains_span_spanset

      public static boolean contains_span_spanset(jnr.ffi.Pointer s, jnr.ffi.Pointer ss)
    • contains_span_timestamptz

      public static boolean contains_span_timestamptz(jnr.ffi.Pointer s, OffsetDateTime t)
    • contains_spanset_bigint

      public static boolean contains_spanset_bigint(jnr.ffi.Pointer ss, long i)
    • contains_spanset_date

      public static boolean contains_spanset_date(jnr.ffi.Pointer ss, int d)
    • contains_spanset_float

      public static boolean contains_spanset_float(jnr.ffi.Pointer ss, double d)
    • contains_spanset_int

      public static boolean contains_spanset_int(jnr.ffi.Pointer ss, int i)
    • contains_spanset_span

      public static boolean contains_spanset_span(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • contains_spanset_spanset

      public static boolean contains_spanset_spanset(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • contains_spanset_timestamptz

      public static boolean contains_spanset_timestamptz(jnr.ffi.Pointer ss, OffsetDateTime t)
    • overlaps_set_set

      public static boolean overlaps_set_set(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • overlaps_span_span

      public static boolean overlaps_span_span(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • overlaps_span_spanset

      public static boolean overlaps_span_spanset(jnr.ffi.Pointer s, jnr.ffi.Pointer ss)
    • overlaps_spanset_span

      public static boolean overlaps_spanset_span(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • overlaps_spanset_spanset

      public static boolean overlaps_spanset_spanset(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • same_span_span

      public static boolean same_span_span(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • after_date_set

      public static boolean after_date_set(int d, jnr.ffi.Pointer s)
    • after_date_span

      public static boolean after_date_span(int d, jnr.ffi.Pointer s)
    • after_date_spanset

      public static boolean after_date_spanset(int d, jnr.ffi.Pointer ss)
    • after_set_date

      public static boolean after_set_date(jnr.ffi.Pointer s, int d)
    • after_set_timestamptz

      public static boolean after_set_timestamptz(jnr.ffi.Pointer s, OffsetDateTime t)
    • after_span_date

      public static boolean after_span_date(jnr.ffi.Pointer s, int d)
    • after_span_timestamptz

      public static boolean after_span_timestamptz(jnr.ffi.Pointer s, OffsetDateTime t)
    • after_spanset_date

      public static boolean after_spanset_date(jnr.ffi.Pointer ss, int d)
    • after_spanset_timestamptz

      public static boolean after_spanset_timestamptz(jnr.ffi.Pointer ss, OffsetDateTime t)
    • after_timestamptz_set

      public static boolean after_timestamptz_set(OffsetDateTime t, jnr.ffi.Pointer s)
    • after_timestamptz_span

      public static boolean after_timestamptz_span(OffsetDateTime t, jnr.ffi.Pointer s)
    • after_timestamptz_spanset

      public static boolean after_timestamptz_spanset(OffsetDateTime t, jnr.ffi.Pointer ss)
    • before_date_set

      public static boolean before_date_set(int d, jnr.ffi.Pointer s)
    • before_date_span

      public static boolean before_date_span(int d, jnr.ffi.Pointer s)
    • before_date_spanset

      public static boolean before_date_spanset(int d, jnr.ffi.Pointer ss)
    • before_set_date

      public static boolean before_set_date(jnr.ffi.Pointer s, int d)
    • before_set_timestamptz

      public static boolean before_set_timestamptz(jnr.ffi.Pointer s, OffsetDateTime t)
    • before_span_date

      public static boolean before_span_date(jnr.ffi.Pointer s, int d)
    • before_span_timestamptz

      public static boolean before_span_timestamptz(jnr.ffi.Pointer s, OffsetDateTime t)
    • before_spanset_date

      public static boolean before_spanset_date(jnr.ffi.Pointer ss, int d)
    • before_spanset_timestamptz

      public static boolean before_spanset_timestamptz(jnr.ffi.Pointer ss, OffsetDateTime t)
    • before_timestamptz_set

      public static boolean before_timestamptz_set(OffsetDateTime t, jnr.ffi.Pointer s)
    • before_timestamptz_span

      public static boolean before_timestamptz_span(OffsetDateTime t, jnr.ffi.Pointer s)
    • before_timestamptz_spanset

      public static boolean before_timestamptz_spanset(OffsetDateTime t, jnr.ffi.Pointer ss)
    • left_bigint_set

      public static boolean left_bigint_set(long i, jnr.ffi.Pointer s)
    • left_bigint_span

      public static boolean left_bigint_span(long i, jnr.ffi.Pointer s)
    • left_bigint_spanset

      public static boolean left_bigint_spanset(long i, jnr.ffi.Pointer ss)
    • left_float_set

      public static boolean left_float_set(double d, jnr.ffi.Pointer s)
    • left_float_span

      public static boolean left_float_span(double d, jnr.ffi.Pointer s)
    • left_float_spanset

      public static boolean left_float_spanset(double d, jnr.ffi.Pointer ss)
    • left_int_set

      public static boolean left_int_set(int i, jnr.ffi.Pointer s)
    • left_int_span

      public static boolean left_int_span(int i, jnr.ffi.Pointer s)
    • left_int_spanset

      public static boolean left_int_spanset(int i, jnr.ffi.Pointer ss)
    • left_set_bigint

      public static boolean left_set_bigint(jnr.ffi.Pointer s, long i)
    • left_set_float

      public static boolean left_set_float(jnr.ffi.Pointer s, double d)
    • left_set_int

      public static boolean left_set_int(jnr.ffi.Pointer s, int i)
    • left_set_set

      public static boolean left_set_set(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • left_set_text

      public static boolean left_set_text(jnr.ffi.Pointer s, jnr.ffi.Pointer txt)
    • left_span_bigint

      public static boolean left_span_bigint(jnr.ffi.Pointer s, long i)
    • left_span_float

      public static boolean left_span_float(jnr.ffi.Pointer s, double d)
    • left_span_int

      public static boolean left_span_int(jnr.ffi.Pointer s, int i)
    • left_span_span

      public static boolean left_span_span(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • left_span_spanset

      public static boolean left_span_spanset(jnr.ffi.Pointer s, jnr.ffi.Pointer ss)
    • left_spanset_bigint

      public static boolean left_spanset_bigint(jnr.ffi.Pointer ss, long i)
    • left_spanset_float

      public static boolean left_spanset_float(jnr.ffi.Pointer ss, double d)
    • left_spanset_int

      public static boolean left_spanset_int(jnr.ffi.Pointer ss, int i)
    • left_spanset_span

      public static boolean left_spanset_span(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • left_spanset_spanset

      public static boolean left_spanset_spanset(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • left_text_set

      public static boolean left_text_set(jnr.ffi.Pointer txt, jnr.ffi.Pointer s)
    • overafter_date_set

      public static boolean overafter_date_set(int d, jnr.ffi.Pointer s)
    • overafter_date_span

      public static boolean overafter_date_span(int d, jnr.ffi.Pointer s)
    • overafter_date_spanset

      public static boolean overafter_date_spanset(int d, jnr.ffi.Pointer ss)
    • overafter_set_date

      public static boolean overafter_set_date(jnr.ffi.Pointer s, int d)
    • overafter_set_timestamptz

      public static boolean overafter_set_timestamptz(jnr.ffi.Pointer s, OffsetDateTime t)
    • overafter_span_date

      public static boolean overafter_span_date(jnr.ffi.Pointer s, int d)
    • overafter_span_timestamptz

      public static boolean overafter_span_timestamptz(jnr.ffi.Pointer s, OffsetDateTime t)
    • overafter_spanset_date

      public static boolean overafter_spanset_date(jnr.ffi.Pointer ss, int d)
    • overafter_spanset_timestamptz

      public static boolean overafter_spanset_timestamptz(jnr.ffi.Pointer ss, OffsetDateTime t)
    • overafter_timestamptz_set

      public static boolean overafter_timestamptz_set(OffsetDateTime t, jnr.ffi.Pointer s)
    • overafter_timestamptz_span

      public static boolean overafter_timestamptz_span(OffsetDateTime t, jnr.ffi.Pointer s)
    • overafter_timestamptz_spanset

      public static boolean overafter_timestamptz_spanset(OffsetDateTime t, jnr.ffi.Pointer ss)
    • overbefore_date_set

      public static boolean overbefore_date_set(int d, jnr.ffi.Pointer s)
    • overbefore_date_span

      public static boolean overbefore_date_span(int d, jnr.ffi.Pointer s)
    • overbefore_date_spanset

      public static boolean overbefore_date_spanset(int d, jnr.ffi.Pointer ss)
    • overbefore_set_date

      public static boolean overbefore_set_date(jnr.ffi.Pointer s, int d)
    • overbefore_set_timestamptz

      public static boolean overbefore_set_timestamptz(jnr.ffi.Pointer s, OffsetDateTime t)
    • overbefore_span_date

      public static boolean overbefore_span_date(jnr.ffi.Pointer s, int d)
    • overbefore_span_timestamptz

      public static boolean overbefore_span_timestamptz(jnr.ffi.Pointer s, OffsetDateTime t)
    • overbefore_spanset_date

      public static boolean overbefore_spanset_date(jnr.ffi.Pointer ss, int d)
    • overbefore_spanset_timestamptz

      public static boolean overbefore_spanset_timestamptz(jnr.ffi.Pointer ss, OffsetDateTime t)
    • overbefore_timestamptz_set

      public static boolean overbefore_timestamptz_set(OffsetDateTime t, jnr.ffi.Pointer s)
    • overbefore_timestamptz_span

      public static boolean overbefore_timestamptz_span(OffsetDateTime t, jnr.ffi.Pointer s)
    • overbefore_timestamptz_spanset

      public static boolean overbefore_timestamptz_spanset(OffsetDateTime t, jnr.ffi.Pointer ss)
    • overleft_bigint_set

      public static boolean overleft_bigint_set(long i, jnr.ffi.Pointer s)
    • overleft_bigint_span

      public static boolean overleft_bigint_span(long i, jnr.ffi.Pointer s)
    • overleft_bigint_spanset

      public static boolean overleft_bigint_spanset(long i, jnr.ffi.Pointer ss)
    • overleft_float_set

      public static boolean overleft_float_set(double d, jnr.ffi.Pointer s)
    • overleft_float_span

      public static boolean overleft_float_span(double d, jnr.ffi.Pointer s)
    • overleft_float_spanset

      public static boolean overleft_float_spanset(double d, jnr.ffi.Pointer ss)
    • overleft_int_set

      public static boolean overleft_int_set(int i, jnr.ffi.Pointer s)
    • overleft_int_span

      public static boolean overleft_int_span(int i, jnr.ffi.Pointer s)
    • overleft_int_spanset

      public static boolean overleft_int_spanset(int i, jnr.ffi.Pointer ss)
    • overleft_set_bigint

      public static boolean overleft_set_bigint(jnr.ffi.Pointer s, long i)
    • overleft_set_float

      public static boolean overleft_set_float(jnr.ffi.Pointer s, double d)
    • overleft_set_int

      public static boolean overleft_set_int(jnr.ffi.Pointer s, int i)
    • overleft_set_set

      public static boolean overleft_set_set(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • overleft_set_text

      public static boolean overleft_set_text(jnr.ffi.Pointer s, jnr.ffi.Pointer txt)
    • overleft_span_bigint

      public static boolean overleft_span_bigint(jnr.ffi.Pointer s, long i)
    • overleft_span_float

      public static boolean overleft_span_float(jnr.ffi.Pointer s, double d)
    • overleft_span_int

      public static boolean overleft_span_int(jnr.ffi.Pointer s, int i)
    • overleft_span_span

      public static boolean overleft_span_span(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • overleft_span_spanset

      public static boolean overleft_span_spanset(jnr.ffi.Pointer s, jnr.ffi.Pointer ss)
    • overleft_spanset_bigint

      public static boolean overleft_spanset_bigint(jnr.ffi.Pointer ss, long i)
    • overleft_spanset_float

      public static boolean overleft_spanset_float(jnr.ffi.Pointer ss, double d)
    • overleft_spanset_int

      public static boolean overleft_spanset_int(jnr.ffi.Pointer ss, int i)
    • overleft_spanset_span

      public static boolean overleft_spanset_span(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • overleft_spanset_spanset

      public static boolean overleft_spanset_spanset(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • overleft_text_set

      public static boolean overleft_text_set(jnr.ffi.Pointer txt, jnr.ffi.Pointer s)
    • overright_bigint_set

      public static boolean overright_bigint_set(long i, jnr.ffi.Pointer s)
    • overright_bigint_span

      public static boolean overright_bigint_span(long i, jnr.ffi.Pointer s)
    • overright_bigint_spanset

      public static boolean overright_bigint_spanset(long i, jnr.ffi.Pointer ss)
    • overright_float_set

      public static boolean overright_float_set(double d, jnr.ffi.Pointer s)
    • overright_float_span

      public static boolean overright_float_span(double d, jnr.ffi.Pointer s)
    • overright_float_spanset

      public static boolean overright_float_spanset(double d, jnr.ffi.Pointer ss)
    • overright_int_set

      public static boolean overright_int_set(int i, jnr.ffi.Pointer s)
    • overright_int_span

      public static boolean overright_int_span(int i, jnr.ffi.Pointer s)
    • overright_int_spanset

      public static boolean overright_int_spanset(int i, jnr.ffi.Pointer ss)
    • overright_set_bigint

      public static boolean overright_set_bigint(jnr.ffi.Pointer s, long i)
    • overright_set_float

      public static boolean overright_set_float(jnr.ffi.Pointer s, double d)
    • overright_set_int

      public static boolean overright_set_int(jnr.ffi.Pointer s, int i)
    • overright_set_set

      public static boolean overright_set_set(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • overright_set_text

      public static boolean overright_set_text(jnr.ffi.Pointer s, jnr.ffi.Pointer txt)
    • overright_span_bigint

      public static boolean overright_span_bigint(jnr.ffi.Pointer s, long i)
    • overright_span_float

      public static boolean overright_span_float(jnr.ffi.Pointer s, double d)
    • overright_span_int

      public static boolean overright_span_int(jnr.ffi.Pointer s, int i)
    • overright_span_span

      public static boolean overright_span_span(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • overright_span_spanset

      public static boolean overright_span_spanset(jnr.ffi.Pointer s, jnr.ffi.Pointer ss)
    • overright_spanset_bigint

      public static boolean overright_spanset_bigint(jnr.ffi.Pointer ss, long i)
    • overright_spanset_float

      public static boolean overright_spanset_float(jnr.ffi.Pointer ss, double d)
    • overright_spanset_int

      public static boolean overright_spanset_int(jnr.ffi.Pointer ss, int i)
    • overright_spanset_span

      public static boolean overright_spanset_span(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • overright_spanset_spanset

      public static boolean overright_spanset_spanset(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • overright_text_set

      public static boolean overright_text_set(jnr.ffi.Pointer txt, jnr.ffi.Pointer s)
    • right_bigint_set

      public static boolean right_bigint_set(long i, jnr.ffi.Pointer s)
    • right_bigint_span

      public static boolean right_bigint_span(long i, jnr.ffi.Pointer s)
    • right_bigint_spanset

      public static boolean right_bigint_spanset(long i, jnr.ffi.Pointer ss)
    • right_float_set

      public static boolean right_float_set(double d, jnr.ffi.Pointer s)
    • right_float_span

      public static boolean right_float_span(double d, jnr.ffi.Pointer s)
    • right_float_spanset

      public static boolean right_float_spanset(double d, jnr.ffi.Pointer ss)
    • right_int_set

      public static boolean right_int_set(int i, jnr.ffi.Pointer s)
    • right_int_span

      public static boolean right_int_span(int i, jnr.ffi.Pointer s)
    • right_int_spanset

      public static boolean right_int_spanset(int i, jnr.ffi.Pointer ss)
    • right_set_bigint

      public static boolean right_set_bigint(jnr.ffi.Pointer s, long i)
    • right_set_float

      public static boolean right_set_float(jnr.ffi.Pointer s, double d)
    • right_set_int

      public static boolean right_set_int(jnr.ffi.Pointer s, int i)
    • right_set_set

      public static boolean right_set_set(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • right_set_text

      public static boolean right_set_text(jnr.ffi.Pointer s, jnr.ffi.Pointer txt)
    • right_span_bigint

      public static boolean right_span_bigint(jnr.ffi.Pointer s, long i)
    • right_span_float

      public static boolean right_span_float(jnr.ffi.Pointer s, double d)
    • right_span_int

      public static boolean right_span_int(jnr.ffi.Pointer s, int i)
    • right_span_span

      public static boolean right_span_span(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • right_span_spanset

      public static boolean right_span_spanset(jnr.ffi.Pointer s, jnr.ffi.Pointer ss)
    • right_spanset_bigint

      public static boolean right_spanset_bigint(jnr.ffi.Pointer ss, long i)
    • right_spanset_float

      public static boolean right_spanset_float(jnr.ffi.Pointer ss, double d)
    • right_spanset_int

      public static boolean right_spanset_int(jnr.ffi.Pointer ss, int i)
    • right_spanset_span

      public static boolean right_spanset_span(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • right_spanset_spanset

      public static boolean right_spanset_spanset(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • right_text_set

      public static boolean right_text_set(jnr.ffi.Pointer txt, jnr.ffi.Pointer s)
    • intersection_bigint_set

      public static jnr.ffi.Pointer intersection_bigint_set(long i, jnr.ffi.Pointer s)
    • intersection_date_set

      public static jnr.ffi.Pointer intersection_date_set(int d, jnr.ffi.Pointer s)
    • intersection_float_set

      public static jnr.ffi.Pointer intersection_float_set(double d, jnr.ffi.Pointer s)
    • intersection_int_set

      public static jnr.ffi.Pointer intersection_int_set(int i, jnr.ffi.Pointer s)
    • intersection_set_bigint

      public static jnr.ffi.Pointer intersection_set_bigint(jnr.ffi.Pointer s, long i)
    • intersection_set_date

      public static jnr.ffi.Pointer intersection_set_date(jnr.ffi.Pointer s, int d)
    • intersection_set_float

      public static jnr.ffi.Pointer intersection_set_float(jnr.ffi.Pointer s, double d)
    • intersection_set_int

      public static jnr.ffi.Pointer intersection_set_int(jnr.ffi.Pointer s, int i)
    • intersection_set_set

      public static jnr.ffi.Pointer intersection_set_set(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • intersection_set_text

      public static jnr.ffi.Pointer intersection_set_text(jnr.ffi.Pointer s, jnr.ffi.Pointer txt)
    • intersection_set_timestamptz

      public static jnr.ffi.Pointer intersection_set_timestamptz(jnr.ffi.Pointer s, OffsetDateTime t)
    • intersection_span_bigint

      public static jnr.ffi.Pointer intersection_span_bigint(jnr.ffi.Pointer s, long i)
    • intersection_span_date

      public static jnr.ffi.Pointer intersection_span_date(jnr.ffi.Pointer s, int d)
    • intersection_span_float

      public static jnr.ffi.Pointer intersection_span_float(jnr.ffi.Pointer s, double d)
    • intersection_span_int

      public static jnr.ffi.Pointer intersection_span_int(jnr.ffi.Pointer s, int i)
    • intersection_span_span

      public static jnr.ffi.Pointer intersection_span_span(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • intersection_span_spanset

      public static jnr.ffi.Pointer intersection_span_spanset(jnr.ffi.Pointer s, jnr.ffi.Pointer ss)
    • intersection_span_timestamptz

      public static jnr.ffi.Pointer intersection_span_timestamptz(jnr.ffi.Pointer s, OffsetDateTime t)
    • intersection_spanset_bigint

      public static jnr.ffi.Pointer intersection_spanset_bigint(jnr.ffi.Pointer ss, long i)
    • intersection_spanset_date

      public static jnr.ffi.Pointer intersection_spanset_date(jnr.ffi.Pointer ss, int d)
    • intersection_spanset_float

      public static jnr.ffi.Pointer intersection_spanset_float(jnr.ffi.Pointer ss, double d)
    • intersection_spanset_int

      public static jnr.ffi.Pointer intersection_spanset_int(jnr.ffi.Pointer ss, int i)
    • intersection_spanset_span

      public static jnr.ffi.Pointer intersection_spanset_span(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • intersection_spanset_spanset

      public static jnr.ffi.Pointer intersection_spanset_spanset(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • intersection_spanset_timestamptz

      public static jnr.ffi.Pointer intersection_spanset_timestamptz(jnr.ffi.Pointer ss, OffsetDateTime t)
    • intersection_text_set

      public static jnr.ffi.Pointer intersection_text_set(jnr.ffi.Pointer txt, jnr.ffi.Pointer s)
    • intersection_timestamptz_set

      public static jnr.ffi.Pointer intersection_timestamptz_set(OffsetDateTime t, jnr.ffi.Pointer s)
    • minus_bigint_set

      public static jnr.ffi.Pointer minus_bigint_set(long i, jnr.ffi.Pointer s)
    • minus_bigint_span

      public static jnr.ffi.Pointer minus_bigint_span(long i, jnr.ffi.Pointer s)
    • minus_bigint_spanset

      public static jnr.ffi.Pointer minus_bigint_spanset(long i, jnr.ffi.Pointer ss)
    • minus_date_set

      public static jnr.ffi.Pointer minus_date_set(int d, jnr.ffi.Pointer s)
    • minus_date_span

      public static jnr.ffi.Pointer minus_date_span(int d, jnr.ffi.Pointer s)
    • minus_date_spanset

      public static jnr.ffi.Pointer minus_date_spanset(int d, jnr.ffi.Pointer ss)
    • minus_float_set

      public static jnr.ffi.Pointer minus_float_set(double d, jnr.ffi.Pointer s)
    • minus_float_span

      public static jnr.ffi.Pointer minus_float_span(double d, jnr.ffi.Pointer s)
    • minus_float_spanset

      public static jnr.ffi.Pointer minus_float_spanset(double d, jnr.ffi.Pointer ss)
    • minus_int_set

      public static jnr.ffi.Pointer minus_int_set(int i, jnr.ffi.Pointer s)
    • minus_int_span

      public static jnr.ffi.Pointer minus_int_span(int i, jnr.ffi.Pointer s)
    • minus_int_spanset

      public static jnr.ffi.Pointer minus_int_spanset(int i, jnr.ffi.Pointer ss)
    • minus_set_bigint

      public static jnr.ffi.Pointer minus_set_bigint(jnr.ffi.Pointer s, long i)
    • minus_set_date

      public static jnr.ffi.Pointer minus_set_date(jnr.ffi.Pointer s, int d)
    • minus_set_float

      public static jnr.ffi.Pointer minus_set_float(jnr.ffi.Pointer s, double d)
    • minus_set_int

      public static jnr.ffi.Pointer minus_set_int(jnr.ffi.Pointer s, int i)
    • minus_set_set

      public static jnr.ffi.Pointer minus_set_set(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • minus_set_text

      public static jnr.ffi.Pointer minus_set_text(jnr.ffi.Pointer s, jnr.ffi.Pointer txt)
    • minus_set_timestamptz

      public static jnr.ffi.Pointer minus_set_timestamptz(jnr.ffi.Pointer s, OffsetDateTime t)
    • minus_span_bigint

      public static jnr.ffi.Pointer minus_span_bigint(jnr.ffi.Pointer s, long i)
    • minus_span_date

      public static jnr.ffi.Pointer minus_span_date(jnr.ffi.Pointer s, int d)
    • minus_span_float

      public static jnr.ffi.Pointer minus_span_float(jnr.ffi.Pointer s, double d)
    • minus_span_int

      public static jnr.ffi.Pointer minus_span_int(jnr.ffi.Pointer s, int i)
    • minus_span_span

      public static jnr.ffi.Pointer minus_span_span(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • minus_span_spanset

      public static jnr.ffi.Pointer minus_span_spanset(jnr.ffi.Pointer s, jnr.ffi.Pointer ss)
    • minus_span_timestamptz

      public static jnr.ffi.Pointer minus_span_timestamptz(jnr.ffi.Pointer s, OffsetDateTime t)
    • minus_spanset_bigint

      public static jnr.ffi.Pointer minus_spanset_bigint(jnr.ffi.Pointer ss, long i)
    • minus_spanset_date

      public static jnr.ffi.Pointer minus_spanset_date(jnr.ffi.Pointer ss, int d)
    • minus_spanset_float

      public static jnr.ffi.Pointer minus_spanset_float(jnr.ffi.Pointer ss, double d)
    • minus_spanset_int

      public static jnr.ffi.Pointer minus_spanset_int(jnr.ffi.Pointer ss, int i)
    • minus_spanset_span

      public static jnr.ffi.Pointer minus_spanset_span(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • minus_spanset_spanset

      public static jnr.ffi.Pointer minus_spanset_spanset(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • minus_spanset_timestamptz

      public static jnr.ffi.Pointer minus_spanset_timestamptz(jnr.ffi.Pointer ss, OffsetDateTime t)
    • minus_text_set

      public static jnr.ffi.Pointer minus_text_set(jnr.ffi.Pointer txt, jnr.ffi.Pointer s)
    • minus_timestamptz_set

      public static jnr.ffi.Pointer minus_timestamptz_set(OffsetDateTime t, jnr.ffi.Pointer s)
    • minus_timestamptz_span

      public static jnr.ffi.Pointer minus_timestamptz_span(OffsetDateTime t, jnr.ffi.Pointer s)
    • minus_timestamptz_spanset

      public static jnr.ffi.Pointer minus_timestamptz_spanset(OffsetDateTime t, jnr.ffi.Pointer ss)
    • union_bigint_set

      public static jnr.ffi.Pointer union_bigint_set(long i, jnr.ffi.Pointer s)
    • union_bigint_span

      public static jnr.ffi.Pointer union_bigint_span(long i, jnr.ffi.Pointer s)
    • union_bigint_spanset

      public static jnr.ffi.Pointer union_bigint_spanset(long i, jnr.ffi.Pointer ss)
    • union_date_set

      public static jnr.ffi.Pointer union_date_set(int d, jnr.ffi.Pointer s)
    • union_date_span

      public static jnr.ffi.Pointer union_date_span(int d, jnr.ffi.Pointer s)
    • union_date_spanset

      public static jnr.ffi.Pointer union_date_spanset(int d, jnr.ffi.Pointer ss)
    • union_float_set

      public static jnr.ffi.Pointer union_float_set(double d, jnr.ffi.Pointer s)
    • union_float_span

      public static jnr.ffi.Pointer union_float_span(double d, jnr.ffi.Pointer s)
    • union_float_spanset

      public static jnr.ffi.Pointer union_float_spanset(double d, jnr.ffi.Pointer ss)
    • union_int_set

      public static jnr.ffi.Pointer union_int_set(int i, jnr.ffi.Pointer s)
    • union_int_span

      public static jnr.ffi.Pointer union_int_span(int i, jnr.ffi.Pointer s)
    • union_int_spanset

      public static jnr.ffi.Pointer union_int_spanset(int i, jnr.ffi.Pointer ss)
    • union_set_bigint

      public static jnr.ffi.Pointer union_set_bigint(jnr.ffi.Pointer s, long i)
    • union_set_date

      public static jnr.ffi.Pointer union_set_date(jnr.ffi.Pointer s, int d)
    • union_set_float

      public static jnr.ffi.Pointer union_set_float(jnr.ffi.Pointer s, double d)
    • union_set_int

      public static jnr.ffi.Pointer union_set_int(jnr.ffi.Pointer s, int i)
    • union_set_set

      public static jnr.ffi.Pointer union_set_set(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • union_set_text

      public static jnr.ffi.Pointer union_set_text(jnr.ffi.Pointer s, jnr.ffi.Pointer txt)
    • union_set_timestamptz

      public static jnr.ffi.Pointer union_set_timestamptz(jnr.ffi.Pointer s, OffsetDateTime t)
    • union_span_bigint

      public static jnr.ffi.Pointer union_span_bigint(jnr.ffi.Pointer s, long i)
    • union_span_date

      public static jnr.ffi.Pointer union_span_date(jnr.ffi.Pointer s, int d)
    • union_span_float

      public static jnr.ffi.Pointer union_span_float(jnr.ffi.Pointer s, double d)
    • union_span_int

      public static jnr.ffi.Pointer union_span_int(jnr.ffi.Pointer s, int i)
    • union_span_span

      public static jnr.ffi.Pointer union_span_span(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • super_union_span_span

      public static jnr.ffi.Pointer super_union_span_span(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • union_span_spanset

      public static jnr.ffi.Pointer union_span_spanset(jnr.ffi.Pointer s, jnr.ffi.Pointer ss)
    • union_span_timestamptz

      public static jnr.ffi.Pointer union_span_timestamptz(jnr.ffi.Pointer s, OffsetDateTime t)
    • union_spanset_bigint

      public static jnr.ffi.Pointer union_spanset_bigint(jnr.ffi.Pointer ss, long i)
    • union_spanset_date

      public static jnr.ffi.Pointer union_spanset_date(jnr.ffi.Pointer ss, int d)
    • union_spanset_float

      public static jnr.ffi.Pointer union_spanset_float(jnr.ffi.Pointer ss, double d)
    • union_spanset_int

      public static jnr.ffi.Pointer union_spanset_int(jnr.ffi.Pointer ss, int i)
    • union_spanset_span

      public static jnr.ffi.Pointer union_spanset_span(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • union_spanset_spanset

      public static jnr.ffi.Pointer union_spanset_spanset(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • union_spanset_timestamptz

      public static jnr.ffi.Pointer union_spanset_timestamptz(jnr.ffi.Pointer ss, OffsetDateTime t)
    • union_text_set

      public static jnr.ffi.Pointer union_text_set(jnr.ffi.Pointer txt, jnr.ffi.Pointer s)
    • union_timestamptz_set

      public static jnr.ffi.Pointer union_timestamptz_set(OffsetDateTime t, jnr.ffi.Pointer s)
    • union_timestamptz_span

      public static jnr.ffi.Pointer union_timestamptz_span(OffsetDateTime t, jnr.ffi.Pointer s)
    • union_timestamptz_spanset

      public static jnr.ffi.Pointer union_timestamptz_spanset(OffsetDateTime t, jnr.ffi.Pointer ss)
    • distance_bigintset_bigintset

      public static long distance_bigintset_bigintset(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • distance_bigintspan_bigintspan

      public static long distance_bigintspan_bigintspan(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • distance_bigintspanset_bigintspan

      public static long distance_bigintspanset_bigintspan(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • distance_bigintspanset_bigintspanset

      public static long distance_bigintspanset_bigintspanset(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • distance_dateset_dateset

      public static int distance_dateset_dateset(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • distance_datespan_datespan

      public static int distance_datespan_datespan(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • distance_datespanset_datespan

      public static int distance_datespanset_datespan(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • distance_datespanset_datespanset

      public static int distance_datespanset_datespanset(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • distance_floatset_floatset

      public static double distance_floatset_floatset(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • distance_floatspan_floatspan

      public static double distance_floatspan_floatspan(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • distance_floatspanset_floatspan

      public static double distance_floatspanset_floatspan(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • distance_floatspanset_floatspanset

      public static double distance_floatspanset_floatspanset(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • distance_intset_intset

      public static int distance_intset_intset(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • distance_intspan_intspan

      public static int distance_intspan_intspan(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • distance_intspanset_intspan

      public static int distance_intspanset_intspan(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • distance_intspanset_intspanset

      public static int distance_intspanset_intspanset(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • distance_set_bigint

      public static long distance_set_bigint(jnr.ffi.Pointer s, long i)
    • distance_set_date

      public static int distance_set_date(jnr.ffi.Pointer s, int d)
    • distance_set_float

      public static double distance_set_float(jnr.ffi.Pointer s, double d)
    • distance_set_int

      public static int distance_set_int(jnr.ffi.Pointer s, int i)
    • distance_set_timestamptz

      public static double distance_set_timestamptz(jnr.ffi.Pointer s, OffsetDateTime t)
    • distance_span_bigint

      public static long distance_span_bigint(jnr.ffi.Pointer s, long i)
    • distance_span_date

      public static int distance_span_date(jnr.ffi.Pointer s, int d)
    • distance_span_float

      public static double distance_span_float(jnr.ffi.Pointer s, double d)
    • distance_span_int

      public static int distance_span_int(jnr.ffi.Pointer s, int i)
    • distance_span_timestamptz

      public static double distance_span_timestamptz(jnr.ffi.Pointer s, OffsetDateTime t)
    • distance_spanset_bigint

      public static long distance_spanset_bigint(jnr.ffi.Pointer ss, long i)
    • distance_spanset_date

      public static int distance_spanset_date(jnr.ffi.Pointer ss, int d)
    • distance_spanset_float

      public static double distance_spanset_float(jnr.ffi.Pointer ss, double d)
    • distance_spanset_int

      public static int distance_spanset_int(jnr.ffi.Pointer ss, int i)
    • distance_spanset_timestamptz

      public static double distance_spanset_timestamptz(jnr.ffi.Pointer ss, OffsetDateTime t)
    • distance_tstzset_tstzset

      public static double distance_tstzset_tstzset(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • distance_tstzspan_tstzspan

      public static double distance_tstzspan_tstzspan(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • distance_tstzspanset_tstzspan

      public static double distance_tstzspanset_tstzspan(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • distance_tstzspanset_tstzspanset

      public static double distance_tstzspanset_tstzspanset(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • bigint_extent_transfn

      public static jnr.ffi.Pointer bigint_extent_transfn(jnr.ffi.Pointer state, long i)
    • bigint_union_transfn

      public static jnr.ffi.Pointer bigint_union_transfn(jnr.ffi.Pointer state, long i)
    • date_extent_transfn

      public static jnr.ffi.Pointer date_extent_transfn(jnr.ffi.Pointer state, int d)
    • date_union_transfn

      public static jnr.ffi.Pointer date_union_transfn(jnr.ffi.Pointer state, int d)
    • float_extent_transfn

      public static jnr.ffi.Pointer float_extent_transfn(jnr.ffi.Pointer state, double d)
    • float_union_transfn

      public static jnr.ffi.Pointer float_union_transfn(jnr.ffi.Pointer state, double d)
    • int_extent_transfn

      public static jnr.ffi.Pointer int_extent_transfn(jnr.ffi.Pointer state, int i)
    • int_union_transfn

      public static jnr.ffi.Pointer int_union_transfn(jnr.ffi.Pointer state, int i)
    • set_extent_transfn

      public static jnr.ffi.Pointer set_extent_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer s)
    • set_union_finalfn

      public static jnr.ffi.Pointer set_union_finalfn(jnr.ffi.Pointer state)
    • set_union_transfn

      public static jnr.ffi.Pointer set_union_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer s)
    • span_extent_transfn

      public static jnr.ffi.Pointer span_extent_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer s)
    • span_union_transfn

      public static jnr.ffi.Pointer span_union_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer s)
    • spanset_extent_transfn

      public static jnr.ffi.Pointer spanset_extent_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer ss)
    • spanset_union_finalfn

      public static jnr.ffi.Pointer spanset_union_finalfn(jnr.ffi.Pointer state)
    • spanset_union_transfn

      public static jnr.ffi.Pointer spanset_union_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer ss)
    • text_union_transfn

      public static jnr.ffi.Pointer text_union_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer txt)
    • timestamptz_extent_transfn

      public static jnr.ffi.Pointer timestamptz_extent_transfn(jnr.ffi.Pointer state, OffsetDateTime t)
    • timestamptz_union_transfn

      public static jnr.ffi.Pointer timestamptz_union_transfn(jnr.ffi.Pointer state, OffsetDateTime t)
    • bigint_get_bin

      public static long bigint_get_bin(long value, long vsize, long vorigin)
    • bigintspan_bins

      public static jnr.ffi.Pointer bigintspan_bins(jnr.ffi.Pointer s, long vsize, long vorigin, jnr.ffi.Pointer count)
    • bigintspanset_bins

      public static jnr.ffi.Pointer bigintspanset_bins(jnr.ffi.Pointer ss, long vsize, long vorigin, jnr.ffi.Pointer count)
    • date_get_bin

      public static int date_get_bin(int d, jnr.ffi.Pointer duration, int torigin)
    • datespan_bins

      public static jnr.ffi.Pointer datespan_bins(jnr.ffi.Pointer s, jnr.ffi.Pointer duration, int torigin, jnr.ffi.Pointer count)
    • datespanset_bins

      public static jnr.ffi.Pointer datespanset_bins(jnr.ffi.Pointer ss, jnr.ffi.Pointer duration, int torigin, jnr.ffi.Pointer count)
    • float_get_bin

      public static double float_get_bin(double value, double vsize, double vorigin)
    • floatspan_bins

      public static jnr.ffi.Pointer floatspan_bins(jnr.ffi.Pointer s, double vsize, double vorigin, jnr.ffi.Pointer count)
    • floatspanset_bins

      public static jnr.ffi.Pointer floatspanset_bins(jnr.ffi.Pointer ss, double vsize, double vorigin, jnr.ffi.Pointer count)
    • int_get_bin

      public static int int_get_bin(int value, int vsize, int vorigin)
    • intspan_bins

      public static jnr.ffi.Pointer intspan_bins(jnr.ffi.Pointer s, int vsize, int vorigin, jnr.ffi.Pointer count)
    • intspanset_bins

      public static jnr.ffi.Pointer intspanset_bins(jnr.ffi.Pointer ss, int vsize, int vorigin, jnr.ffi.Pointer count)
    • timestamptz_get_bin

      public static OffsetDateTime timestamptz_get_bin(OffsetDateTime t, jnr.ffi.Pointer duration, OffsetDateTime torigin)
    • tstzspan_bins

      public static jnr.ffi.Pointer tstzspan_bins(jnr.ffi.Pointer s, jnr.ffi.Pointer duration, OffsetDateTime origin, jnr.ffi.Pointer count)
    • tstzspanset_bins

      public static jnr.ffi.Pointer tstzspanset_bins(jnr.ffi.Pointer ss, jnr.ffi.Pointer duration, OffsetDateTime torigin, jnr.ffi.Pointer count)
    • tbox_as_hexwkb

      public static String tbox_as_hexwkb(jnr.ffi.Pointer box, byte variant)
    • tbox_as_wkb

      public static jnr.ffi.Pointer tbox_as_wkb(jnr.ffi.Pointer box, byte variant)
    • tbox_from_hexwkb

      public static jnr.ffi.Pointer tbox_from_hexwkb(String hexwkb)
    • tbox_from_wkb

      public static jnr.ffi.Pointer tbox_from_wkb(jnr.ffi.Pointer wkb, long size)
    • tbox_in

      public static jnr.ffi.Pointer tbox_in(String str)
    • tbox_out

      public static String tbox_out(jnr.ffi.Pointer box, int maxdd)
    • float_timestamptz_to_tbox

      public static jnr.ffi.Pointer float_timestamptz_to_tbox(double d, OffsetDateTime t)
    • float_tstzspan_to_tbox

      public static jnr.ffi.Pointer float_tstzspan_to_tbox(double d, jnr.ffi.Pointer s)
    • int_timestamptz_to_tbox

      public static jnr.ffi.Pointer int_timestamptz_to_tbox(int i, OffsetDateTime t)
    • bigint_timestamptz_to_tbox

      public static jnr.ffi.Pointer bigint_timestamptz_to_tbox(long i, OffsetDateTime t)
    • int_tstzspan_to_tbox

      public static jnr.ffi.Pointer int_tstzspan_to_tbox(int i, jnr.ffi.Pointer s)
    • bigint_tstzspan_to_tbox

      public static jnr.ffi.Pointer bigint_tstzspan_to_tbox(long i, jnr.ffi.Pointer s)
    • numspan_tstzspan_to_tbox

      public static jnr.ffi.Pointer numspan_tstzspan_to_tbox(jnr.ffi.Pointer span, jnr.ffi.Pointer s)
    • numspan_timestamptz_to_tbox

      public static jnr.ffi.Pointer numspan_timestamptz_to_tbox(jnr.ffi.Pointer span, OffsetDateTime t)
    • tbox_copy

      public static jnr.ffi.Pointer tbox_copy(jnr.ffi.Pointer box)
    • tbox_make

      public static jnr.ffi.Pointer tbox_make(jnr.ffi.Pointer s, jnr.ffi.Pointer p)
    • float_to_tbox

      public static jnr.ffi.Pointer float_to_tbox(double d)
    • int_to_tbox

      public static jnr.ffi.Pointer int_to_tbox(int i)
    • bigint_to_tbox

      public static jnr.ffi.Pointer bigint_to_tbox(long i)
    • set_to_tbox

      public static jnr.ffi.Pointer set_to_tbox(jnr.ffi.Pointer s)
    • span_to_tbox

      public static jnr.ffi.Pointer span_to_tbox(jnr.ffi.Pointer s)
    • spanset_to_tbox

      public static jnr.ffi.Pointer spanset_to_tbox(jnr.ffi.Pointer ss)
    • tbox_to_intspan

      public static jnr.ffi.Pointer tbox_to_intspan(jnr.ffi.Pointer box)
    • tbox_to_bigintspan

      public static jnr.ffi.Pointer tbox_to_bigintspan(jnr.ffi.Pointer box)
    • tbox_to_floatspan

      public static jnr.ffi.Pointer tbox_to_floatspan(jnr.ffi.Pointer box)
    • tbox_to_tstzspan

      public static jnr.ffi.Pointer tbox_to_tstzspan(jnr.ffi.Pointer box)
    • timestamptz_to_tbox

      public static jnr.ffi.Pointer timestamptz_to_tbox(OffsetDateTime t)
    • tbox_hash

      public static int tbox_hash(jnr.ffi.Pointer box)
    • tbox_hash_extended

      public static long tbox_hash_extended(jnr.ffi.Pointer box, long seed)
    • tbox_hast

      public static boolean tbox_hast(jnr.ffi.Pointer box)
    • tbox_hasx

      public static boolean tbox_hasx(jnr.ffi.Pointer box)
    • tbox_tmax

      public static jnr.ffi.Pointer tbox_tmax(jnr.ffi.Pointer box)
    • tbox_tmax_inc

      public static jnr.ffi.Pointer tbox_tmax_inc(jnr.ffi.Pointer box)
    • tbox_tmin

      public static jnr.ffi.Pointer tbox_tmin(jnr.ffi.Pointer box)
    • tbox_tmin_inc

      public static jnr.ffi.Pointer tbox_tmin_inc(jnr.ffi.Pointer box)
    • tbox_xmax

      public static jnr.ffi.Pointer tbox_xmax(jnr.ffi.Pointer box)
    • tbox_xmax_inc

      public static jnr.ffi.Pointer tbox_xmax_inc(jnr.ffi.Pointer box)
    • tbox_xmin

      public static jnr.ffi.Pointer tbox_xmin(jnr.ffi.Pointer box)
    • tbox_xmin_inc

      public static jnr.ffi.Pointer tbox_xmin_inc(jnr.ffi.Pointer box)
    • tboxfloat_xmax

      public static jnr.ffi.Pointer tboxfloat_xmax(jnr.ffi.Pointer box)
    • tboxfloat_xmin

      public static jnr.ffi.Pointer tboxfloat_xmin(jnr.ffi.Pointer box)
    • tboxint_xmax

      public static jnr.ffi.Pointer tboxint_xmax(jnr.ffi.Pointer box)
    • tboxbigint_xmax

      public static jnr.ffi.Pointer tboxbigint_xmax(jnr.ffi.Pointer box)
    • tboxint_xmin

      public static jnr.ffi.Pointer tboxint_xmin(jnr.ffi.Pointer box)
    • tboxbigint_xmin

      public static jnr.ffi.Pointer tboxbigint_xmin(jnr.ffi.Pointer box)
    • tfloatbox_expand

      public static jnr.ffi.Pointer tfloatbox_expand(jnr.ffi.Pointer box, double d)
    • tintbox_expand

      public static jnr.ffi.Pointer tintbox_expand(jnr.ffi.Pointer box, int i)
    • tbox_expand_time

      public static jnr.ffi.Pointer tbox_expand_time(jnr.ffi.Pointer box, jnr.ffi.Pointer interv)
    • tbox_round

      public static jnr.ffi.Pointer tbox_round(jnr.ffi.Pointer box, int maxdd)
    • tfloatbox_shift_scale

      public static jnr.ffi.Pointer tfloatbox_shift_scale(jnr.ffi.Pointer box, double shift, double width, boolean hasshift, boolean haswidth)
    • tintbox_shift_scale

      public static jnr.ffi.Pointer tintbox_shift_scale(jnr.ffi.Pointer box, int shift, int width, boolean hasshift, boolean haswidth)
    • tbox_shift_scale_time

      public static jnr.ffi.Pointer tbox_shift_scale_time(jnr.ffi.Pointer box, jnr.ffi.Pointer shift, jnr.ffi.Pointer duration)
    • tbigintbox_expand

      public static jnr.ffi.Pointer tbigintbox_expand(jnr.ffi.Pointer box, long i)
    • tbigintbox_shift_scale

      public static jnr.ffi.Pointer tbigintbox_shift_scale(jnr.ffi.Pointer box, long shift, long width, boolean hasshift, boolean haswidth)
    • union_tbox_tbox

      public static jnr.ffi.Pointer union_tbox_tbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2, boolean strict)
    • intersection_tbox_tbox

      public static jnr.ffi.Pointer intersection_tbox_tbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • adjacent_tbox_tbox

      public static boolean adjacent_tbox_tbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • contained_tbox_tbox

      public static boolean contained_tbox_tbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • contains_tbox_tbox

      public static boolean contains_tbox_tbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overlaps_tbox_tbox

      public static boolean overlaps_tbox_tbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • same_tbox_tbox

      public static boolean same_tbox_tbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • after_tbox_tbox

      public static boolean after_tbox_tbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • before_tbox_tbox

      public static boolean before_tbox_tbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • left_tbox_tbox

      public static boolean left_tbox_tbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overafter_tbox_tbox

      public static boolean overafter_tbox_tbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overbefore_tbox_tbox

      public static boolean overbefore_tbox_tbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overleft_tbox_tbox

      public static boolean overleft_tbox_tbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overright_tbox_tbox

      public static boolean overright_tbox_tbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • right_tbox_tbox

      public static boolean right_tbox_tbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tbox_cmp

      public static int tbox_cmp(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tbox_eq

      public static boolean tbox_eq(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tbox_ge

      public static boolean tbox_ge(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tbox_gt

      public static boolean tbox_gt(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tbox_le

      public static boolean tbox_le(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tbox_lt

      public static boolean tbox_lt(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tbox_ne

      public static boolean tbox_ne(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tbool_from_mfjson

      public static jnr.ffi.Pointer tbool_from_mfjson(String str)
    • tbool_in

      public static jnr.ffi.Pointer tbool_in(String str)
    • tbool_out

      public static String tbool_out(jnr.ffi.Pointer temp)
    • temporal_as_hexwkb

      public static String temporal_as_hexwkb(jnr.ffi.Pointer temp, byte variant)
    • temporal_as_mfjson

      public static String temporal_as_mfjson(jnr.ffi.Pointer temp, boolean with_bbox, int flags, int precision, String srs)
    • temporal_as_wkb

      public static jnr.ffi.Pointer temporal_as_wkb(jnr.ffi.Pointer temp, byte variant)
    • wkb_variant_from_endian

      public static byte wkb_variant_from_endian(String endian)
    • temporal_from_hexwkb

      public static jnr.ffi.Pointer temporal_from_hexwkb(String hexwkb)
    • temporal_from_wkb

      public static jnr.ffi.Pointer temporal_from_wkb(jnr.ffi.Pointer wkb, long size)
    • tfloat_from_mfjson

      public static jnr.ffi.Pointer tfloat_from_mfjson(String str)
    • tfloat_in

      public static jnr.ffi.Pointer tfloat_in(String str)
    • tfloat_out

      public static String tfloat_out(jnr.ffi.Pointer temp, int maxdd)
    • tint_from_mfjson

      public static jnr.ffi.Pointer tint_from_mfjson(String str)
    • tbigint_from_mfjson

      public static jnr.ffi.Pointer tbigint_from_mfjson(String str)
    • tint_in

      public static jnr.ffi.Pointer tint_in(String str)
    • tbigint_in

      public static jnr.ffi.Pointer tbigint_in(String str)
    • tint_out

      public static String tint_out(jnr.ffi.Pointer temp)
    • tbigint_out

      public static String tbigint_out(jnr.ffi.Pointer temp)
    • ttext_from_mfjson

      public static jnr.ffi.Pointer ttext_from_mfjson(String str)
    • ttext_in

      public static jnr.ffi.Pointer ttext_in(String str)
    • ttext_out

      public static String ttext_out(jnr.ffi.Pointer temp)
    • tbool_from_base_temp

      public static jnr.ffi.Pointer tbool_from_base_temp(boolean b, jnr.ffi.Pointer temp)
    • tboolinst_make

      public static jnr.ffi.Pointer tboolinst_make(boolean b, OffsetDateTime t)
    • tboolseq_from_base_tstzset

      public static jnr.ffi.Pointer tboolseq_from_base_tstzset(boolean b, jnr.ffi.Pointer s)
    • tboolseq_from_base_tstzspan

      public static jnr.ffi.Pointer tboolseq_from_base_tstzspan(boolean b, jnr.ffi.Pointer s)
    • tboolseqset_from_base_tstzspanset

      public static jnr.ffi.Pointer tboolseqset_from_base_tstzspanset(boolean b, jnr.ffi.Pointer ss)
    • temporal_copy

      public static jnr.ffi.Pointer temporal_copy(jnr.ffi.Pointer temp)
    • tfloat_from_base_temp

      public static jnr.ffi.Pointer tfloat_from_base_temp(double d, jnr.ffi.Pointer temp)
    • tfloatinst_make

      public static jnr.ffi.Pointer tfloatinst_make(double d, OffsetDateTime t)
    • tfloatseq_from_base_tstzset

      public static jnr.ffi.Pointer tfloatseq_from_base_tstzset(double d, jnr.ffi.Pointer s)
    • tfloatseq_from_base_tstzspan

      public static jnr.ffi.Pointer tfloatseq_from_base_tstzspan(double d, jnr.ffi.Pointer s, int interp)
    • tfloatseqset_from_base_tstzspanset

      public static jnr.ffi.Pointer tfloatseqset_from_base_tstzspanset(double d, jnr.ffi.Pointer ss, int interp)
    • tint_from_base_temp

      public static jnr.ffi.Pointer tint_from_base_temp(int i, jnr.ffi.Pointer temp)
    • tbigint_from_base_temp

      public static jnr.ffi.Pointer tbigint_from_base_temp(long i, jnr.ffi.Pointer temp)
    • tintinst_make

      public static jnr.ffi.Pointer tintinst_make(int i, OffsetDateTime t)
    • tbigintinst_make

      public static jnr.ffi.Pointer tbigintinst_make(long i, OffsetDateTime t)
    • tintseq_from_base_tstzset

      public static jnr.ffi.Pointer tintseq_from_base_tstzset(int i, jnr.ffi.Pointer s)
    • tbigintseq_from_base_tstzset

      public static jnr.ffi.Pointer tbigintseq_from_base_tstzset(long i, jnr.ffi.Pointer s)
    • tintseq_from_base_tstzspan

      public static jnr.ffi.Pointer tintseq_from_base_tstzspan(int i, jnr.ffi.Pointer s)
    • tbigintseq_from_base_tstzspan

      public static jnr.ffi.Pointer tbigintseq_from_base_tstzspan(long i, jnr.ffi.Pointer s)
    • tintseqset_from_base_tstzspanset

      public static jnr.ffi.Pointer tintseqset_from_base_tstzspanset(int i, jnr.ffi.Pointer ss)
    • tbigintseqset_from_base_tstzspanset

      public static jnr.ffi.Pointer tbigintseqset_from_base_tstzspanset(long i, jnr.ffi.Pointer ss)
    • tsequence_make

      public static jnr.ffi.Pointer tsequence_make(jnr.ffi.Pointer instants, int count, boolean lower_inc, boolean upper_inc, int interp, boolean normalize)
    • tsequenceset_make

      public static jnr.ffi.Pointer tsequenceset_make(jnr.ffi.Pointer sequences, int count, boolean normalize)
    • tsequenceset_make_gaps

      public static jnr.ffi.Pointer tsequenceset_make_gaps(jnr.ffi.Pointer instants, int count, int interp, jnr.ffi.Pointer maxt, double maxdist)
    • ttext_from_base_temp

      public static jnr.ffi.Pointer ttext_from_base_temp(jnr.ffi.Pointer txt, jnr.ffi.Pointer temp)
    • ttextinst_make

      public static jnr.ffi.Pointer ttextinst_make(jnr.ffi.Pointer txt, OffsetDateTime t)
    • ttextseq_from_base_tstzset

      public static jnr.ffi.Pointer ttextseq_from_base_tstzset(jnr.ffi.Pointer txt, jnr.ffi.Pointer s)
    • ttextseq_from_base_tstzspan

      public static jnr.ffi.Pointer ttextseq_from_base_tstzspan(jnr.ffi.Pointer txt, jnr.ffi.Pointer s)
    • ttextseqset_from_base_tstzspanset

      public static jnr.ffi.Pointer ttextseqset_from_base_tstzspanset(jnr.ffi.Pointer txt, jnr.ffi.Pointer ss)
    • tbool_to_tint

      public static jnr.ffi.Pointer tbool_to_tint(jnr.ffi.Pointer temp)
    • temporal_to_tstzspan

      public static jnr.ffi.Pointer temporal_to_tstzspan(jnr.ffi.Pointer temp)
    • tfloat_to_tint

      public static jnr.ffi.Pointer tfloat_to_tint(jnr.ffi.Pointer temp)
    • tfloat_to_tbigint

      public static jnr.ffi.Pointer tfloat_to_tbigint(jnr.ffi.Pointer temp)
    • tint_to_tfloat

      public static jnr.ffi.Pointer tint_to_tfloat(jnr.ffi.Pointer temp)
    • tint_to_tbigint

      public static jnr.ffi.Pointer tint_to_tbigint(jnr.ffi.Pointer temp)
    • tbigint_to_tint

      public static jnr.ffi.Pointer tbigint_to_tint(jnr.ffi.Pointer temp)
    • tbigint_to_tfloat

      public static jnr.ffi.Pointer tbigint_to_tfloat(jnr.ffi.Pointer temp)
    • tnumber_to_span

      public static jnr.ffi.Pointer tnumber_to_span(jnr.ffi.Pointer temp)
    • tnumber_to_tbox

      public static jnr.ffi.Pointer tnumber_to_tbox(jnr.ffi.Pointer temp)
    • tbool_end_value

      public static boolean tbool_end_value(jnr.ffi.Pointer temp)
    • tbool_start_value

      public static boolean tbool_start_value(jnr.ffi.Pointer temp)
    • tbool_value_at_timestamptz

      public static jnr.ffi.Pointer tbool_value_at_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean strict)
    • tbool_value_n

      public static jnr.ffi.Pointer tbool_value_n(jnr.ffi.Pointer temp, int n)
    • tbool_values

      public static jnr.ffi.Pointer tbool_values(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • temporal_duration

      public static jnr.ffi.Pointer temporal_duration(jnr.ffi.Pointer temp, boolean boundspan)
    • temporal_end_instant

      public static jnr.ffi.Pointer temporal_end_instant(jnr.ffi.Pointer temp)
    • temporal_end_sequence

      public static jnr.ffi.Pointer temporal_end_sequence(jnr.ffi.Pointer temp)
    • temporal_end_timestamptz

      public static OffsetDateTime temporal_end_timestamptz(jnr.ffi.Pointer temp)
    • temporal_hash

      public static int temporal_hash(jnr.ffi.Pointer temp)
    • temporal_hash_extended

      public static long temporal_hash_extended(jnr.ffi.Pointer temp, long seed)
    • temporal_instant_n

      public static jnr.ffi.Pointer temporal_instant_n(jnr.ffi.Pointer temp, int n)
    • temporal_instants

      public static jnr.ffi.Pointer temporal_instants(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • temporal_interp

      public static String temporal_interp(jnr.ffi.Pointer temp)
    • temporal_lower_inc

      public static boolean temporal_lower_inc(jnr.ffi.Pointer temp)
    • temporal_max_instant

      public static jnr.ffi.Pointer temporal_max_instant(jnr.ffi.Pointer temp)
    • temporal_min_instant

      public static jnr.ffi.Pointer temporal_min_instant(jnr.ffi.Pointer temp)
    • temporal_num_instants

      public static int temporal_num_instants(jnr.ffi.Pointer temp)
    • temporal_num_sequences

      public static int temporal_num_sequences(jnr.ffi.Pointer temp)
    • temporal_num_timestamps

      public static int temporal_num_timestamps(jnr.ffi.Pointer temp)
    • temporal_segm_duration

      public static jnr.ffi.Pointer temporal_segm_duration(jnr.ffi.Pointer temp, jnr.ffi.Pointer duration, boolean atleast, boolean strict)
    • temporal_segments

      public static jnr.ffi.Pointer temporal_segments(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • temporal_sequence_n

      public static jnr.ffi.Pointer temporal_sequence_n(jnr.ffi.Pointer temp, int i)
    • temporal_sequences

      public static jnr.ffi.Pointer temporal_sequences(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • temporal_start_instant

      public static jnr.ffi.Pointer temporal_start_instant(jnr.ffi.Pointer temp)
    • temporal_start_sequence

      public static jnr.ffi.Pointer temporal_start_sequence(jnr.ffi.Pointer temp)
    • temporal_start_timestamptz

      public static OffsetDateTime temporal_start_timestamptz(jnr.ffi.Pointer temp)
    • temporal_stops

      public static jnr.ffi.Pointer temporal_stops(jnr.ffi.Pointer temp, double maxdist, jnr.ffi.Pointer minduration)
    • temporal_subtype

      public static String temporal_subtype(jnr.ffi.Pointer temp)
    • temporal_basetype_name

      public static String temporal_basetype_name(jnr.ffi.Pointer temp)
    • temporal_time

      public static jnr.ffi.Pointer temporal_time(jnr.ffi.Pointer temp)
    • temporal_timestamps

      public static jnr.ffi.Pointer temporal_timestamps(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • temporal_timestamptz_n

      public static jnr.ffi.Pointer temporal_timestamptz_n(jnr.ffi.Pointer temp, int n)
    • temporal_upper_inc

      public static boolean temporal_upper_inc(jnr.ffi.Pointer temp)
    • tfloat_end_value

      public static double tfloat_end_value(jnr.ffi.Pointer temp)
    • tfloat_min_value

      public static double tfloat_min_value(jnr.ffi.Pointer temp)
    • tfloat_max_value

      public static double tfloat_max_value(jnr.ffi.Pointer temp)
    • tfloat_start_value

      public static double tfloat_start_value(jnr.ffi.Pointer temp)
    • tfloat_value_at_timestamptz

      public static jnr.ffi.Pointer tfloat_value_at_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean strict)
    • tfloat_value_n

      public static jnr.ffi.Pointer tfloat_value_n(jnr.ffi.Pointer temp, int n)
    • tfloat_values

      public static jnr.ffi.Pointer tfloat_values(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • tint_end_value

      public static int tint_end_value(jnr.ffi.Pointer temp)
    • tbigint_end_value

      public static long tbigint_end_value(jnr.ffi.Pointer temp)
    • tint_max_value

      public static int tint_max_value(jnr.ffi.Pointer temp)
    • tbigint_max_value

      public static long tbigint_max_value(jnr.ffi.Pointer temp)
    • tint_min_value

      public static int tint_min_value(jnr.ffi.Pointer temp)
    • tbigint_min_value

      public static long tbigint_min_value(jnr.ffi.Pointer temp)
    • tint_start_value

      public static int tint_start_value(jnr.ffi.Pointer temp)
    • tbigint_start_value

      public static long tbigint_start_value(jnr.ffi.Pointer temp)
    • tbigint_value_at_timestamptz

      public static jnr.ffi.Pointer tbigint_value_at_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean strict)
    • tint_value_at_timestamptz

      public static jnr.ffi.Pointer tint_value_at_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean strict)
    • tint_value_n

      public static jnr.ffi.Pointer tint_value_n(jnr.ffi.Pointer temp, int n)
    • tbigint_value_n

      public static jnr.ffi.Pointer tbigint_value_n(jnr.ffi.Pointer temp, long n)
    • tint_values

      public static jnr.ffi.Pointer tint_values(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • tbigint_values

      public static jnr.ffi.Pointer tbigint_values(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • tnumber_avg_value

      public static double tnumber_avg_value(jnr.ffi.Pointer temp)
    • tnumber_integral

      public static double tnumber_integral(jnr.ffi.Pointer temp)
    • tnumber_twavg

      public static double tnumber_twavg(jnr.ffi.Pointer temp)
    • tnumber_valuespans

      public static jnr.ffi.Pointer tnumber_valuespans(jnr.ffi.Pointer temp)
    • ttext_end_value

      public static jnr.ffi.Pointer ttext_end_value(jnr.ffi.Pointer temp)
    • ttext_max_value

      public static jnr.ffi.Pointer ttext_max_value(jnr.ffi.Pointer temp)
    • ttext_min_value

      public static jnr.ffi.Pointer ttext_min_value(jnr.ffi.Pointer temp)
    • ttext_start_value

      public static jnr.ffi.Pointer ttext_start_value(jnr.ffi.Pointer temp)
    • ttext_value_at_timestamptz

      public static jnr.ffi.Pointer ttext_value_at_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean strict)
    • ttext_value_n

      public static jnr.ffi.Pointer ttext_value_n(jnr.ffi.Pointer temp, int n)
    • ttext_values

      public static jnr.ffi.Pointer ttext_values(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • float_degrees

      public static double float_degrees(double value, boolean normalize)
    • temparr_round

      public static jnr.ffi.Pointer temparr_round(jnr.ffi.Pointer temp, int count, int maxdd)
    • temporal_round

      public static jnr.ffi.Pointer temporal_round(jnr.ffi.Pointer temp, int maxdd)
    • temporal_scale_time

      public static jnr.ffi.Pointer temporal_scale_time(jnr.ffi.Pointer temp, jnr.ffi.Pointer duration)
    • temporal_set_interp

      public static jnr.ffi.Pointer temporal_set_interp(jnr.ffi.Pointer temp, int interp)
    • temporal_shift_scale_time

      public static jnr.ffi.Pointer temporal_shift_scale_time(jnr.ffi.Pointer temp, jnr.ffi.Pointer shift, jnr.ffi.Pointer duration)
    • temporal_shift_time

      public static jnr.ffi.Pointer temporal_shift_time(jnr.ffi.Pointer temp, jnr.ffi.Pointer shift)
    • temporal_as_tinstant

      public static jnr.ffi.Pointer temporal_as_tinstant(jnr.ffi.Pointer temp)
    • temporal_as_tsequence

      public static jnr.ffi.Pointer temporal_as_tsequence(jnr.ffi.Pointer temp, int interp)
    • temporal_as_tsequenceset

      public static jnr.ffi.Pointer temporal_as_tsequenceset(jnr.ffi.Pointer temp, int interp)
    • tfloat_ceil

      public static jnr.ffi.Pointer tfloat_ceil(jnr.ffi.Pointer temp)
    • tfloat_degrees

      public static jnr.ffi.Pointer tfloat_degrees(jnr.ffi.Pointer temp, boolean normalize)
    • tfloat_floor

      public static jnr.ffi.Pointer tfloat_floor(jnr.ffi.Pointer temp)
    • tfloat_radians

      public static jnr.ffi.Pointer tfloat_radians(jnr.ffi.Pointer temp)
    • tfloat_scale_value

      public static jnr.ffi.Pointer tfloat_scale_value(jnr.ffi.Pointer temp, double width)
    • tfloat_shift_scale_value

      public static jnr.ffi.Pointer tfloat_shift_scale_value(jnr.ffi.Pointer temp, double shift, double width)
    • tfloat_shift_value

      public static jnr.ffi.Pointer tfloat_shift_value(jnr.ffi.Pointer temp, double shift)
    • tint_scale_value

      public static jnr.ffi.Pointer tint_scale_value(jnr.ffi.Pointer temp, int width)
    • tbigint_scale_value

      public static jnr.ffi.Pointer tbigint_scale_value(jnr.ffi.Pointer temp, long width)
    • tint_shift_scale_value

      public static jnr.ffi.Pointer tint_shift_scale_value(jnr.ffi.Pointer temp, int shift, int width)
    • tbigint_shift_scale_value

      public static jnr.ffi.Pointer tbigint_shift_scale_value(jnr.ffi.Pointer temp, long shift, long width)
    • tint_shift_value

      public static jnr.ffi.Pointer tint_shift_value(jnr.ffi.Pointer temp, int shift)
    • tbigint_shift_value

      public static jnr.ffi.Pointer tbigint_shift_value(jnr.ffi.Pointer temp, long shift)
    • temporal_append_tinstant

      public static jnr.ffi.Pointer temporal_append_tinstant(jnr.ffi.Pointer temp, jnr.ffi.Pointer inst, int interp, double maxdist, jnr.ffi.Pointer maxt, boolean expand)
    • temporal_append_tsequence

      public static jnr.ffi.Pointer temporal_append_tsequence(jnr.ffi.Pointer temp, jnr.ffi.Pointer seq, boolean expand)
    • temporal_delete_timestamptz

      public static jnr.ffi.Pointer temporal_delete_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean connect)
    • temporal_delete_tstzset

      public static jnr.ffi.Pointer temporal_delete_tstzset(jnr.ffi.Pointer temp, jnr.ffi.Pointer s, boolean connect)
    • temporal_delete_tstzspan

      public static jnr.ffi.Pointer temporal_delete_tstzspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s, boolean connect)
    • temporal_delete_tstzspanset

      public static jnr.ffi.Pointer temporal_delete_tstzspanset(jnr.ffi.Pointer temp, jnr.ffi.Pointer ss, boolean connect)
    • temporal_insert

      public static jnr.ffi.Pointer temporal_insert(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, boolean connect)
    • temporal_merge

      public static jnr.ffi.Pointer temporal_merge(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • temporal_merge_array

      public static jnr.ffi.Pointer temporal_merge_array(jnr.ffi.Pointer temparr, int count)
    • temporal_update

      public static jnr.ffi.Pointer temporal_update(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, boolean connect)
    • tbool_at_value

      public static jnr.ffi.Pointer tbool_at_value(jnr.ffi.Pointer temp, boolean b)
    • tbool_minus_value

      public static jnr.ffi.Pointer tbool_minus_value(jnr.ffi.Pointer temp, boolean b)
    • temporal_after_timestamptz

      public static jnr.ffi.Pointer temporal_after_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean strict)
    • temporal_at_max

      public static jnr.ffi.Pointer temporal_at_max(jnr.ffi.Pointer temp)
    • temporal_at_min

      public static jnr.ffi.Pointer temporal_at_min(jnr.ffi.Pointer temp)
    • temporal_at_timestamptz

      public static jnr.ffi.Pointer temporal_at_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t)
    • temporal_at_tstzset

      public static jnr.ffi.Pointer temporal_at_tstzset(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • temporal_at_tstzspan

      public static jnr.ffi.Pointer temporal_at_tstzspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • temporal_at_tstzspanset

      public static jnr.ffi.Pointer temporal_at_tstzspanset(jnr.ffi.Pointer temp, jnr.ffi.Pointer ss)
    • temporal_at_values

      public static jnr.ffi.Pointer temporal_at_values(jnr.ffi.Pointer temp, jnr.ffi.Pointer set)
    • temporal_before_timestamptz

      public static jnr.ffi.Pointer temporal_before_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean strict)
    • temporal_minus_max

      public static jnr.ffi.Pointer temporal_minus_max(jnr.ffi.Pointer temp)
    • temporal_minus_min

      public static jnr.ffi.Pointer temporal_minus_min(jnr.ffi.Pointer temp)
    • temporal_minus_timestamptz

      public static jnr.ffi.Pointer temporal_minus_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t)
    • temporal_minus_tstzset

      public static jnr.ffi.Pointer temporal_minus_tstzset(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • temporal_minus_tstzspan

      public static jnr.ffi.Pointer temporal_minus_tstzspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • temporal_minus_tstzspanset

      public static jnr.ffi.Pointer temporal_minus_tstzspanset(jnr.ffi.Pointer temp, jnr.ffi.Pointer ss)
    • temporal_minus_values

      public static jnr.ffi.Pointer temporal_minus_values(jnr.ffi.Pointer temp, jnr.ffi.Pointer set)
    • tfloat_at_value

      public static jnr.ffi.Pointer tfloat_at_value(jnr.ffi.Pointer temp, double d)
    • tfloat_minus_value

      public static jnr.ffi.Pointer tfloat_minus_value(jnr.ffi.Pointer temp, double d)
    • tint_at_value

      public static jnr.ffi.Pointer tint_at_value(jnr.ffi.Pointer temp, int i)
    • tint_minus_value

      public static jnr.ffi.Pointer tint_minus_value(jnr.ffi.Pointer temp, int i)
    • tnumber_at_span

      public static jnr.ffi.Pointer tnumber_at_span(jnr.ffi.Pointer temp, jnr.ffi.Pointer span)
    • tnumber_at_spanset

      public static jnr.ffi.Pointer tnumber_at_spanset(jnr.ffi.Pointer temp, jnr.ffi.Pointer ss)
    • tnumber_at_tbox

      public static jnr.ffi.Pointer tnumber_at_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • tnumber_minus_span

      public static jnr.ffi.Pointer tnumber_minus_span(jnr.ffi.Pointer temp, jnr.ffi.Pointer span)
    • tnumber_minus_spanset

      public static jnr.ffi.Pointer tnumber_minus_spanset(jnr.ffi.Pointer temp, jnr.ffi.Pointer ss)
    • tnumber_minus_tbox

      public static jnr.ffi.Pointer tnumber_minus_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • ttext_at_value

      public static jnr.ffi.Pointer ttext_at_value(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • ttext_minus_value

      public static jnr.ffi.Pointer ttext_minus_value(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • temporal_cmp

      public static int temporal_cmp(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • temporal_eq

      public static boolean temporal_eq(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • temporal_ge

      public static boolean temporal_ge(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • temporal_gt

      public static boolean temporal_gt(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • temporal_le

      public static boolean temporal_le(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • temporal_lt

      public static boolean temporal_lt(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • temporal_ne

      public static boolean temporal_ne(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • always_eq_bool_tbool

      public static int always_eq_bool_tbool(boolean b, jnr.ffi.Pointer temp)
    • always_eq_float_tfloat

      public static int always_eq_float_tfloat(double d, jnr.ffi.Pointer temp)
    • always_eq_int_tint

      public static int always_eq_int_tint(int i, jnr.ffi.Pointer temp)
    • always_eq_tbool_bool

      public static int always_eq_tbool_bool(jnr.ffi.Pointer temp, boolean b)
    • always_eq_temporal_temporal

      public static int always_eq_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • always_eq_text_ttext

      public static int always_eq_text_ttext(jnr.ffi.Pointer txt, jnr.ffi.Pointer temp)
    • always_eq_tfloat_float

      public static int always_eq_tfloat_float(jnr.ffi.Pointer temp, double d)
    • always_eq_tint_int

      public static int always_eq_tint_int(jnr.ffi.Pointer temp, int i)
    • always_eq_bigint_tbigint

      public static int always_eq_bigint_tbigint(long i, jnr.ffi.Pointer temp)
    • always_eq_tbigint_bigint

      public static int always_eq_tbigint_bigint(jnr.ffi.Pointer temp, long i)
    • always_eq_ttext_text

      public static int always_eq_ttext_text(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • always_ge_float_tfloat

      public static int always_ge_float_tfloat(double d, jnr.ffi.Pointer temp)
    • always_ge_int_tint

      public static int always_ge_int_tint(int i, jnr.ffi.Pointer temp)
    • always_ge_temporal_temporal

      public static int always_ge_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • always_ge_text_ttext

      public static int always_ge_text_ttext(jnr.ffi.Pointer txt, jnr.ffi.Pointer temp)
    • always_ge_tfloat_float

      public static int always_ge_tfloat_float(jnr.ffi.Pointer temp, double d)
    • always_ge_tint_int

      public static int always_ge_tint_int(jnr.ffi.Pointer temp, int i)
    • always_ge_bigint_tbigint

      public static int always_ge_bigint_tbigint(long i, jnr.ffi.Pointer temp)
    • always_ge_tbigint_bigint

      public static int always_ge_tbigint_bigint(jnr.ffi.Pointer temp, long i)
    • always_ge_ttext_text

      public static int always_ge_ttext_text(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • always_gt_float_tfloat

      public static int always_gt_float_tfloat(double d, jnr.ffi.Pointer temp)
    • always_gt_int_tint

      public static int always_gt_int_tint(int i, jnr.ffi.Pointer temp)
    • always_gt_temporal_temporal

      public static int always_gt_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • always_gt_text_ttext

      public static int always_gt_text_ttext(jnr.ffi.Pointer txt, jnr.ffi.Pointer temp)
    • always_gt_tfloat_float

      public static int always_gt_tfloat_float(jnr.ffi.Pointer temp, double d)
    • always_gt_tint_int

      public static int always_gt_tint_int(jnr.ffi.Pointer temp, int i)
    • always_gt_bigint_tbigint

      public static int always_gt_bigint_tbigint(long i, jnr.ffi.Pointer temp)
    • always_gt_tbigint_bigint

      public static int always_gt_tbigint_bigint(jnr.ffi.Pointer temp, long i)
    • always_gt_ttext_text

      public static int always_gt_ttext_text(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • always_le_float_tfloat

      public static int always_le_float_tfloat(double d, jnr.ffi.Pointer temp)
    • always_le_int_tint

      public static int always_le_int_tint(int i, jnr.ffi.Pointer temp)
    • always_le_temporal_temporal

      public static int always_le_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • always_le_text_ttext

      public static int always_le_text_ttext(jnr.ffi.Pointer txt, jnr.ffi.Pointer temp)
    • always_le_tfloat_float

      public static int always_le_tfloat_float(jnr.ffi.Pointer temp, double d)
    • always_le_tint_int

      public static int always_le_tint_int(jnr.ffi.Pointer temp, int i)
    • always_le_bigint_tbigint

      public static int always_le_bigint_tbigint(long i, jnr.ffi.Pointer temp)
    • always_le_tbigint_bigint

      public static int always_le_tbigint_bigint(jnr.ffi.Pointer temp, long i)
    • always_le_ttext_text

      public static int always_le_ttext_text(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • always_lt_float_tfloat

      public static int always_lt_float_tfloat(double d, jnr.ffi.Pointer temp)
    • always_lt_int_tint

      public static int always_lt_int_tint(int i, jnr.ffi.Pointer temp)
    • always_lt_temporal_temporal

      public static int always_lt_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • always_lt_text_ttext

      public static int always_lt_text_ttext(jnr.ffi.Pointer txt, jnr.ffi.Pointer temp)
    • always_lt_tfloat_float

      public static int always_lt_tfloat_float(jnr.ffi.Pointer temp, double d)
    • always_lt_tint_int

      public static int always_lt_tint_int(jnr.ffi.Pointer temp, int i)
    • always_lt_bigint_tbigint

      public static int always_lt_bigint_tbigint(long i, jnr.ffi.Pointer temp)
    • always_lt_tbigint_bigint

      public static int always_lt_tbigint_bigint(jnr.ffi.Pointer temp, long i)
    • always_lt_ttext_text

      public static int always_lt_ttext_text(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • always_ne_bool_tbool

      public static int always_ne_bool_tbool(boolean b, jnr.ffi.Pointer temp)
    • always_ne_float_tfloat

      public static int always_ne_float_tfloat(double d, jnr.ffi.Pointer temp)
    • always_ne_int_tint

      public static int always_ne_int_tint(int i, jnr.ffi.Pointer temp)
    • always_ne_tbool_bool

      public static int always_ne_tbool_bool(jnr.ffi.Pointer temp, boolean b)
    • always_ne_temporal_temporal

      public static int always_ne_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • always_ne_text_ttext

      public static int always_ne_text_ttext(jnr.ffi.Pointer txt, jnr.ffi.Pointer temp)
    • always_ne_tfloat_float

      public static int always_ne_tfloat_float(jnr.ffi.Pointer temp, double d)
    • always_ne_tint_int

      public static int always_ne_tint_int(jnr.ffi.Pointer temp, int i)
    • always_ne_bigint_tbigint

      public static int always_ne_bigint_tbigint(long i, jnr.ffi.Pointer temp)
    • always_ne_tbigint_bigint

      public static int always_ne_tbigint_bigint(jnr.ffi.Pointer temp, long i)
    • always_ne_ttext_text

      public static int always_ne_ttext_text(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • ever_eq_bool_tbool

      public static int ever_eq_bool_tbool(boolean b, jnr.ffi.Pointer temp)
    • ever_eq_float_tfloat

      public static int ever_eq_float_tfloat(double d, jnr.ffi.Pointer temp)
    • ever_eq_int_tint

      public static int ever_eq_int_tint(int i, jnr.ffi.Pointer temp)
    • ever_eq_tbool_bool

      public static int ever_eq_tbool_bool(jnr.ffi.Pointer temp, boolean b)
    • ever_eq_temporal_temporal

      public static int ever_eq_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ever_eq_text_ttext

      public static int ever_eq_text_ttext(jnr.ffi.Pointer txt, jnr.ffi.Pointer temp)
    • ever_eq_tfloat_float

      public static int ever_eq_tfloat_float(jnr.ffi.Pointer temp, double d)
    • ever_eq_tint_int

      public static int ever_eq_tint_int(jnr.ffi.Pointer temp, int i)
    • ever_eq_bigint_tbigint

      public static int ever_eq_bigint_tbigint(long i, jnr.ffi.Pointer temp)
    • ever_eq_tbigint_bigint

      public static int ever_eq_tbigint_bigint(jnr.ffi.Pointer temp, long i)
    • ever_eq_ttext_text

      public static int ever_eq_ttext_text(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • ever_ge_float_tfloat

      public static int ever_ge_float_tfloat(double d, jnr.ffi.Pointer temp)
    • ever_ge_int_tint

      public static int ever_ge_int_tint(int i, jnr.ffi.Pointer temp)
    • ever_ge_temporal_temporal

      public static int ever_ge_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ever_ge_text_ttext

      public static int ever_ge_text_ttext(jnr.ffi.Pointer txt, jnr.ffi.Pointer temp)
    • ever_ge_tfloat_float

      public static int ever_ge_tfloat_float(jnr.ffi.Pointer temp, double d)
    • ever_ge_tint_int

      public static int ever_ge_tint_int(jnr.ffi.Pointer temp, int i)
    • ever_ge_bigint_tbigint

      public static int ever_ge_bigint_tbigint(long i, jnr.ffi.Pointer temp)
    • ever_ge_tbigint_bigint

      public static int ever_ge_tbigint_bigint(jnr.ffi.Pointer temp, long i)
    • ever_ge_ttext_text

      public static int ever_ge_ttext_text(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • ever_gt_float_tfloat

      public static int ever_gt_float_tfloat(double d, jnr.ffi.Pointer temp)
    • ever_gt_int_tint

      public static int ever_gt_int_tint(int i, jnr.ffi.Pointer temp)
    • ever_gt_temporal_temporal

      public static int ever_gt_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ever_gt_text_ttext

      public static int ever_gt_text_ttext(jnr.ffi.Pointer txt, jnr.ffi.Pointer temp)
    • ever_gt_tfloat_float

      public static int ever_gt_tfloat_float(jnr.ffi.Pointer temp, double d)
    • ever_gt_tint_int

      public static int ever_gt_tint_int(jnr.ffi.Pointer temp, int i)
    • ever_gt_bigint_tbigint

      public static int ever_gt_bigint_tbigint(long i, jnr.ffi.Pointer temp)
    • ever_gt_tbigint_bigint

      public static int ever_gt_tbigint_bigint(jnr.ffi.Pointer temp, long i)
    • ever_gt_ttext_text

      public static int ever_gt_ttext_text(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • ever_le_float_tfloat

      public static int ever_le_float_tfloat(double d, jnr.ffi.Pointer temp)
    • ever_le_int_tint

      public static int ever_le_int_tint(int i, jnr.ffi.Pointer temp)
    • ever_le_temporal_temporal

      public static int ever_le_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ever_le_text_ttext

      public static int ever_le_text_ttext(jnr.ffi.Pointer txt, jnr.ffi.Pointer temp)
    • ever_le_tfloat_float

      public static int ever_le_tfloat_float(jnr.ffi.Pointer temp, double d)
    • ever_le_tint_int

      public static int ever_le_tint_int(jnr.ffi.Pointer temp, int i)
    • ever_le_bigint_tbigint

      public static int ever_le_bigint_tbigint(long i, jnr.ffi.Pointer temp)
    • ever_le_tbigint_bigint

      public static int ever_le_tbigint_bigint(jnr.ffi.Pointer temp, long i)
    • ever_le_ttext_text

      public static int ever_le_ttext_text(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • ever_lt_float_tfloat

      public static int ever_lt_float_tfloat(double d, jnr.ffi.Pointer temp)
    • ever_lt_int_tint

      public static int ever_lt_int_tint(int i, jnr.ffi.Pointer temp)
    • ever_lt_temporal_temporal

      public static int ever_lt_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ever_lt_text_ttext

      public static int ever_lt_text_ttext(jnr.ffi.Pointer txt, jnr.ffi.Pointer temp)
    • ever_lt_tfloat_float

      public static int ever_lt_tfloat_float(jnr.ffi.Pointer temp, double d)
    • ever_lt_tint_int

      public static int ever_lt_tint_int(jnr.ffi.Pointer temp, int i)
    • ever_lt_bigint_tbigint

      public static int ever_lt_bigint_tbigint(long i, jnr.ffi.Pointer temp)
    • ever_lt_tbigint_bigint

      public static int ever_lt_tbigint_bigint(jnr.ffi.Pointer temp, long i)
    • ever_lt_ttext_text

      public static int ever_lt_ttext_text(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • ever_ne_bool_tbool

      public static int ever_ne_bool_tbool(boolean b, jnr.ffi.Pointer temp)
    • ever_ne_float_tfloat

      public static int ever_ne_float_tfloat(double d, jnr.ffi.Pointer temp)
    • ever_ne_int_tint

      public static int ever_ne_int_tint(int i, jnr.ffi.Pointer temp)
    • ever_ne_tbool_bool

      public static int ever_ne_tbool_bool(jnr.ffi.Pointer temp, boolean b)
    • ever_ne_temporal_temporal

      public static int ever_ne_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ever_ne_text_ttext

      public static int ever_ne_text_ttext(jnr.ffi.Pointer txt, jnr.ffi.Pointer temp)
    • ever_ne_tfloat_float

      public static int ever_ne_tfloat_float(jnr.ffi.Pointer temp, double d)
    • ever_ne_tint_int

      public static int ever_ne_tint_int(jnr.ffi.Pointer temp, int i)
    • ever_ne_bigint_tbigint

      public static int ever_ne_bigint_tbigint(long i, jnr.ffi.Pointer temp)
    • ever_ne_tbigint_bigint

      public static int ever_ne_tbigint_bigint(jnr.ffi.Pointer temp, long i)
    • ever_ne_ttext_text

      public static int ever_ne_ttext_text(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • teq_bool_tbool

      public static jnr.ffi.Pointer teq_bool_tbool(boolean b, jnr.ffi.Pointer temp)
    • teq_float_tfloat

      public static jnr.ffi.Pointer teq_float_tfloat(double d, jnr.ffi.Pointer temp)
    • teq_int_tint

      public static jnr.ffi.Pointer teq_int_tint(int i, jnr.ffi.Pointer temp)
    • teq_tbool_bool

      public static jnr.ffi.Pointer teq_tbool_bool(jnr.ffi.Pointer temp, boolean b)
    • teq_temporal_temporal

      public static jnr.ffi.Pointer teq_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • teq_text_ttext

      public static jnr.ffi.Pointer teq_text_ttext(jnr.ffi.Pointer txt, jnr.ffi.Pointer temp)
    • teq_tfloat_float

      public static jnr.ffi.Pointer teq_tfloat_float(jnr.ffi.Pointer temp, double d)
    • teq_tint_int

      public static jnr.ffi.Pointer teq_tint_int(jnr.ffi.Pointer temp, int i)
    • teq_ttext_text

      public static jnr.ffi.Pointer teq_ttext_text(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • tge_float_tfloat

      public static jnr.ffi.Pointer tge_float_tfloat(double d, jnr.ffi.Pointer temp)
    • tge_int_tint

      public static jnr.ffi.Pointer tge_int_tint(int i, jnr.ffi.Pointer temp)
    • tge_temporal_temporal

      public static jnr.ffi.Pointer tge_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tge_text_ttext

      public static jnr.ffi.Pointer tge_text_ttext(jnr.ffi.Pointer txt, jnr.ffi.Pointer temp)
    • tge_tfloat_float

      public static jnr.ffi.Pointer tge_tfloat_float(jnr.ffi.Pointer temp, double d)
    • tge_tint_int

      public static jnr.ffi.Pointer tge_tint_int(jnr.ffi.Pointer temp, int i)
    • tge_ttext_text

      public static jnr.ffi.Pointer tge_ttext_text(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • tgt_float_tfloat

      public static jnr.ffi.Pointer tgt_float_tfloat(double d, jnr.ffi.Pointer temp)
    • tgt_int_tint

      public static jnr.ffi.Pointer tgt_int_tint(int i, jnr.ffi.Pointer temp)
    • tgt_temporal_temporal

      public static jnr.ffi.Pointer tgt_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tgt_text_ttext

      public static jnr.ffi.Pointer tgt_text_ttext(jnr.ffi.Pointer txt, jnr.ffi.Pointer temp)
    • tgt_tfloat_float

      public static jnr.ffi.Pointer tgt_tfloat_float(jnr.ffi.Pointer temp, double d)
    • tgt_tint_int

      public static jnr.ffi.Pointer tgt_tint_int(jnr.ffi.Pointer temp, int i)
    • tgt_ttext_text

      public static jnr.ffi.Pointer tgt_ttext_text(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • tle_float_tfloat

      public static jnr.ffi.Pointer tle_float_tfloat(double d, jnr.ffi.Pointer temp)
    • tle_int_tint

      public static jnr.ffi.Pointer tle_int_tint(int i, jnr.ffi.Pointer temp)
    • tle_temporal_temporal

      public static jnr.ffi.Pointer tle_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tle_text_ttext

      public static jnr.ffi.Pointer tle_text_ttext(jnr.ffi.Pointer txt, jnr.ffi.Pointer temp)
    • tle_tfloat_float

      public static jnr.ffi.Pointer tle_tfloat_float(jnr.ffi.Pointer temp, double d)
    • tle_tint_int

      public static jnr.ffi.Pointer tle_tint_int(jnr.ffi.Pointer temp, int i)
    • tle_ttext_text

      public static jnr.ffi.Pointer tle_ttext_text(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • tlt_float_tfloat

      public static jnr.ffi.Pointer tlt_float_tfloat(double d, jnr.ffi.Pointer temp)
    • tlt_int_tint

      public static jnr.ffi.Pointer tlt_int_tint(int i, jnr.ffi.Pointer temp)
    • tlt_temporal_temporal

      public static jnr.ffi.Pointer tlt_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tlt_text_ttext

      public static jnr.ffi.Pointer tlt_text_ttext(jnr.ffi.Pointer txt, jnr.ffi.Pointer temp)
    • tlt_tfloat_float

      public static jnr.ffi.Pointer tlt_tfloat_float(jnr.ffi.Pointer temp, double d)
    • tlt_tint_int

      public static jnr.ffi.Pointer tlt_tint_int(jnr.ffi.Pointer temp, int i)
    • tlt_ttext_text

      public static jnr.ffi.Pointer tlt_ttext_text(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • tne_bool_tbool

      public static jnr.ffi.Pointer tne_bool_tbool(boolean b, jnr.ffi.Pointer temp)
    • tne_float_tfloat

      public static jnr.ffi.Pointer tne_float_tfloat(double d, jnr.ffi.Pointer temp)
    • tne_int_tint

      public static jnr.ffi.Pointer tne_int_tint(int i, jnr.ffi.Pointer temp)
    • tne_tbool_bool

      public static jnr.ffi.Pointer tne_tbool_bool(jnr.ffi.Pointer temp, boolean b)
    • tne_temporal_temporal

      public static jnr.ffi.Pointer tne_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tne_text_ttext

      public static jnr.ffi.Pointer tne_text_ttext(jnr.ffi.Pointer txt, jnr.ffi.Pointer temp)
    • tne_tfloat_float

      public static jnr.ffi.Pointer tne_tfloat_float(jnr.ffi.Pointer temp, double d)
    • tne_tint_int

      public static jnr.ffi.Pointer tne_tint_int(jnr.ffi.Pointer temp, int i)
    • tne_ttext_text

      public static jnr.ffi.Pointer tne_ttext_text(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • temporal_spans

      public static jnr.ffi.Pointer temporal_spans(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • temporal_split_each_n_spans

      public static jnr.ffi.Pointer temporal_split_each_n_spans(jnr.ffi.Pointer temp, int elem_count, jnr.ffi.Pointer count)
    • temporal_split_n_spans

      public static jnr.ffi.Pointer temporal_split_n_spans(jnr.ffi.Pointer temp, int span_count, jnr.ffi.Pointer count)
    • tnumber_split_each_n_tboxes

      public static jnr.ffi.Pointer tnumber_split_each_n_tboxes(jnr.ffi.Pointer temp, int elem_count, jnr.ffi.Pointer count)
    • tnumber_split_n_tboxes

      public static jnr.ffi.Pointer tnumber_split_n_tboxes(jnr.ffi.Pointer temp, int box_count, jnr.ffi.Pointer count)
    • tnumber_tboxes

      public static jnr.ffi.Pointer tnumber_tboxes(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • adjacent_numspan_tnumber

      public static boolean adjacent_numspan_tnumber(jnr.ffi.Pointer s, jnr.ffi.Pointer temp)
    • adjacent_tbox_tnumber

      public static boolean adjacent_tbox_tnumber(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • adjacent_temporal_temporal

      public static boolean adjacent_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • adjacent_temporal_tstzspan

      public static boolean adjacent_temporal_tstzspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • adjacent_tnumber_numspan

      public static boolean adjacent_tnumber_numspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • adjacent_tnumber_tbox

      public static boolean adjacent_tnumber_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • adjacent_tnumber_tnumber

      public static boolean adjacent_tnumber_tnumber(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • adjacent_tstzspan_temporal

      public static boolean adjacent_tstzspan_temporal(jnr.ffi.Pointer s, jnr.ffi.Pointer temp)
    • contained_numspan_tnumber

      public static boolean contained_numspan_tnumber(jnr.ffi.Pointer s, jnr.ffi.Pointer temp)
    • contained_tbox_tnumber

      public static boolean contained_tbox_tnumber(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • contained_temporal_temporal

      public static boolean contained_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • contained_temporal_tstzspan

      public static boolean contained_temporal_tstzspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • contained_tnumber_numspan

      public static boolean contained_tnumber_numspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • contained_tnumber_tbox

      public static boolean contained_tnumber_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • contained_tnumber_tnumber

      public static boolean contained_tnumber_tnumber(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • contained_tstzspan_temporal

      public static boolean contained_tstzspan_temporal(jnr.ffi.Pointer s, jnr.ffi.Pointer temp)
    • contains_numspan_tnumber

      public static boolean contains_numspan_tnumber(jnr.ffi.Pointer s, jnr.ffi.Pointer temp)
    • contains_tbox_tnumber

      public static boolean contains_tbox_tnumber(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • contains_temporal_tstzspan

      public static boolean contains_temporal_tstzspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • contains_temporal_temporal

      public static boolean contains_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • contains_tnumber_numspan

      public static boolean contains_tnumber_numspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • contains_tnumber_tbox

      public static boolean contains_tnumber_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • contains_tnumber_tnumber

      public static boolean contains_tnumber_tnumber(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • contains_tstzspan_temporal

      public static boolean contains_tstzspan_temporal(jnr.ffi.Pointer s, jnr.ffi.Pointer temp)
    • overlaps_numspan_tnumber

      public static boolean overlaps_numspan_tnumber(jnr.ffi.Pointer s, jnr.ffi.Pointer temp)
    • overlaps_tbox_tnumber

      public static boolean overlaps_tbox_tnumber(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • overlaps_temporal_temporal

      public static boolean overlaps_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • overlaps_temporal_tstzspan

      public static boolean overlaps_temporal_tstzspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • overlaps_tnumber_numspan

      public static boolean overlaps_tnumber_numspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • overlaps_tnumber_tbox

      public static boolean overlaps_tnumber_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • overlaps_tnumber_tnumber

      public static boolean overlaps_tnumber_tnumber(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • overlaps_tstzspan_temporal

      public static boolean overlaps_tstzspan_temporal(jnr.ffi.Pointer s, jnr.ffi.Pointer temp)
    • same_numspan_tnumber

      public static boolean same_numspan_tnumber(jnr.ffi.Pointer s, jnr.ffi.Pointer temp)
    • same_tbox_tnumber

      public static boolean same_tbox_tnumber(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • same_temporal_temporal

      public static boolean same_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • same_temporal_tstzspan

      public static boolean same_temporal_tstzspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • same_tnumber_numspan

      public static boolean same_tnumber_numspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • same_tnumber_tbox

      public static boolean same_tnumber_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • same_tnumber_tnumber

      public static boolean same_tnumber_tnumber(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • same_tstzspan_temporal

      public static boolean same_tstzspan_temporal(jnr.ffi.Pointer s, jnr.ffi.Pointer temp)
    • after_tbox_tnumber

      public static boolean after_tbox_tnumber(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • after_temporal_tstzspan

      public static boolean after_temporal_tstzspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • after_temporal_temporal

      public static boolean after_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • after_tnumber_tbox

      public static boolean after_tnumber_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • after_tnumber_tnumber

      public static boolean after_tnumber_tnumber(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • after_tstzspan_temporal

      public static boolean after_tstzspan_temporal(jnr.ffi.Pointer s, jnr.ffi.Pointer temp)
    • before_tbox_tnumber

      public static boolean before_tbox_tnumber(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • before_temporal_tstzspan

      public static boolean before_temporal_tstzspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • before_temporal_temporal

      public static boolean before_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • before_tnumber_tbox

      public static boolean before_tnumber_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • before_tnumber_tnumber

      public static boolean before_tnumber_tnumber(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • before_tstzspan_temporal

      public static boolean before_tstzspan_temporal(jnr.ffi.Pointer s, jnr.ffi.Pointer temp)
    • left_tbox_tnumber

      public static boolean left_tbox_tnumber(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • left_numspan_tnumber

      public static boolean left_numspan_tnumber(jnr.ffi.Pointer s, jnr.ffi.Pointer temp)
    • left_tnumber_numspan

      public static boolean left_tnumber_numspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • left_tnumber_tbox

      public static boolean left_tnumber_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • left_tnumber_tnumber

      public static boolean left_tnumber_tnumber(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • overafter_tbox_tnumber

      public static boolean overafter_tbox_tnumber(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • overafter_temporal_tstzspan

      public static boolean overafter_temporal_tstzspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • overafter_temporal_temporal

      public static boolean overafter_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • overafter_tnumber_tbox

      public static boolean overafter_tnumber_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • overafter_tnumber_tnumber

      public static boolean overafter_tnumber_tnumber(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • overafter_tstzspan_temporal

      public static boolean overafter_tstzspan_temporal(jnr.ffi.Pointer s, jnr.ffi.Pointer temp)
    • overbefore_tbox_tnumber

      public static boolean overbefore_tbox_tnumber(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • overbefore_temporal_tstzspan

      public static boolean overbefore_temporal_tstzspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • overbefore_temporal_temporal

      public static boolean overbefore_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • overbefore_tnumber_tbox

      public static boolean overbefore_tnumber_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • overbefore_tnumber_tnumber

      public static boolean overbefore_tnumber_tnumber(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • overbefore_tstzspan_temporal

      public static boolean overbefore_tstzspan_temporal(jnr.ffi.Pointer s, jnr.ffi.Pointer temp)
    • overleft_numspan_tnumber

      public static boolean overleft_numspan_tnumber(jnr.ffi.Pointer s, jnr.ffi.Pointer temp)
    • overleft_tbox_tnumber

      public static boolean overleft_tbox_tnumber(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • overleft_tnumber_numspan

      public static boolean overleft_tnumber_numspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • overleft_tnumber_tbox

      public static boolean overleft_tnumber_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • overleft_tnumber_tnumber

      public static boolean overleft_tnumber_tnumber(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • overright_numspan_tnumber

      public static boolean overright_numspan_tnumber(jnr.ffi.Pointer s, jnr.ffi.Pointer temp)
    • overright_tbox_tnumber

      public static boolean overright_tbox_tnumber(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • overright_tnumber_numspan

      public static boolean overright_tnumber_numspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • overright_tnumber_tbox

      public static boolean overright_tnumber_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • overright_tnumber_tnumber

      public static boolean overright_tnumber_tnumber(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • right_numspan_tnumber

      public static boolean right_numspan_tnumber(jnr.ffi.Pointer s, jnr.ffi.Pointer temp)
    • right_tbox_tnumber

      public static boolean right_tbox_tnumber(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • right_tnumber_numspan

      public static boolean right_tnumber_numspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • right_tnumber_tbox

      public static boolean right_tnumber_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • right_tnumber_tnumber

      public static boolean right_tnumber_tnumber(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tand_bool_tbool

      public static jnr.ffi.Pointer tand_bool_tbool(boolean b, jnr.ffi.Pointer temp)
    • tand_tbool_bool

      public static jnr.ffi.Pointer tand_tbool_bool(jnr.ffi.Pointer temp, boolean b)
    • tand_tbool_tbool

      public static jnr.ffi.Pointer tand_tbool_tbool(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tbool_when_true

      public static jnr.ffi.Pointer tbool_when_true(jnr.ffi.Pointer temp)
    • tnot_tbool

      public static jnr.ffi.Pointer tnot_tbool(jnr.ffi.Pointer temp)
    • tor_bool_tbool

      public static jnr.ffi.Pointer tor_bool_tbool(boolean b, jnr.ffi.Pointer temp)
    • tor_tbool_bool

      public static jnr.ffi.Pointer tor_tbool_bool(jnr.ffi.Pointer temp, boolean b)
    • tor_tbool_tbool

      public static jnr.ffi.Pointer tor_tbool_tbool(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • add_float_tfloat

      public static jnr.ffi.Pointer add_float_tfloat(double d, jnr.ffi.Pointer tnumber)
    • add_int_tint

      public static jnr.ffi.Pointer add_int_tint(int i, jnr.ffi.Pointer tnumber)
    • add_tfloat_float

      public static jnr.ffi.Pointer add_tfloat_float(jnr.ffi.Pointer tnumber, double d)
    • add_tint_int

      public static jnr.ffi.Pointer add_tint_int(jnr.ffi.Pointer tnumber, int i)
    • add_bigint_tbigint

      public static jnr.ffi.Pointer add_bigint_tbigint(long i, jnr.ffi.Pointer tnumber)
    • add_tbigint_bigint

      public static jnr.ffi.Pointer add_tbigint_bigint(jnr.ffi.Pointer tnumber, long i)
    • add_tnumber_tnumber

      public static jnr.ffi.Pointer add_tnumber_tnumber(jnr.ffi.Pointer tnumber1, jnr.ffi.Pointer tnumber2)
    • div_float_tfloat

      public static jnr.ffi.Pointer div_float_tfloat(double d, jnr.ffi.Pointer tnumber)
    • div_int_tint

      public static jnr.ffi.Pointer div_int_tint(int i, jnr.ffi.Pointer tnumber)
    • div_tfloat_float

      public static jnr.ffi.Pointer div_tfloat_float(jnr.ffi.Pointer tnumber, double d)
    • div_tint_int

      public static jnr.ffi.Pointer div_tint_int(jnr.ffi.Pointer tnumber, int i)
    • div_bigint_tbigint

      public static jnr.ffi.Pointer div_bigint_tbigint(long i, jnr.ffi.Pointer tnumber)
    • div_tbigint_bigint

      public static jnr.ffi.Pointer div_tbigint_bigint(jnr.ffi.Pointer tnumber, long i)
    • div_tnumber_tnumber

      public static jnr.ffi.Pointer div_tnumber_tnumber(jnr.ffi.Pointer tnumber1, jnr.ffi.Pointer tnumber2)
    • mul_float_tfloat

      public static jnr.ffi.Pointer mul_float_tfloat(double d, jnr.ffi.Pointer tnumber)
    • mul_int_tint

      public static jnr.ffi.Pointer mul_int_tint(int i, jnr.ffi.Pointer tnumber)
    • mul_tfloat_float

      public static jnr.ffi.Pointer mul_tfloat_float(jnr.ffi.Pointer tnumber, double d)
    • mul_tint_int

      public static jnr.ffi.Pointer mul_tint_int(jnr.ffi.Pointer tnumber, int i)
    • mul_bigint_tbigint

      public static jnr.ffi.Pointer mul_bigint_tbigint(long i, jnr.ffi.Pointer tnumber)
    • mul_tbigint_bigint

      public static jnr.ffi.Pointer mul_tbigint_bigint(jnr.ffi.Pointer tnumber, long i)
    • mul_tnumber_tnumber

      public static jnr.ffi.Pointer mul_tnumber_tnumber(jnr.ffi.Pointer tnumber1, jnr.ffi.Pointer tnumber2)
    • sub_float_tfloat

      public static jnr.ffi.Pointer sub_float_tfloat(double d, jnr.ffi.Pointer tnumber)
    • sub_int_tint

      public static jnr.ffi.Pointer sub_int_tint(int i, jnr.ffi.Pointer tnumber)
    • sub_tfloat_float

      public static jnr.ffi.Pointer sub_tfloat_float(jnr.ffi.Pointer tnumber, double d)
    • sub_tint_int

      public static jnr.ffi.Pointer sub_tint_int(jnr.ffi.Pointer tnumber, int i)
    • sub_bigint_tbigint

      public static jnr.ffi.Pointer sub_bigint_tbigint(long i, jnr.ffi.Pointer tnumber)
    • sub_tbigint_bigint

      public static jnr.ffi.Pointer sub_tbigint_bigint(jnr.ffi.Pointer tnumber, long i)
    • sub_tnumber_tnumber

      public static jnr.ffi.Pointer sub_tnumber_tnumber(jnr.ffi.Pointer tnumber1, jnr.ffi.Pointer tnumber2)
    • temporal_derivative

      public static jnr.ffi.Pointer temporal_derivative(jnr.ffi.Pointer temp)
    • tfloat_exp

      public static jnr.ffi.Pointer tfloat_exp(jnr.ffi.Pointer temp)
    • tfloat_ln

      public static jnr.ffi.Pointer tfloat_ln(jnr.ffi.Pointer temp)
    • tfloat_log10

      public static jnr.ffi.Pointer tfloat_log10(jnr.ffi.Pointer temp)
    • tfloat_sin

      public static jnr.ffi.Pointer tfloat_sin(jnr.ffi.Pointer temp)
    • tfloat_cos

      public static jnr.ffi.Pointer tfloat_cos(jnr.ffi.Pointer temp)
    • tfloat_tan

      public static jnr.ffi.Pointer tfloat_tan(jnr.ffi.Pointer temp)
    • tnumber_abs

      public static jnr.ffi.Pointer tnumber_abs(jnr.ffi.Pointer temp)
    • tnumber_trend

      public static jnr.ffi.Pointer tnumber_trend(jnr.ffi.Pointer temp)
    • float_angular_difference

      public static double float_angular_difference(double degrees1, double degrees2)
    • tnumber_angular_difference

      public static jnr.ffi.Pointer tnumber_angular_difference(jnr.ffi.Pointer temp)
    • tnumber_delta_value

      public static jnr.ffi.Pointer tnumber_delta_value(jnr.ffi.Pointer temp)
    • textcat_text_ttext

      public static jnr.ffi.Pointer textcat_text_ttext(jnr.ffi.Pointer txt, jnr.ffi.Pointer temp)
    • textcat_ttext_text

      public static jnr.ffi.Pointer textcat_ttext_text(jnr.ffi.Pointer temp, jnr.ffi.Pointer txt)
    • textcat_ttext_ttext

      public static jnr.ffi.Pointer textcat_ttext_ttext(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ttext_initcap

      public static jnr.ffi.Pointer ttext_initcap(jnr.ffi.Pointer temp)
    • ttext_upper

      public static jnr.ffi.Pointer ttext_upper(jnr.ffi.Pointer temp)
    • ttext_lower

      public static jnr.ffi.Pointer ttext_lower(jnr.ffi.Pointer temp)
    • tdistance_tfloat_float

      public static jnr.ffi.Pointer tdistance_tfloat_float(jnr.ffi.Pointer temp, double d)
    • tdistance_tint_int

      public static jnr.ffi.Pointer tdistance_tint_int(jnr.ffi.Pointer temp, int i)
    • tdistance_tnumber_tnumber

      public static jnr.ffi.Pointer tdistance_tnumber_tnumber(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • nad_tboxfloat_tboxfloat

      public static double nad_tboxfloat_tboxfloat(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • nad_tboxint_tboxint

      public static int nad_tboxint_tboxint(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • nad_tfloat_float

      public static double nad_tfloat_float(jnr.ffi.Pointer temp, double d)
    • nad_tfloat_tfloat

      public static double nad_tfloat_tfloat(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • nad_tfloat_tbox

      public static double nad_tfloat_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • nad_tint_int

      public static int nad_tint_int(jnr.ffi.Pointer temp, int i)
    • nad_tint_tbox

      public static int nad_tint_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • nad_tint_tint

      public static int nad_tint_tint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tbigint_tmax_transfn

      public static jnr.ffi.Pointer tbigint_tmax_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp)
    • tbigint_tmax_combinefn

      public static jnr.ffi.Pointer tbigint_tmax_combinefn(jnr.ffi.Pointer state1, jnr.ffi.Pointer state2)
    • tbigint_tmin_transfn

      public static jnr.ffi.Pointer tbigint_tmin_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp)
    • tbigint_tmin_combinefn

      public static jnr.ffi.Pointer tbigint_tmin_combinefn(jnr.ffi.Pointer state1, jnr.ffi.Pointer state2)
    • tbigint_tsum_transfn

      public static jnr.ffi.Pointer tbigint_tsum_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp)
    • tbigint_tsum_combinefn

      public static jnr.ffi.Pointer tbigint_tsum_combinefn(jnr.ffi.Pointer state1, jnr.ffi.Pointer state2)
    • tbigint_wmax_transfn

      public static jnr.ffi.Pointer tbigint_wmax_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp, jnr.ffi.Pointer interv)
    • tbigint_wmin_transfn

      public static jnr.ffi.Pointer tbigint_wmin_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp, jnr.ffi.Pointer interv)
    • tbigint_wsum_transfn

      public static jnr.ffi.Pointer tbigint_wsum_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp, jnr.ffi.Pointer interv)
    • tbool_tand_transfn

      public static jnr.ffi.Pointer tbool_tand_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp)
    • tbool_tand_combinefn

      public static jnr.ffi.Pointer tbool_tand_combinefn(jnr.ffi.Pointer state1, jnr.ffi.Pointer state2)
    • tbool_tor_transfn

      public static jnr.ffi.Pointer tbool_tor_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp)
    • tbool_tor_combinefn

      public static jnr.ffi.Pointer tbool_tor_combinefn(jnr.ffi.Pointer state1, jnr.ffi.Pointer state2)
    • temporal_extent_transfn

      public static jnr.ffi.Pointer temporal_extent_transfn(jnr.ffi.Pointer s, jnr.ffi.Pointer temp)
    • temporal_tagg_finalfn

      public static jnr.ffi.Pointer temporal_tagg_finalfn(jnr.ffi.Pointer state)
    • temporal_tcount_transfn

      public static jnr.ffi.Pointer temporal_tcount_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp)
    • temporal_tcount_combinefn

      public static jnr.ffi.Pointer temporal_tcount_combinefn(jnr.ffi.Pointer state1, jnr.ffi.Pointer state2)
    • tfloat_tmax_transfn

      public static jnr.ffi.Pointer tfloat_tmax_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp)
    • tfloat_tmax_combinefn

      public static jnr.ffi.Pointer tfloat_tmax_combinefn(jnr.ffi.Pointer state1, jnr.ffi.Pointer state2)
    • tfloat_tmin_transfn

      public static jnr.ffi.Pointer tfloat_tmin_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp)
    • tfloat_tmin_combinefn

      public static jnr.ffi.Pointer tfloat_tmin_combinefn(jnr.ffi.Pointer state1, jnr.ffi.Pointer state2)
    • tfloat_tsum_transfn

      public static jnr.ffi.Pointer tfloat_tsum_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp)
    • tfloat_tsum_combinefn

      public static jnr.ffi.Pointer tfloat_tsum_combinefn(jnr.ffi.Pointer state1, jnr.ffi.Pointer state2)
    • tfloat_wmax_transfn

      public static jnr.ffi.Pointer tfloat_wmax_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp, jnr.ffi.Pointer interv)
    • tfloat_wmin_transfn

      public static jnr.ffi.Pointer tfloat_wmin_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp, jnr.ffi.Pointer interv)
    • tfloat_wsum_transfn

      public static jnr.ffi.Pointer tfloat_wsum_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp, jnr.ffi.Pointer interv)
    • timestamptz_tcount_transfn

      public static jnr.ffi.Pointer timestamptz_tcount_transfn(jnr.ffi.Pointer state, OffsetDateTime t)
    • tint_tmax_transfn

      public static jnr.ffi.Pointer tint_tmax_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp)
    • tint_tmax_combinefn

      public static jnr.ffi.Pointer tint_tmax_combinefn(jnr.ffi.Pointer state1, jnr.ffi.Pointer state2)
    • tint_tmin_transfn

      public static jnr.ffi.Pointer tint_tmin_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp)
    • tint_tmin_combinefn

      public static jnr.ffi.Pointer tint_tmin_combinefn(jnr.ffi.Pointer state1, jnr.ffi.Pointer state2)
    • tint_tsum_transfn

      public static jnr.ffi.Pointer tint_tsum_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp)
    • tint_tsum_combinefn

      public static jnr.ffi.Pointer tint_tsum_combinefn(jnr.ffi.Pointer state1, jnr.ffi.Pointer state2)
    • tint_wmax_transfn

      public static jnr.ffi.Pointer tint_wmax_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp, jnr.ffi.Pointer interv)
    • tint_wmin_transfn

      public static jnr.ffi.Pointer tint_wmin_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp, jnr.ffi.Pointer interv)
    • tint_wsum_transfn

      public static jnr.ffi.Pointer tint_wsum_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp, jnr.ffi.Pointer interv)
    • tnumber_extent_transfn

      public static jnr.ffi.Pointer tnumber_extent_transfn(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • tnumber_tavg_finalfn

      public static jnr.ffi.Pointer tnumber_tavg_finalfn(jnr.ffi.Pointer state)
    • tnumber_tavg_transfn

      public static jnr.ffi.Pointer tnumber_tavg_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp)
    • tnumber_tavg_combinefn

      public static jnr.ffi.Pointer tnumber_tavg_combinefn(jnr.ffi.Pointer state1, jnr.ffi.Pointer state2)
    • tnumber_wavg_transfn

      public static jnr.ffi.Pointer tnumber_wavg_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp, jnr.ffi.Pointer interv)
    • tstzset_tcount_transfn

      public static jnr.ffi.Pointer tstzset_tcount_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer s)
    • tstzspan_tcount_transfn

      public static jnr.ffi.Pointer tstzspan_tcount_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer s)
    • tstzspanset_tcount_transfn

      public static jnr.ffi.Pointer tstzspanset_tcount_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer ss)
    • temporal_merge_transfn

      public static jnr.ffi.Pointer temporal_merge_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp)
    • temporal_merge_combinefn

      public static jnr.ffi.Pointer temporal_merge_combinefn(jnr.ffi.Pointer state1, jnr.ffi.Pointer state2)
    • ttext_tmax_transfn

      public static jnr.ffi.Pointer ttext_tmax_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp)
    • ttext_tmax_combinefn

      public static jnr.ffi.Pointer ttext_tmax_combinefn(jnr.ffi.Pointer state1, jnr.ffi.Pointer state2)
    • ttext_tmin_transfn

      public static jnr.ffi.Pointer ttext_tmin_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp)
    • ttext_tmin_combinefn

      public static jnr.ffi.Pointer ttext_tmin_combinefn(jnr.ffi.Pointer state1, jnr.ffi.Pointer state2)
    • temporal_simplify_dp

      public static jnr.ffi.Pointer temporal_simplify_dp(jnr.ffi.Pointer temp, double dist, boolean synchronize)
    • temporal_simplify_max_dist

      public static jnr.ffi.Pointer temporal_simplify_max_dist(jnr.ffi.Pointer temp, double dist, boolean synchronize)
    • temporal_simplify_min_dist

      public static jnr.ffi.Pointer temporal_simplify_min_dist(jnr.ffi.Pointer temp, double dist)
    • temporal_simplify_min_tdelta

      public static jnr.ffi.Pointer temporal_simplify_min_tdelta(jnr.ffi.Pointer temp, jnr.ffi.Pointer mint)
    • temporal_tprecision

      public static jnr.ffi.Pointer temporal_tprecision(jnr.ffi.Pointer temp, jnr.ffi.Pointer duration, OffsetDateTime origin)
    • temporal_tsample

      public static jnr.ffi.Pointer temporal_tsample(jnr.ffi.Pointer temp, jnr.ffi.Pointer duration, OffsetDateTime origin, int interp)
    • temporal_dyntimewarp_distance

      public static double temporal_dyntimewarp_distance(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • temporal_dyntimewarp_path

      public static jnr.ffi.Pointer temporal_dyntimewarp_path(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, jnr.ffi.Pointer count)
    • temporal_frechet_distance

      public static double temporal_frechet_distance(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • temporal_frechet_path

      public static jnr.ffi.Pointer temporal_frechet_path(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, jnr.ffi.Pointer count)
    • temporal_hausdorff_distance

      public static double temporal_hausdorff_distance(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • temporal_average_hausdorff_distance

      public static double temporal_average_hausdorff_distance(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • temporal_lcss_distance

      public static double temporal_lcss_distance(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, double epsilon)
    • temporal_ext_kalman_filter

      public static jnr.ffi.Pointer temporal_ext_kalman_filter(jnr.ffi.Pointer temp, double gate, double q, double variance, boolean to_drop)
    • temporal_time_bins

      public static jnr.ffi.Pointer temporal_time_bins(jnr.ffi.Pointer temp, jnr.ffi.Pointer duration, OffsetDateTime origin, jnr.ffi.Pointer count)
    • temporal_time_split

      public static jnr.ffi.Pointer temporal_time_split(jnr.ffi.Pointer temp, jnr.ffi.Pointer duration, OffsetDateTime torigin, jnr.ffi.Pointer bins, jnr.ffi.Pointer count)
    • tfloat_time_boxes

      public static jnr.ffi.Pointer tfloat_time_boxes(jnr.ffi.Pointer temp, jnr.ffi.Pointer duration, OffsetDateTime torigin, jnr.ffi.Pointer count)
    • tfloat_value_bins

      public static jnr.ffi.Pointer tfloat_value_bins(jnr.ffi.Pointer temp, double vsize, double vorigin, jnr.ffi.Pointer count)
    • tfloat_value_boxes

      public static jnr.ffi.Pointer tfloat_value_boxes(jnr.ffi.Pointer temp, double vsize, double vorigin, jnr.ffi.Pointer count)
    • tfloat_value_split

      public static jnr.ffi.Pointer tfloat_value_split(jnr.ffi.Pointer temp, double size, double origin, jnr.ffi.Pointer bins, jnr.ffi.Pointer count)
    • tfloat_value_time_boxes

      public static jnr.ffi.Pointer tfloat_value_time_boxes(jnr.ffi.Pointer temp, double vsize, jnr.ffi.Pointer duration, double vorigin, OffsetDateTime torigin, jnr.ffi.Pointer count)
    • tfloat_value_time_split

      public static jnr.ffi.Pointer tfloat_value_time_split(jnr.ffi.Pointer temp, double vsize, jnr.ffi.Pointer duration, double vorigin, OffsetDateTime torigin, jnr.ffi.Pointer value_bins, jnr.ffi.Pointer time_bins, jnr.ffi.Pointer count)
    • tfloatbox_time_tiles

      public static jnr.ffi.Pointer tfloatbox_time_tiles(jnr.ffi.Pointer box, jnr.ffi.Pointer duration, OffsetDateTime torigin, jnr.ffi.Pointer count)
    • tfloatbox_value_tiles

      public static jnr.ffi.Pointer tfloatbox_value_tiles(jnr.ffi.Pointer box, double vsize, double vorigin, jnr.ffi.Pointer count)
    • tfloatbox_value_time_tiles

      public static jnr.ffi.Pointer tfloatbox_value_time_tiles(jnr.ffi.Pointer box, double vsize, jnr.ffi.Pointer duration, double vorigin, OffsetDateTime torigin, jnr.ffi.Pointer count)
    • tint_time_boxes

      public static jnr.ffi.Pointer tint_time_boxes(jnr.ffi.Pointer temp, jnr.ffi.Pointer duration, OffsetDateTime torigin, jnr.ffi.Pointer count)
    • tint_value_bins

      public static jnr.ffi.Pointer tint_value_bins(jnr.ffi.Pointer temp, int vsize, int vorigin, jnr.ffi.Pointer count)
    • tint_value_boxes

      public static jnr.ffi.Pointer tint_value_boxes(jnr.ffi.Pointer temp, int vsize, int vorigin, jnr.ffi.Pointer count)
    • tint_value_split

      public static jnr.ffi.Pointer tint_value_split(jnr.ffi.Pointer temp, int vsize, int vorigin, jnr.ffi.Pointer bins, jnr.ffi.Pointer count)
    • tint_value_time_boxes

      public static jnr.ffi.Pointer tint_value_time_boxes(jnr.ffi.Pointer temp, int vsize, jnr.ffi.Pointer duration, int vorigin, OffsetDateTime torigin, jnr.ffi.Pointer count)
    • tint_value_time_split

      public static jnr.ffi.Pointer tint_value_time_split(jnr.ffi.Pointer temp, long size, jnr.ffi.Pointer duration, int vorigin, OffsetDateTime torigin, jnr.ffi.Pointer value_bins, jnr.ffi.Pointer time_bins, jnr.ffi.Pointer count)
    • tintbox_time_tiles

      public static jnr.ffi.Pointer tintbox_time_tiles(jnr.ffi.Pointer box, jnr.ffi.Pointer duration, OffsetDateTime torigin, jnr.ffi.Pointer count)
    • tintbox_value_tiles

      public static jnr.ffi.Pointer tintbox_value_tiles(jnr.ffi.Pointer box, int xsize, int xorigin, jnr.ffi.Pointer count)
    • tintbox_value_time_tiles

      public static jnr.ffi.Pointer tintbox_value_time_tiles(jnr.ffi.Pointer box, int xsize, jnr.ffi.Pointer duration, int xorigin, OffsetDateTime torigin, jnr.ffi.Pointer count)
    • box3d_make

      public static jnr.ffi.Pointer box3d_make(double xmin, double xmax, double ymin, double ymax, double zmin, double zmax, int srid)
    • box3d_in

      public static jnr.ffi.Pointer box3d_in(String str)
    • box3d_out

      public static String box3d_out(jnr.ffi.Pointer box, int maxdd)
    • gbox_make

      public static jnr.ffi.Pointer gbox_make(boolean hasz, boolean hasm, boolean geodetic, double xmin, double xmax, double ymin, double ymax, double zmin, double zmax, double mmin, double mmax)
    • gbox_in

      public static jnr.ffi.Pointer gbox_in(String str)
    • gbox_out

      public static String gbox_out(jnr.ffi.Pointer box, int maxdd)
    • geo_as_ewkb

      public static jnr.ffi.Pointer geo_as_ewkb(jnr.ffi.Pointer gs, String endian, jnr.ffi.Pointer size)
    • geo_as_ewkt

      public static String geo_as_ewkt(jnr.ffi.Pointer gs, int precision)
    • geo_as_geojson

      public static String geo_as_geojson(jnr.ffi.Pointer gs, int option, int precision, String srs)
    • geo_as_hexewkb

      public static String geo_as_hexewkb(jnr.ffi.Pointer gs, String endian)
    • geo_as_text

      public static String geo_as_text(jnr.ffi.Pointer gs, int precision)
    • geo_from_ewkb

      public static jnr.ffi.Pointer geo_from_ewkb(jnr.ffi.Pointer wkb, long wkb_size, int srid)
    • geo_from_geojson

      public static jnr.ffi.Pointer geo_from_geojson(String geojson)
    • geo_from_text

      public static jnr.ffi.Pointer geo_from_text(String wkt, int srid)
    • geo_out

      public static String geo_out(jnr.ffi.Pointer gs)
    • geog_from_hexewkb

      public static jnr.ffi.Pointer geog_from_hexewkb(String wkt)
    • geog_in

      public static jnr.ffi.Pointer geog_in(String str, int typmod)
    • geom_from_hexewkb

      public static jnr.ffi.Pointer geom_from_hexewkb(String wkt)
    • geom_in

      public static jnr.ffi.Pointer geom_in(String str, int typmod)
    • geo_copy

      public static jnr.ffi.Pointer geo_copy(jnr.ffi.Pointer gs)
    • geogpoint_make2d

      public static jnr.ffi.Pointer geogpoint_make2d(int srid, double x, double y)
    • geogpoint_make3dz

      public static jnr.ffi.Pointer geogpoint_make3dz(int srid, double x, double y, double z)
    • geompoint_make2d

      public static jnr.ffi.Pointer geompoint_make2d(int srid, double x, double y)
    • geompoint_make3dz

      public static jnr.ffi.Pointer geompoint_make3dz(int srid, double x, double y, double z)
    • geom_to_geog

      public static jnr.ffi.Pointer geom_to_geog(jnr.ffi.Pointer geom)
    • geog_to_geom

      public static jnr.ffi.Pointer geog_to_geom(jnr.ffi.Pointer geog)
    • geo_is_empty

      public static boolean geo_is_empty(jnr.ffi.Pointer gs)
    • geo_is_unitary

      public static boolean geo_is_unitary(jnr.ffi.Pointer gs)
    • geo_typename

      public static String geo_typename(int type)
    • geog_area

      public static double geog_area(jnr.ffi.Pointer gs, boolean use_spheroid)
    • geog_centroid

      public static jnr.ffi.Pointer geog_centroid(jnr.ffi.Pointer gs, boolean use_spheroid)
    • geog_length

      public static double geog_length(jnr.ffi.Pointer gs, boolean use_spheroid)
    • geog_perimeter

      public static double geog_perimeter(jnr.ffi.Pointer gs, boolean use_spheroid)
    • geom_azimuth

      public static jnr.ffi.Pointer geom_azimuth(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • geom_length

      public static double geom_length(jnr.ffi.Pointer gs)
    • geom_perimeter

      public static double geom_perimeter(jnr.ffi.Pointer gs)
    • line_numpoints

      public static int line_numpoints(jnr.ffi.Pointer gs)
    • line_point_n

      public static jnr.ffi.Pointer line_point_n(jnr.ffi.Pointer geom, int n)
    • geo_reverse

      public static jnr.ffi.Pointer geo_reverse(jnr.ffi.Pointer gs)
    • geo_round

      public static jnr.ffi.Pointer geo_round(jnr.ffi.Pointer gs, int maxdd)
    • geo_set_srid

      public static jnr.ffi.Pointer geo_set_srid(jnr.ffi.Pointer gs, int srid)
    • geo_srid

      public static int geo_srid(jnr.ffi.Pointer gs)
    • geo_transform

      public static jnr.ffi.Pointer geo_transform(jnr.ffi.Pointer geom, int srid_to)
    • geo_transform_pipeline

      public static jnr.ffi.Pointer geo_transform_pipeline(jnr.ffi.Pointer gs, String pipeline, int srid_to, boolean is_forward)
    • geo_collect_garray

      public static jnr.ffi.Pointer geo_collect_garray(jnr.ffi.Pointer gsarr, int count)
    • geo_makeline_garray

      public static jnr.ffi.Pointer geo_makeline_garray(jnr.ffi.Pointer gsarr, int count)
    • geo_num_points

      public static int geo_num_points(jnr.ffi.Pointer gs)
    • geo_num_geos

      public static int geo_num_geos(jnr.ffi.Pointer gs)
    • geo_geo_n

      public static jnr.ffi.Pointer geo_geo_n(jnr.ffi.Pointer geom, int n)
    • geo_pointarr

      public static jnr.ffi.Pointer geo_pointarr(jnr.ffi.Pointer gs, jnr.ffi.Pointer count)
    • geo_points

      public static jnr.ffi.Pointer geo_points(jnr.ffi.Pointer gs)
    • geom_array_union

      public static jnr.ffi.Pointer geom_array_union(jnr.ffi.Pointer gsarr, int count)
    • geom_boundary

      public static jnr.ffi.Pointer geom_boundary(jnr.ffi.Pointer gs)
    • geom_buffer

      public static jnr.ffi.Pointer geom_buffer(jnr.ffi.Pointer gs, double size, String params)
    • geom_centroid

      public static jnr.ffi.Pointer geom_centroid(jnr.ffi.Pointer gs)
    • geom_convex_hull

      public static jnr.ffi.Pointer geom_convex_hull(jnr.ffi.Pointer gs)
    • geom_difference2d

      public static jnr.ffi.Pointer geom_difference2d(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • geom_intersection2d

      public static jnr.ffi.Pointer geom_intersection2d(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • geom_intersection2d_coll

      public static jnr.ffi.Pointer geom_intersection2d_coll(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • geom_min_bounding_radius

      public static jnr.ffi.Pointer geom_min_bounding_radius(jnr.ffi.Pointer geom, jnr.ffi.Pointer radius)
    • geom_shortestline2d

      public static jnr.ffi.Pointer geom_shortestline2d(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • geom_shortestline3d

      public static jnr.ffi.Pointer geom_shortestline3d(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • geom_unary_union

      public static jnr.ffi.Pointer geom_unary_union(jnr.ffi.Pointer gs, double prec)
    • line_interpolate_point

      public static jnr.ffi.Pointer line_interpolate_point(jnr.ffi.Pointer gs, double distance_fraction, boolean repeat)
    • line_locate_point

      public static double line_locate_point(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • line_substring

      public static jnr.ffi.Pointer line_substring(jnr.ffi.Pointer gs, double from, double to)
    • geog_dwithin

      public static boolean geog_dwithin(jnr.ffi.Pointer g1, jnr.ffi.Pointer g2, double tolerance, boolean use_spheroid)
    • geog_intersects

      public static boolean geog_intersects(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2, boolean use_spheroid)
    • geom_contains

      public static boolean geom_contains(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • geom_covers

      public static boolean geom_covers(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • geom_disjoint2d

      public static boolean geom_disjoint2d(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • geom_dwithin

      public static boolean geom_dwithin(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2, double tolerance)
    • geom_dwithin2d

      public static boolean geom_dwithin2d(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2, double tolerance)
    • geom_dwithin3d

      public static boolean geom_dwithin3d(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2, double tolerance)
    • geom_intersects

      public static boolean geom_intersects(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • geom_intersects2d

      public static boolean geom_intersects2d(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • geom_intersects3d

      public static boolean geom_intersects3d(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • geom_relate_pattern

      public static boolean geom_relate_pattern(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2, String patt)
    • geom_touches

      public static boolean geom_touches(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • geo_stboxes

      public static jnr.ffi.Pointer geo_stboxes(jnr.ffi.Pointer gs, jnr.ffi.Pointer count)
    • geo_split_each_n_stboxes

      public static jnr.ffi.Pointer geo_split_each_n_stboxes(jnr.ffi.Pointer gs, int elem_count, jnr.ffi.Pointer count)
    • geo_split_n_stboxes

      public static jnr.ffi.Pointer geo_split_n_stboxes(jnr.ffi.Pointer gs, int box_count, jnr.ffi.Pointer count)
    • geog_distance

      public static double geog_distance(jnr.ffi.Pointer g1, jnr.ffi.Pointer g2)
    • geom_distance2d

      public static double geom_distance2d(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • geom_distance3d

      public static double geom_distance3d(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • geo_equals

      public static int geo_equals(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • geo_same

      public static boolean geo_same(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • geogset_in

      public static jnr.ffi.Pointer geogset_in(String str)
    • geomset_in

      public static jnr.ffi.Pointer geomset_in(String str)
    • spatialset_out

      public static String spatialset_out(jnr.ffi.Pointer s, int maxdd)
    • spatialset_as_text

      public static String spatialset_as_text(jnr.ffi.Pointer set, int maxdd)
    • spatialset_as_ewkt

      public static String spatialset_as_ewkt(jnr.ffi.Pointer set, int maxdd)
    • geoset_make

      public static jnr.ffi.Pointer geoset_make(jnr.ffi.Pointer values, int count)
    • geo_to_set

      public static jnr.ffi.Pointer geo_to_set(jnr.ffi.Pointer gs)
    • geoset_end_value

      public static jnr.ffi.Pointer geoset_end_value(jnr.ffi.Pointer s)
    • geoset_start_value

      public static jnr.ffi.Pointer geoset_start_value(jnr.ffi.Pointer s)
    • geoset_value_n

      public static jnr.ffi.Pointer geoset_value_n(jnr.ffi.Pointer s, int n)
    • geoset_values

      public static jnr.ffi.Pointer geoset_values(jnr.ffi.Pointer s, jnr.ffi.Pointer count)
    • contained_geo_set

      public static boolean contained_geo_set(jnr.ffi.Pointer gs, jnr.ffi.Pointer s)
    • contains_set_geo

      public static boolean contains_set_geo(jnr.ffi.Pointer s, jnr.ffi.Pointer gs)
    • geo_union_transfn

      public static jnr.ffi.Pointer geo_union_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer gs)
    • intersection_geo_set

      public static jnr.ffi.Pointer intersection_geo_set(jnr.ffi.Pointer gs, jnr.ffi.Pointer s)
    • intersection_set_geo

      public static jnr.ffi.Pointer intersection_set_geo(jnr.ffi.Pointer s, jnr.ffi.Pointer gs)
    • minus_geo_set

      public static jnr.ffi.Pointer minus_geo_set(jnr.ffi.Pointer gs, jnr.ffi.Pointer s)
    • minus_set_geo

      public static jnr.ffi.Pointer minus_set_geo(jnr.ffi.Pointer s, jnr.ffi.Pointer gs)
    • union_geo_set

      public static jnr.ffi.Pointer union_geo_set(jnr.ffi.Pointer gs, jnr.ffi.Pointer s)
    • union_set_geo

      public static jnr.ffi.Pointer union_set_geo(jnr.ffi.Pointer s, jnr.ffi.Pointer gs)
    • spatialset_set_srid

      public static jnr.ffi.Pointer spatialset_set_srid(jnr.ffi.Pointer s, int srid)
    • spatialset_srid

      public static int spatialset_srid(jnr.ffi.Pointer s)
    • spatialset_transform

      public static jnr.ffi.Pointer spatialset_transform(jnr.ffi.Pointer s, int srid)
    • spatialset_transform_pipeline

      public static jnr.ffi.Pointer spatialset_transform_pipeline(jnr.ffi.Pointer s, String pipelinestr, int srid, boolean is_forward)
    • stbox_as_hexwkb

      public static String stbox_as_hexwkb(jnr.ffi.Pointer box, byte variant)
    • stbox_as_wkb

      public static jnr.ffi.Pointer stbox_as_wkb(jnr.ffi.Pointer box, byte variant)
    • stbox_from_hexwkb

      public static jnr.ffi.Pointer stbox_from_hexwkb(String hexwkb)
    • stbox_from_wkb

      public static jnr.ffi.Pointer stbox_from_wkb(jnr.ffi.Pointer wkb, long size)
    • stbox_in

      public static jnr.ffi.Pointer stbox_in(String str)
    • stbox_out

      public static String stbox_out(jnr.ffi.Pointer box, int maxdd)
    • geo_timestamptz_to_stbox

      public static jnr.ffi.Pointer geo_timestamptz_to_stbox(jnr.ffi.Pointer gs, OffsetDateTime t)
    • geo_tstzspan_to_stbox

      public static jnr.ffi.Pointer geo_tstzspan_to_stbox(jnr.ffi.Pointer gs, jnr.ffi.Pointer s)
    • stbox_copy

      public static jnr.ffi.Pointer stbox_copy(jnr.ffi.Pointer box)
    • stbox_make

      public static jnr.ffi.Pointer stbox_make(boolean hasx, boolean hasz, boolean geodetic, int srid, double xmin, double xmax, double ymin, double ymax, double zmin, double zmax, jnr.ffi.Pointer s)
    • geo_to_stbox

      public static jnr.ffi.Pointer geo_to_stbox(jnr.ffi.Pointer gs)
    • spatialset_to_stbox

      public static jnr.ffi.Pointer spatialset_to_stbox(jnr.ffi.Pointer s)
    • stbox_to_box3d

      public static jnr.ffi.Pointer stbox_to_box3d(jnr.ffi.Pointer box)
    • stbox_to_gbox

      public static jnr.ffi.Pointer stbox_to_gbox(jnr.ffi.Pointer box)
    • stbox_to_geo

      public static jnr.ffi.Pointer stbox_to_geo(jnr.ffi.Pointer box)
    • stbox_to_tstzspan

      public static jnr.ffi.Pointer stbox_to_tstzspan(jnr.ffi.Pointer box)
    • timestamptz_to_stbox

      public static jnr.ffi.Pointer timestamptz_to_stbox(OffsetDateTime t)
    • tstzset_to_stbox

      public static jnr.ffi.Pointer tstzset_to_stbox(jnr.ffi.Pointer s)
    • tstzspan_to_stbox

      public static jnr.ffi.Pointer tstzspan_to_stbox(jnr.ffi.Pointer s)
    • tstzspanset_to_stbox

      public static jnr.ffi.Pointer tstzspanset_to_stbox(jnr.ffi.Pointer ss)
    • stbox_area

      public static double stbox_area(jnr.ffi.Pointer box, boolean spheroid)
    • stbox_hash

      public static int stbox_hash(jnr.ffi.Pointer box)
    • stbox_hash_extended

      public static long stbox_hash_extended(jnr.ffi.Pointer box, long seed)
    • stbox_hast

      public static boolean stbox_hast(jnr.ffi.Pointer box)
    • stbox_hasx

      public static boolean stbox_hasx(jnr.ffi.Pointer box)
    • stbox_hasz

      public static boolean stbox_hasz(jnr.ffi.Pointer box)
    • stbox_isgeodetic

      public static boolean stbox_isgeodetic(jnr.ffi.Pointer box)
    • stbox_perimeter

      public static double stbox_perimeter(jnr.ffi.Pointer box, boolean spheroid)
    • stbox_tmax

      public static jnr.ffi.Pointer stbox_tmax(jnr.ffi.Pointer box)
    • stbox_tmax_inc

      public static jnr.ffi.Pointer stbox_tmax_inc(jnr.ffi.Pointer box)
    • stbox_tmin

      public static jnr.ffi.Pointer stbox_tmin(jnr.ffi.Pointer box)
    • stbox_tmin_inc

      public static jnr.ffi.Pointer stbox_tmin_inc(jnr.ffi.Pointer box)
    • stbox_volume

      public static double stbox_volume(jnr.ffi.Pointer box)
    • stbox_xmax

      public static jnr.ffi.Pointer stbox_xmax(jnr.ffi.Pointer box)
    • stbox_xmin

      public static jnr.ffi.Pointer stbox_xmin(jnr.ffi.Pointer box)
    • stbox_ymax

      public static jnr.ffi.Pointer stbox_ymax(jnr.ffi.Pointer box)
    • stbox_ymin

      public static jnr.ffi.Pointer stbox_ymin(jnr.ffi.Pointer box)
    • stbox_zmax

      public static jnr.ffi.Pointer stbox_zmax(jnr.ffi.Pointer box)
    • stbox_zmin

      public static jnr.ffi.Pointer stbox_zmin(jnr.ffi.Pointer box)
    • stbox_expand_space

      public static jnr.ffi.Pointer stbox_expand_space(jnr.ffi.Pointer box, double d)
    • stbox_expand_time

      public static jnr.ffi.Pointer stbox_expand_time(jnr.ffi.Pointer box, jnr.ffi.Pointer interv)
    • stbox_get_space

      public static jnr.ffi.Pointer stbox_get_space(jnr.ffi.Pointer box)
    • stbox_quad_split

      public static jnr.ffi.Pointer stbox_quad_split(jnr.ffi.Pointer box, jnr.ffi.Pointer count)
    • stbox_round

      public static jnr.ffi.Pointer stbox_round(jnr.ffi.Pointer box, int maxdd)
    • stbox_shift_scale_time

      public static jnr.ffi.Pointer stbox_shift_scale_time(jnr.ffi.Pointer box, jnr.ffi.Pointer shift, jnr.ffi.Pointer duration)
    • stboxarr_round

      public static jnr.ffi.Pointer stboxarr_round(jnr.ffi.Pointer boxarr, int count, int maxdd)
    • stbox_set_srid

      public static jnr.ffi.Pointer stbox_set_srid(jnr.ffi.Pointer box, int srid)
    • stbox_srid

      public static int stbox_srid(jnr.ffi.Pointer box)
    • stbox_transform

      public static jnr.ffi.Pointer stbox_transform(jnr.ffi.Pointer box, int srid)
    • stbox_transform_pipeline

      public static jnr.ffi.Pointer stbox_transform_pipeline(jnr.ffi.Pointer box, String pipelinestr, int srid, boolean is_forward)
    • adjacent_stbox_stbox

      public static boolean adjacent_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • contained_stbox_stbox

      public static boolean contained_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • contains_stbox_stbox

      public static boolean contains_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overlaps_stbox_stbox

      public static boolean overlaps_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • same_stbox_stbox

      public static boolean same_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • above_stbox_stbox

      public static boolean above_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • after_stbox_stbox

      public static boolean after_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • back_stbox_stbox

      public static boolean back_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • before_stbox_stbox

      public static boolean before_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • below_stbox_stbox

      public static boolean below_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • front_stbox_stbox

      public static boolean front_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • left_stbox_stbox

      public static boolean left_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overabove_stbox_stbox

      public static boolean overabove_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overafter_stbox_stbox

      public static boolean overafter_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overback_stbox_stbox

      public static boolean overback_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overbefore_stbox_stbox

      public static boolean overbefore_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overbelow_stbox_stbox

      public static boolean overbelow_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overfront_stbox_stbox

      public static boolean overfront_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overleft_stbox_stbox

      public static boolean overleft_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overright_stbox_stbox

      public static boolean overright_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • right_stbox_stbox

      public static boolean right_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • union_stbox_stbox

      public static jnr.ffi.Pointer union_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2, boolean strict)
    • intersection_stbox_stbox

      public static jnr.ffi.Pointer intersection_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • stbox_cmp

      public static int stbox_cmp(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • stbox_eq

      public static boolean stbox_eq(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • stbox_ge

      public static boolean stbox_ge(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • stbox_gt

      public static boolean stbox_gt(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • stbox_le

      public static boolean stbox_le(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • stbox_lt

      public static boolean stbox_lt(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • stbox_ne

      public static boolean stbox_ne(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tspatial_out

      public static String tspatial_out(jnr.ffi.Pointer temp, int maxdd)
    • tgeogpoint_from_mfjson

      public static jnr.ffi.Pointer tgeogpoint_from_mfjson(String str)
    • tgeogpoint_in

      public static jnr.ffi.Pointer tgeogpoint_in(String str)
    • tgeography_from_mfjson

      public static jnr.ffi.Pointer tgeography_from_mfjson(String mfjson)
    • tgeography_in

      public static jnr.ffi.Pointer tgeography_in(String str)
    • tgeometry_from_mfjson

      public static jnr.ffi.Pointer tgeometry_from_mfjson(String str)
    • tgeometry_in

      public static jnr.ffi.Pointer tgeometry_in(String str)
    • tgeompoint_from_mfjson

      public static jnr.ffi.Pointer tgeompoint_from_mfjson(String str)
    • tgeompoint_in

      public static jnr.ffi.Pointer tgeompoint_in(String str)
    • tspatial_as_ewkt

      public static String tspatial_as_ewkt(jnr.ffi.Pointer temp, int maxdd)
    • tspatial_as_text

      public static String tspatial_as_text(jnr.ffi.Pointer temp, int maxdd)
    • tgeo_from_base_temp

      public static jnr.ffi.Pointer tgeo_from_base_temp(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • tgeoinst_make

      public static jnr.ffi.Pointer tgeoinst_make(jnr.ffi.Pointer gs, OffsetDateTime t)
    • tgeoseq_from_base_tstzset

      public static jnr.ffi.Pointer tgeoseq_from_base_tstzset(jnr.ffi.Pointer gs, jnr.ffi.Pointer s)
    • tgeoseq_from_base_tstzspan

      public static jnr.ffi.Pointer tgeoseq_from_base_tstzspan(jnr.ffi.Pointer gs, jnr.ffi.Pointer s, int interp)
    • tgeoseqset_from_base_tstzspanset

      public static jnr.ffi.Pointer tgeoseqset_from_base_tstzspanset(jnr.ffi.Pointer gs, jnr.ffi.Pointer ss, int interp)
    • tpoint_from_base_temp

      public static jnr.ffi.Pointer tpoint_from_base_temp(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • tpointinst_make

      public static jnr.ffi.Pointer tpointinst_make(jnr.ffi.Pointer gs, OffsetDateTime t)
    • tpointseq_from_base_tstzset

      public static jnr.ffi.Pointer tpointseq_from_base_tstzset(jnr.ffi.Pointer gs, jnr.ffi.Pointer s)
    • tpointseq_from_base_tstzspan

      public static jnr.ffi.Pointer tpointseq_from_base_tstzspan(jnr.ffi.Pointer gs, jnr.ffi.Pointer s, int interp)
    • tpointseq_make_coords

      public static jnr.ffi.Pointer tpointseq_make_coords(jnr.ffi.Pointer xcoords, jnr.ffi.Pointer ycoords, jnr.ffi.Pointer zcoords, jnr.ffi.Pointer times, int count, int srid, boolean geodetic, boolean lower_inc, boolean upper_inc, int interp, boolean normalize)
    • tpointseqset_from_base_tstzspanset

      public static jnr.ffi.Pointer tpointseqset_from_base_tstzspanset(jnr.ffi.Pointer gs, jnr.ffi.Pointer ss, int interp)
    • box3d_to_stbox

      public static jnr.ffi.Pointer box3d_to_stbox(jnr.ffi.Pointer box)
    • gbox_to_stbox

      public static jnr.ffi.Pointer gbox_to_stbox(jnr.ffi.Pointer box)
    • geomeas_to_tpoint

      public static jnr.ffi.Pointer geomeas_to_tpoint(jnr.ffi.Pointer gs)
    • tgeogpoint_to_tgeography

      public static jnr.ffi.Pointer tgeogpoint_to_tgeography(jnr.ffi.Pointer temp)
    • tgeography_to_tgeogpoint

      public static jnr.ffi.Pointer tgeography_to_tgeogpoint(jnr.ffi.Pointer temp)
    • tgeography_to_tgeometry

      public static jnr.ffi.Pointer tgeography_to_tgeometry(jnr.ffi.Pointer temp)
    • tgeometry_to_tgeography

      public static jnr.ffi.Pointer tgeometry_to_tgeography(jnr.ffi.Pointer temp)
    • tgeometry_to_tgeompoint

      public static jnr.ffi.Pointer tgeometry_to_tgeompoint(jnr.ffi.Pointer temp)
    • tgeompoint_to_tgeometry

      public static jnr.ffi.Pointer tgeompoint_to_tgeometry(jnr.ffi.Pointer temp)
    • tpoint_as_mvtgeom

      public static GeneratedFunctions.MvtGeom tpoint_as_mvtgeom(jnr.ffi.Pointer temp, jnr.ffi.Pointer bounds, int extent, int buffer, boolean clip_geom)
    • tpoint_tfloat_to_geomeas

      public static jnr.ffi.Pointer tpoint_tfloat_to_geomeas(jnr.ffi.Pointer tpoint, jnr.ffi.Pointer measure, boolean segmentize)
    • tspatial_to_stbox

      public static jnr.ffi.Pointer tspatial_to_stbox(jnr.ffi.Pointer temp)
    • bearing_point_point

      public static jnr.ffi.Pointer bearing_point_point(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • bearing_tpoint_point

      public static jnr.ffi.Pointer bearing_tpoint_point(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean invert)
    • bearing_tpoint_tpoint

      public static jnr.ffi.Pointer bearing_tpoint_tpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tgeo_centroid

      public static jnr.ffi.Pointer tgeo_centroid(jnr.ffi.Pointer temp)
    • tgeo_convex_hull

      public static jnr.ffi.Pointer tgeo_convex_hull(jnr.ffi.Pointer temp)
    • tgeo_end_value

      public static jnr.ffi.Pointer tgeo_end_value(jnr.ffi.Pointer temp)
    • tgeo_start_value

      public static jnr.ffi.Pointer tgeo_start_value(jnr.ffi.Pointer temp)
    • tgeo_traversed_area

      public static jnr.ffi.Pointer tgeo_traversed_area(jnr.ffi.Pointer temp, boolean unary_union)
    • tgeo_value_at_timestamptz

      public static jnr.ffi.Pointer tgeo_value_at_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean strict)
    • tgeo_value_n

      public static jnr.ffi.Pointer tgeo_value_n(jnr.ffi.Pointer temp, int n)
    • tgeo_values

      public static jnr.ffi.Pointer tgeo_values(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • tpoint_angular_difference

      public static jnr.ffi.Pointer tpoint_angular_difference(jnr.ffi.Pointer temp)
    • tpoint_azimuth

      public static jnr.ffi.Pointer tpoint_azimuth(jnr.ffi.Pointer temp)
    • tpoint_cumulative_length

      public static jnr.ffi.Pointer tpoint_cumulative_length(jnr.ffi.Pointer temp)
    • tpoint_direction

      public static jnr.ffi.Pointer tpoint_direction(jnr.ffi.Pointer temp)
    • tpoint_get_x

      public static jnr.ffi.Pointer tpoint_get_x(jnr.ffi.Pointer temp)
    • tpoint_get_y

      public static jnr.ffi.Pointer tpoint_get_y(jnr.ffi.Pointer temp)
    • tpoint_get_z

      public static jnr.ffi.Pointer tpoint_get_z(jnr.ffi.Pointer temp)
    • tpoint_is_simple

      public static boolean tpoint_is_simple(jnr.ffi.Pointer temp)
    • tpoint_length

      public static double tpoint_length(jnr.ffi.Pointer temp)
    • tpoint_speed

      public static jnr.ffi.Pointer tpoint_speed(jnr.ffi.Pointer temp)
    • tpoint_trajectory

      public static jnr.ffi.Pointer tpoint_trajectory(jnr.ffi.Pointer temp, boolean unary_union)
    • tpoint_twcentroid

      public static jnr.ffi.Pointer tpoint_twcentroid(jnr.ffi.Pointer temp)
    • tgeo_affine

      public static jnr.ffi.Pointer tgeo_affine(jnr.ffi.Pointer temp, jnr.ffi.Pointer a)
    • tgeo_scale

      public static jnr.ffi.Pointer tgeo_scale(jnr.ffi.Pointer temp, jnr.ffi.Pointer scale, jnr.ffi.Pointer sorigin)
    • tpoint_make_simple

      public static jnr.ffi.Pointer tpoint_make_simple(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • tspatial_srid

      public static int tspatial_srid(jnr.ffi.Pointer temp)
    • tspatial_set_srid

      public static jnr.ffi.Pointer tspatial_set_srid(jnr.ffi.Pointer temp, int srid)
    • tspatial_transform

      public static jnr.ffi.Pointer tspatial_transform(jnr.ffi.Pointer temp, int srid)
    • tspatial_transform_pipeline

      public static jnr.ffi.Pointer tspatial_transform_pipeline(jnr.ffi.Pointer temp, String pipelinestr, int srid, boolean is_forward)
    • tgeo_at_geom

      public static jnr.ffi.Pointer tgeo_at_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tgeo_at_stbox

      public static jnr.ffi.Pointer tgeo_at_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box, boolean border_inc)
    • tgeo_at_value

      public static jnr.ffi.Pointer tgeo_at_value(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tgeo_minus_geom

      public static jnr.ffi.Pointer tgeo_minus_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tgeo_minus_stbox

      public static jnr.ffi.Pointer tgeo_minus_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box, boolean border_inc)
    • tgeo_minus_value

      public static jnr.ffi.Pointer tgeo_minus_value(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tpoint_at_elevation

      public static jnr.ffi.Pointer tpoint_at_elevation(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • tpoint_at_geom

      public static jnr.ffi.Pointer tpoint_at_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tpoint_at_value

      public static jnr.ffi.Pointer tpoint_at_value(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tpoint_minus_elevation

      public static jnr.ffi.Pointer tpoint_minus_elevation(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • tpoint_minus_geom

      public static jnr.ffi.Pointer tpoint_minus_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tpoint_minus_value

      public static jnr.ffi.Pointer tpoint_minus_value(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • always_eq_geo_tgeo

      public static int always_eq_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • always_eq_tgeo_geo

      public static int always_eq_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • always_eq_tgeo_tgeo

      public static int always_eq_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • always_ne_geo_tgeo

      public static int always_ne_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • always_ne_tgeo_geo

      public static int always_ne_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • always_ne_tgeo_tgeo

      public static int always_ne_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ever_eq_geo_tgeo

      public static int ever_eq_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • ever_eq_tgeo_geo

      public static int ever_eq_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • ever_eq_tgeo_tgeo

      public static int ever_eq_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ever_ne_geo_tgeo

      public static int ever_ne_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • ever_ne_tgeo_geo

      public static int ever_ne_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • ever_ne_tgeo_tgeo

      public static int ever_ne_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • teq_geo_tgeo

      public static jnr.ffi.Pointer teq_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • teq_tgeo_geo

      public static jnr.ffi.Pointer teq_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tne_geo_tgeo

      public static jnr.ffi.Pointer tne_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • tne_tgeo_geo

      public static jnr.ffi.Pointer tne_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tgeo_stboxes

      public static jnr.ffi.Pointer tgeo_stboxes(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • tgeo_space_boxes

      public static jnr.ffi.Pointer tgeo_space_boxes(jnr.ffi.Pointer temp, double xsize, double ysize, double zsize, jnr.ffi.Pointer sorigin, boolean bitmatrix, boolean border_inc, jnr.ffi.Pointer count)
    • tgeo_space_time_boxes

      public static jnr.ffi.Pointer tgeo_space_time_boxes(jnr.ffi.Pointer temp, double xsize, double ysize, double zsize, jnr.ffi.Pointer duration, jnr.ffi.Pointer sorigin, OffsetDateTime torigin, boolean bitmatrix, boolean border_inc, jnr.ffi.Pointer count)
    • tgeo_split_each_n_stboxes

      public static jnr.ffi.Pointer tgeo_split_each_n_stboxes(jnr.ffi.Pointer temp, int elem_count, jnr.ffi.Pointer count)
    • tgeo_split_n_stboxes

      public static jnr.ffi.Pointer tgeo_split_n_stboxes(jnr.ffi.Pointer temp, int box_count, jnr.ffi.Pointer count)
    • adjacent_stbox_tspatial

      public static boolean adjacent_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • adjacent_tspatial_stbox

      public static boolean adjacent_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • adjacent_tspatial_tspatial

      public static boolean adjacent_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • contained_stbox_tspatial

      public static boolean contained_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • contained_tspatial_stbox

      public static boolean contained_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • contained_tspatial_tspatial

      public static boolean contained_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • contains_stbox_tspatial

      public static boolean contains_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • contains_tspatial_stbox

      public static boolean contains_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • contains_tspatial_tspatial

      public static boolean contains_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • overlaps_stbox_tspatial

      public static boolean overlaps_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • overlaps_tspatial_stbox

      public static boolean overlaps_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • overlaps_tspatial_tspatial

      public static boolean overlaps_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • same_stbox_tspatial

      public static boolean same_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • same_tspatial_stbox

      public static boolean same_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • same_tspatial_tspatial

      public static boolean same_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • above_stbox_tspatial

      public static boolean above_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • above_tspatial_stbox

      public static boolean above_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • above_tspatial_tspatial

      public static boolean above_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • after_stbox_tspatial

      public static boolean after_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • after_tspatial_stbox

      public static boolean after_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • after_tspatial_tspatial

      public static boolean after_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • back_stbox_tspatial

      public static boolean back_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • back_tspatial_stbox

      public static boolean back_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • back_tspatial_tspatial

      public static boolean back_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • before_stbox_tspatial

      public static boolean before_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • before_tspatial_stbox

      public static boolean before_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • before_tspatial_tspatial

      public static boolean before_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • below_stbox_tspatial

      public static boolean below_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • below_tspatial_stbox

      public static boolean below_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • below_tspatial_tspatial

      public static boolean below_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • front_stbox_tspatial

      public static boolean front_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • front_tspatial_stbox

      public static boolean front_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • front_tspatial_tspatial

      public static boolean front_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • left_stbox_tspatial

      public static boolean left_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • left_tspatial_stbox

      public static boolean left_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • left_tspatial_tspatial

      public static boolean left_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • overabove_stbox_tspatial

      public static boolean overabove_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • overabove_tspatial_stbox

      public static boolean overabove_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • overabove_tspatial_tspatial

      public static boolean overabove_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • overafter_stbox_tspatial

      public static boolean overafter_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • overafter_tspatial_stbox

      public static boolean overafter_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • overafter_tspatial_tspatial

      public static boolean overafter_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • overback_stbox_tspatial

      public static boolean overback_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • overback_tspatial_stbox

      public static boolean overback_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • overback_tspatial_tspatial

      public static boolean overback_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • overbefore_stbox_tspatial

      public static boolean overbefore_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • overbefore_tspatial_stbox

      public static boolean overbefore_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • overbefore_tspatial_tspatial

      public static boolean overbefore_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • overbelow_stbox_tspatial

      public static boolean overbelow_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • overbelow_tspatial_stbox

      public static boolean overbelow_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • overbelow_tspatial_tspatial

      public static boolean overbelow_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • overfront_stbox_tspatial

      public static boolean overfront_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • overfront_tspatial_stbox

      public static boolean overfront_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • overfront_tspatial_tspatial

      public static boolean overfront_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • overleft_stbox_tspatial

      public static boolean overleft_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • overleft_tspatial_stbox

      public static boolean overleft_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • overleft_tspatial_tspatial

      public static boolean overleft_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • overright_stbox_tspatial

      public static boolean overright_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • overright_tspatial_stbox

      public static boolean overright_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • overright_tspatial_tspatial

      public static boolean overright_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • right_stbox_tspatial

      public static boolean right_stbox_tspatial(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • right_tspatial_stbox

      public static boolean right_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • right_tspatial_tspatial

      public static boolean right_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • acontains_geo_tgeo

      public static int acontains_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • acontains_tgeo_geo

      public static int acontains_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • acontains_tgeo_tgeo

      public static int acontains_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • acovers_geo_tgeo

      public static int acovers_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • acovers_tgeo_geo

      public static int acovers_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • acovers_tgeo_tgeo

      public static int acovers_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • adisjoint_geo_tgeo

      public static int adisjoint_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • adisjoint_tgeo_geo

      public static int adisjoint_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • adisjoint_tgeo_tgeo

      public static int adisjoint_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • adwithin_geo_tgeo

      public static int adwithin_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp, double dist)
    • adwithin_tgeo_geo

      public static int adwithin_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, double dist)
    • adwithin_tgeo_tgeo

      public static int adwithin_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, double dist)
    • aintersects_geo_tgeo

      public static int aintersects_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • aintersects_tgeo_geo

      public static int aintersects_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • aintersects_tgeo_tgeo

      public static int aintersects_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • atouches_geo_tgeo

      public static int atouches_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • atouches_tgeo_geo

      public static int atouches_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • atouches_tgeo_tgeo

      public static int atouches_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • atouches_tpoint_geo

      public static int atouches_tpoint_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • atouches_geo_tpoint

      public static int atouches_geo_tpoint(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • econtains_geo_tgeo

      public static int econtains_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • econtains_tgeo_geo

      public static int econtains_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • econtains_tgeo_tgeo

      public static int econtains_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ecovers_geo_tgeo

      public static int ecovers_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • ecovers_tgeo_geo

      public static int ecovers_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • ecovers_tgeo_tgeo

      public static int ecovers_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • edisjoint_geo_tgeo

      public static int edisjoint_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • edisjoint_tgeo_geo

      public static int edisjoint_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • edisjoint_tgeo_tgeo

      public static int edisjoint_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • edwithin_geo_tgeo

      public static int edwithin_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp, double dist)
    • edwithin_tgeo_geo

      public static int edwithin_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, double dist)
    • edwithin_tgeo_tgeo

      public static int edwithin_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, double dist)
    • eintersects_geo_tgeo

      public static int eintersects_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • eintersects_tgeo_geo

      public static int eintersects_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • eintersects_tgeo_tgeo

      public static int eintersects_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • etouches_geo_tgeo

      public static int etouches_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • etouches_tgeo_geo

      public static int etouches_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • etouches_tgeo_tgeo

      public static int etouches_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • etouches_tpoint_geo

      public static int etouches_tpoint_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • etouches_geo_tpoint

      public static int etouches_geo_tpoint(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • tcontains_geo_tgeo

      public static jnr.ffi.Pointer tcontains_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • tcontains_tgeo_geo

      public static jnr.ffi.Pointer tcontains_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tcontains_tgeo_tgeo

      public static jnr.ffi.Pointer tcontains_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tcovers_geo_tgeo

      public static jnr.ffi.Pointer tcovers_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • tcovers_tgeo_geo

      public static jnr.ffi.Pointer tcovers_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tcovers_tgeo_tgeo

      public static jnr.ffi.Pointer tcovers_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tdisjoint_geo_tgeo

      public static jnr.ffi.Pointer tdisjoint_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • tdisjoint_tgeo_geo

      public static jnr.ffi.Pointer tdisjoint_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tdisjoint_tgeo_tgeo

      public static jnr.ffi.Pointer tdisjoint_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tdwithin_geo_tgeo

      public static jnr.ffi.Pointer tdwithin_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp, double dist)
    • tdwithin_tgeo_geo

      public static jnr.ffi.Pointer tdwithin_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, double dist)
    • tdwithin_tgeo_tgeo

      public static jnr.ffi.Pointer tdwithin_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, double dist)
    • tintersects_geo_tgeo

      public static jnr.ffi.Pointer tintersects_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • tintersects_tgeo_geo

      public static jnr.ffi.Pointer tintersects_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tintersects_tgeo_tgeo

      public static jnr.ffi.Pointer tintersects_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ttouches_geo_tgeo

      public static jnr.ffi.Pointer ttouches_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • ttouches_tgeo_geo

      public static jnr.ffi.Pointer ttouches_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • ttouches_tgeo_tgeo

      public static jnr.ffi.Pointer ttouches_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • edwithin_tgeoarr_tgeoarr

      public static jnr.ffi.Pointer edwithin_tgeoarr_tgeoarr(jnr.ffi.Pointer arr1, int count1, jnr.ffi.Pointer arr2, int count2, double dist, jnr.ffi.Pointer count)
    • adwithin_tgeoarr_tgeoarr

      public static jnr.ffi.Pointer adwithin_tgeoarr_tgeoarr(jnr.ffi.Pointer arr1, int count1, jnr.ffi.Pointer arr2, int count2, double dist, jnr.ffi.Pointer count)
    • eintersects_tgeoarr_tgeoarr

      public static jnr.ffi.Pointer eintersects_tgeoarr_tgeoarr(jnr.ffi.Pointer arr1, int count1, jnr.ffi.Pointer arr2, int count2, jnr.ffi.Pointer count)
    • aintersects_tgeoarr_tgeoarr

      public static jnr.ffi.Pointer aintersects_tgeoarr_tgeoarr(jnr.ffi.Pointer arr1, int count1, jnr.ffi.Pointer arr2, int count2, jnr.ffi.Pointer count)
    • etouches_tgeoarr_tgeoarr

      public static jnr.ffi.Pointer etouches_tgeoarr_tgeoarr(jnr.ffi.Pointer arr1, int count1, jnr.ffi.Pointer arr2, int count2, jnr.ffi.Pointer count)
    • atouches_tgeoarr_tgeoarr

      public static jnr.ffi.Pointer atouches_tgeoarr_tgeoarr(jnr.ffi.Pointer arr1, int count1, jnr.ffi.Pointer arr2, int count2, jnr.ffi.Pointer count)
    • edisjoint_tgeoarr_tgeoarr

      public static jnr.ffi.Pointer edisjoint_tgeoarr_tgeoarr(jnr.ffi.Pointer arr1, int count1, jnr.ffi.Pointer arr2, int count2, jnr.ffi.Pointer count)
    • adisjoint_tgeoarr_tgeoarr

      public static jnr.ffi.Pointer adisjoint_tgeoarr_tgeoarr(jnr.ffi.Pointer arr1, int count1, jnr.ffi.Pointer arr2, int count2, jnr.ffi.Pointer count)
    • tdwithin_tgeoarr_tgeoarr

      public static jnr.ffi.Pointer tdwithin_tgeoarr_tgeoarr(jnr.ffi.Pointer arr1, int count1, jnr.ffi.Pointer arr2, int count2, double dist, jnr.ffi.Pointer count, jnr.ffi.Pointer periods)
    • tintersects_tgeoarr_tgeoarr

      public static jnr.ffi.Pointer tintersects_tgeoarr_tgeoarr(jnr.ffi.Pointer arr1, int count1, jnr.ffi.Pointer arr2, int count2, jnr.ffi.Pointer count, jnr.ffi.Pointer periods)
    • ttouches_tgeoarr_tgeoarr

      public static jnr.ffi.Pointer ttouches_tgeoarr_tgeoarr(jnr.ffi.Pointer arr1, int count1, jnr.ffi.Pointer arr2, int count2, jnr.ffi.Pointer count, jnr.ffi.Pointer periods)
    • tdisjoint_tgeoarr_tgeoarr

      public static jnr.ffi.Pointer tdisjoint_tgeoarr_tgeoarr(jnr.ffi.Pointer arr1, int count1, jnr.ffi.Pointer arr2, int count2, jnr.ffi.Pointer count, jnr.ffi.Pointer periods)
    • tdistance_tgeo_geo

      public static jnr.ffi.Pointer tdistance_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tdistance_tgeo_tgeo

      public static jnr.ffi.Pointer tdistance_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • nad_stbox_geo

      public static double nad_stbox_geo(jnr.ffi.Pointer box, jnr.ffi.Pointer gs)
    • nad_stbox_stbox

      public static double nad_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • stbox_spatial_distance

      public static double stbox_spatial_distance(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • nad_tgeo_geo

      public static double nad_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • nad_tgeo_stbox

      public static double nad_tgeo_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • nad_tgeo_tgeo

      public static double nad_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • nai_tgeo_geo

      public static jnr.ffi.Pointer nai_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • nai_tgeo_tgeo

      public static jnr.ffi.Pointer nai_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • shortestline_tgeo_geo

      public static jnr.ffi.Pointer shortestline_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • shortestline_tgeo_tgeo

      public static jnr.ffi.Pointer shortestline_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • mindistance_tgeo_tgeo

      public static double mindistance_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, double threshold)
    • mindistance_tgeoarr_tgeoarr

      public static double mindistance_tgeoarr_tgeoarr(jnr.ffi.Pointer arr1, int count1, jnr.ffi.Pointer arr2, int count2)
    • tpoint_tcentroid_finalfn

      public static jnr.ffi.Pointer tpoint_tcentroid_finalfn(jnr.ffi.Pointer state)
    • tpoint_tcentroid_transfn

      public static jnr.ffi.Pointer tpoint_tcentroid_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp)
    • tspatial_extent_transfn

      public static jnr.ffi.Pointer tspatial_extent_transfn(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • stbox_get_space_tile

      public static jnr.ffi.Pointer stbox_get_space_tile(jnr.ffi.Pointer point, double xsize, double ysize, double zsize, jnr.ffi.Pointer sorigin)
    • stbox_get_space_time_tile

      public static jnr.ffi.Pointer stbox_get_space_time_tile(jnr.ffi.Pointer point, OffsetDateTime t, double xsize, double ysize, double zsize, jnr.ffi.Pointer duration, jnr.ffi.Pointer sorigin, OffsetDateTime torigin)
    • stbox_get_time_tile

      public static jnr.ffi.Pointer stbox_get_time_tile(OffsetDateTime t, jnr.ffi.Pointer duration, OffsetDateTime torigin)
    • stbox_space_tiles

      public static jnr.ffi.Pointer stbox_space_tiles(jnr.ffi.Pointer bounds, double xsize, double ysize, double zsize, jnr.ffi.Pointer sorigin, boolean border_inc, jnr.ffi.Pointer count)
    • stbox_space_time_tiles

      public static jnr.ffi.Pointer stbox_space_time_tiles(jnr.ffi.Pointer bounds, double xsize, double ysize, double zsize, jnr.ffi.Pointer duration, jnr.ffi.Pointer sorigin, OffsetDateTime torigin, boolean border_inc, jnr.ffi.Pointer count)
    • stbox_time_tiles

      public static jnr.ffi.Pointer stbox_time_tiles(jnr.ffi.Pointer bounds, jnr.ffi.Pointer duration, OffsetDateTime torigin, boolean border_inc, jnr.ffi.Pointer count)
    • tgeo_space_split

      public static GeneratedFunctions.SpaceSplit tgeo_space_split(jnr.ffi.Pointer temp, double xsize, double ysize, double zsize, jnr.ffi.Pointer sorigin, boolean bitmatrix, boolean border_inc)
    • tgeo_space_time_split

      public static GeneratedFunctions.SpaceTimeSplit tgeo_space_time_split(jnr.ffi.Pointer temp, double xsize, double ysize, double zsize, jnr.ffi.Pointer duration, jnr.ffi.Pointer sorigin, OffsetDateTime torigin, boolean bitmatrix, boolean border_inc)
    • geo_cluster_kmeans

      public static jnr.ffi.Pointer geo_cluster_kmeans(jnr.ffi.Pointer geoms, int ngeoms, int k, jnr.ffi.Pointer count)
    • geo_cluster_dbscan

      public static jnr.ffi.Pointer geo_cluster_dbscan(jnr.ffi.Pointer geoms, int ngeoms, double tolerance, int minpoints, jnr.ffi.Pointer count)
    • geo_cluster_intersecting

      public static jnr.ffi.Pointer geo_cluster_intersecting(jnr.ffi.Pointer geoms, int ngeoms, jnr.ffi.Pointer count)
    • geo_cluster_within

      public static jnr.ffi.Pointer geo_cluster_within(jnr.ffi.Pointer geoms, int ngeoms, double tolerance, jnr.ffi.Pointer count)
    • cbuffer_as_ewkt

      public static String cbuffer_as_ewkt(jnr.ffi.Pointer cb, int maxdd)
    • cbuffer_as_hexwkb

      public static String cbuffer_as_hexwkb(jnr.ffi.Pointer cb, byte variant)
    • cbuffer_as_text

      public static String cbuffer_as_text(jnr.ffi.Pointer cb, int maxdd)
    • cbuffer_as_wkb

      public static jnr.ffi.Pointer cbuffer_as_wkb(jnr.ffi.Pointer cb, byte variant)
    • cbuffer_from_hexwkb

      public static jnr.ffi.Pointer cbuffer_from_hexwkb(String hexwkb)
    • cbuffer_from_wkb

      public static jnr.ffi.Pointer cbuffer_from_wkb(jnr.ffi.Pointer wkb, long size)
    • cbuffer_in

      public static jnr.ffi.Pointer cbuffer_in(String str)
    • cbuffer_out

      public static String cbuffer_out(jnr.ffi.Pointer cb, int maxdd)
    • cbuffer_copy

      public static jnr.ffi.Pointer cbuffer_copy(jnr.ffi.Pointer cb)
    • cbuffer_make

      public static jnr.ffi.Pointer cbuffer_make(jnr.ffi.Pointer point, double radius)
    • cbuffer_to_geom

      public static jnr.ffi.Pointer cbuffer_to_geom(jnr.ffi.Pointer cb)
    • cbuffer_to_stbox

      public static jnr.ffi.Pointer cbuffer_to_stbox(jnr.ffi.Pointer cb)
    • cbufferarr_to_geom

      public static jnr.ffi.Pointer cbufferarr_to_geom(jnr.ffi.Pointer cbarr, int count)
    • geom_to_cbuffer

      public static jnr.ffi.Pointer geom_to_cbuffer(jnr.ffi.Pointer gs)
    • cbuffer_hash

      public static int cbuffer_hash(jnr.ffi.Pointer cb)
    • cbuffer_hash_extended

      public static long cbuffer_hash_extended(jnr.ffi.Pointer cb, long seed)
    • cbuffer_point

      public static jnr.ffi.Pointer cbuffer_point(jnr.ffi.Pointer cb)
    • cbuffer_radius

      public static double cbuffer_radius(jnr.ffi.Pointer cb)
    • cbuffer_round

      public static jnr.ffi.Pointer cbuffer_round(jnr.ffi.Pointer cb, int maxdd)
    • cbufferarr_round

      public static jnr.ffi.Pointer cbufferarr_round(jnr.ffi.Pointer cbarr, int count, int maxdd)
    • cbuffer_set_srid

      public static void cbuffer_set_srid(jnr.ffi.Pointer cb, int srid)
    • cbuffer_srid

      public static int cbuffer_srid(jnr.ffi.Pointer cb)
    • cbuffer_transform

      public static jnr.ffi.Pointer cbuffer_transform(jnr.ffi.Pointer cb, int srid)
    • cbuffer_transform_pipeline

      public static jnr.ffi.Pointer cbuffer_transform_pipeline(jnr.ffi.Pointer cb, String pipelinestr, int srid, boolean is_forward)
    • contains_cbuffer_cbuffer

      public static int contains_cbuffer_cbuffer(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • covers_cbuffer_cbuffer

      public static int covers_cbuffer_cbuffer(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • disjoint_cbuffer_cbuffer

      public static int disjoint_cbuffer_cbuffer(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • dwithin_cbuffer_cbuffer

      public static int dwithin_cbuffer_cbuffer(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2, double dist)
    • intersects_cbuffer_cbuffer

      public static int intersects_cbuffer_cbuffer(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • touches_cbuffer_cbuffer

      public static int touches_cbuffer_cbuffer(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • cbuffer_tstzspan_to_stbox

      public static jnr.ffi.Pointer cbuffer_tstzspan_to_stbox(jnr.ffi.Pointer cb, jnr.ffi.Pointer s)
    • cbuffer_timestamptz_to_stbox

      public static jnr.ffi.Pointer cbuffer_timestamptz_to_stbox(jnr.ffi.Pointer cb, OffsetDateTime t)
    • distance_cbuffer_cbuffer

      public static double distance_cbuffer_cbuffer(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • distance_cbuffer_geo

      public static double distance_cbuffer_geo(jnr.ffi.Pointer cb, jnr.ffi.Pointer gs)
    • distance_cbuffer_stbox

      public static double distance_cbuffer_stbox(jnr.ffi.Pointer cb, jnr.ffi.Pointer box)
    • nad_cbuffer_stbox

      public static double nad_cbuffer_stbox(jnr.ffi.Pointer cb, jnr.ffi.Pointer box)
    • cbuffer_cmp

      public static int cbuffer_cmp(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • cbuffer_eq

      public static boolean cbuffer_eq(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • cbuffer_ge

      public static boolean cbuffer_ge(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • cbuffer_gt

      public static boolean cbuffer_gt(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • cbuffer_le

      public static boolean cbuffer_le(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • cbuffer_lt

      public static boolean cbuffer_lt(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • cbuffer_ne

      public static boolean cbuffer_ne(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • cbuffer_nsame

      public static boolean cbuffer_nsame(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • cbuffer_same

      public static boolean cbuffer_same(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • cbufferset_in

      public static jnr.ffi.Pointer cbufferset_in(String str)
    • cbufferset_out

      public static String cbufferset_out(jnr.ffi.Pointer s, int maxdd)
    • cbufferset_make

      public static jnr.ffi.Pointer cbufferset_make(jnr.ffi.Pointer values, int count)
    • cbuffer_to_set

      public static jnr.ffi.Pointer cbuffer_to_set(jnr.ffi.Pointer cb)
    • cbufferset_end_value

      public static jnr.ffi.Pointer cbufferset_end_value(jnr.ffi.Pointer s)
    • cbufferset_start_value

      public static jnr.ffi.Pointer cbufferset_start_value(jnr.ffi.Pointer s)
    • cbufferset_value_n

      public static jnr.ffi.Pointer cbufferset_value_n(jnr.ffi.Pointer s, int n)
    • cbufferset_values

      public static jnr.ffi.Pointer cbufferset_values(jnr.ffi.Pointer s, jnr.ffi.Pointer count)
    • cbuffer_union_transfn

      public static jnr.ffi.Pointer cbuffer_union_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer cb)
    • contained_cbuffer_set

      public static boolean contained_cbuffer_set(jnr.ffi.Pointer cb, jnr.ffi.Pointer s)
    • contains_set_cbuffer

      public static boolean contains_set_cbuffer(jnr.ffi.Pointer s, jnr.ffi.Pointer cb)
    • intersection_cbuffer_set

      public static jnr.ffi.Pointer intersection_cbuffer_set(jnr.ffi.Pointer cb, jnr.ffi.Pointer s)
    • intersection_set_cbuffer

      public static jnr.ffi.Pointer intersection_set_cbuffer(jnr.ffi.Pointer s, jnr.ffi.Pointer cb)
    • minus_cbuffer_set

      public static jnr.ffi.Pointer minus_cbuffer_set(jnr.ffi.Pointer cb, jnr.ffi.Pointer s)
    • minus_set_cbuffer

      public static jnr.ffi.Pointer minus_set_cbuffer(jnr.ffi.Pointer s, jnr.ffi.Pointer cb)
    • union_cbuffer_set

      public static jnr.ffi.Pointer union_cbuffer_set(jnr.ffi.Pointer cb, jnr.ffi.Pointer s)
    • union_set_cbuffer

      public static jnr.ffi.Pointer union_set_cbuffer(jnr.ffi.Pointer s, jnr.ffi.Pointer cb)
    • tcbuffer_in

      public static jnr.ffi.Pointer tcbuffer_in(String str)
    • tcbuffer_from_mfjson

      public static jnr.ffi.Pointer tcbuffer_from_mfjson(String mfjson)
    • tcbufferinst_make

      public static jnr.ffi.Pointer tcbufferinst_make(jnr.ffi.Pointer cb, OffsetDateTime t)
    • tcbuffer_make

      public static jnr.ffi.Pointer tcbuffer_make(jnr.ffi.Pointer tpoint, jnr.ffi.Pointer tfloat)
    • tcbuffer_from_base_temp

      public static jnr.ffi.Pointer tcbuffer_from_base_temp(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp)
    • tcbufferseq_from_base_tstzset

      public static jnr.ffi.Pointer tcbufferseq_from_base_tstzset(jnr.ffi.Pointer cb, jnr.ffi.Pointer s)
    • tcbufferseq_from_base_tstzspan

      public static jnr.ffi.Pointer tcbufferseq_from_base_tstzspan(jnr.ffi.Pointer cb, jnr.ffi.Pointer s, int interp)
    • tcbufferseqset_from_base_tstzspanset

      public static jnr.ffi.Pointer tcbufferseqset_from_base_tstzspanset(jnr.ffi.Pointer cb, jnr.ffi.Pointer ss, int interp)
    • tcbuffer_end_value

      public static jnr.ffi.Pointer tcbuffer_end_value(jnr.ffi.Pointer temp)
    • tcbuffer_points

      public static jnr.ffi.Pointer tcbuffer_points(jnr.ffi.Pointer temp)
    • tcbuffer_radius

      public static jnr.ffi.Pointer tcbuffer_radius(jnr.ffi.Pointer temp)
    • tcbuffer_traversed_area

      public static jnr.ffi.Pointer tcbuffer_traversed_area(jnr.ffi.Pointer temp, boolean unary_union)
    • tcbuffer_convex_hull

      public static jnr.ffi.Pointer tcbuffer_convex_hull(jnr.ffi.Pointer temp)
    • tcbuffer_start_value

      public static jnr.ffi.Pointer tcbuffer_start_value(jnr.ffi.Pointer temp)
    • tcbuffer_value_at_timestamptz

      public static jnr.ffi.Pointer tcbuffer_value_at_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean strict)
    • tcbuffer_value_n

      public static jnr.ffi.Pointer tcbuffer_value_n(jnr.ffi.Pointer temp, int n)
    • tcbuffer_values

      public static jnr.ffi.Pointer tcbuffer_values(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • tcbuffer_to_tfloat

      public static jnr.ffi.Pointer tcbuffer_to_tfloat(jnr.ffi.Pointer temp)
    • tcbuffer_to_tgeompoint

      public static jnr.ffi.Pointer tcbuffer_to_tgeompoint(jnr.ffi.Pointer temp)
    • tgeometry_to_tcbuffer

      public static jnr.ffi.Pointer tgeometry_to_tcbuffer(jnr.ffi.Pointer temp)
    • tcbuffer_expand

      public static jnr.ffi.Pointer tcbuffer_expand(jnr.ffi.Pointer temp, double dist)
    • tcbuffer_at_cbuffer

      public static jnr.ffi.Pointer tcbuffer_at_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • tcbuffer_at_geom

      public static jnr.ffi.Pointer tcbuffer_at_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tcbuffer_at_stbox

      public static jnr.ffi.Pointer tcbuffer_at_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box, boolean border_inc)
    • tcbuffer_minus_cbuffer

      public static jnr.ffi.Pointer tcbuffer_minus_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • tcbuffer_minus_geom

      public static jnr.ffi.Pointer tcbuffer_minus_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tcbuffer_minus_stbox

      public static jnr.ffi.Pointer tcbuffer_minus_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box, boolean border_inc)
    • tdistance_tcbuffer_cbuffer

      public static jnr.ffi.Pointer tdistance_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • tdistance_tcbuffer_geo

      public static jnr.ffi.Pointer tdistance_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tdistance_tcbuffer_tcbuffer

      public static jnr.ffi.Pointer tdistance_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • nad_tcbuffer_cbuffer

      public static double nad_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • nad_tcbuffer_geo

      public static double nad_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • nad_tcbuffer_stbox

      public static double nad_tcbuffer_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • nad_tcbuffer_tcbuffer

      public static double nad_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • mindistance_tcbuffer_tcbuffer

      public static double mindistance_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, double threshold)
    • nai_tcbuffer_cbuffer

      public static jnr.ffi.Pointer nai_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • nai_tcbuffer_geo

      public static jnr.ffi.Pointer nai_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • nai_tcbuffer_tcbuffer

      public static jnr.ffi.Pointer nai_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • shortestline_tcbuffer_cbuffer

      public static jnr.ffi.Pointer shortestline_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • shortestline_tcbuffer_geo

      public static jnr.ffi.Pointer shortestline_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • shortestline_tcbuffer_tcbuffer

      public static jnr.ffi.Pointer shortestline_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • always_eq_cbuffer_tcbuffer

      public static int always_eq_cbuffer_tcbuffer(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp)
    • always_eq_tcbuffer_cbuffer

      public static int always_eq_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • always_eq_tcbuffer_tcbuffer

      public static int always_eq_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • always_ne_cbuffer_tcbuffer

      public static int always_ne_cbuffer_tcbuffer(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp)
    • always_ne_tcbuffer_cbuffer

      public static int always_ne_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • always_ne_tcbuffer_tcbuffer

      public static int always_ne_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ever_eq_cbuffer_tcbuffer

      public static int ever_eq_cbuffer_tcbuffer(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp)
    • ever_eq_tcbuffer_cbuffer

      public static int ever_eq_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • ever_eq_tcbuffer_tcbuffer

      public static int ever_eq_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ever_ne_cbuffer_tcbuffer

      public static int ever_ne_cbuffer_tcbuffer(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp)
    • ever_ne_tcbuffer_cbuffer

      public static int ever_ne_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • ever_ne_tcbuffer_tcbuffer

      public static int ever_ne_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • teq_cbuffer_tcbuffer

      public static jnr.ffi.Pointer teq_cbuffer_tcbuffer(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp)
    • teq_tcbuffer_cbuffer

      public static jnr.ffi.Pointer teq_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • tne_cbuffer_tcbuffer

      public static jnr.ffi.Pointer tne_cbuffer_tcbuffer(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp)
    • tne_tcbuffer_cbuffer

      public static jnr.ffi.Pointer tne_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • acontains_cbuffer_tcbuffer

      public static int acontains_cbuffer_tcbuffer(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp)
    • acontains_geo_tcbuffer

      public static int acontains_geo_tcbuffer(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • acontains_tcbuffer_cbuffer

      public static int acontains_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • acontains_tcbuffer_geo

      public static int acontains_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • acontains_tcbuffer_tcbuffer

      public static int acontains_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • acovers_cbuffer_tcbuffer

      public static int acovers_cbuffer_tcbuffer(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp)
    • acovers_geo_tcbuffer

      public static int acovers_geo_tcbuffer(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • acovers_tcbuffer_cbuffer

      public static int acovers_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • acovers_tcbuffer_geo

      public static int acovers_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • acovers_tcbuffer_tcbuffer

      public static int acovers_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • adisjoint_tcbuffer_geo

      public static int adisjoint_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • adisjoint_tcbuffer_cbuffer

      public static int adisjoint_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • adisjoint_tcbuffer_tcbuffer

      public static int adisjoint_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • adwithin_tcbuffer_geo

      public static int adwithin_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, double dist)
    • adwithin_tcbuffer_cbuffer

      public static int adwithin_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb, double dist)
    • adwithin_tcbuffer_tcbuffer

      public static int adwithin_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, double dist)
    • aintersects_tcbuffer_geo

      public static int aintersects_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • aintersects_tcbuffer_cbuffer

      public static int aintersects_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • aintersects_tcbuffer_tcbuffer

      public static int aintersects_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • atouches_tcbuffer_geo

      public static int atouches_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • atouches_tcbuffer_cbuffer

      public static int atouches_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • atouches_tcbuffer_tcbuffer

      public static int atouches_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • econtains_cbuffer_tcbuffer

      public static int econtains_cbuffer_tcbuffer(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp)
    • econtains_tcbuffer_cbuffer

      public static int econtains_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • econtains_tcbuffer_geo

      public static int econtains_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • econtains_tcbuffer_tcbuffer

      public static int econtains_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ecovers_cbuffer_tcbuffer

      public static int ecovers_cbuffer_tcbuffer(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp)
    • ecovers_geo_tcbuffer

      public static int ecovers_geo_tcbuffer(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • ecovers_tcbuffer_cbuffer

      public static int ecovers_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • ecovers_tcbuffer_geo

      public static int ecovers_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • ecovers_tcbuffer_tcbuffer

      public static int ecovers_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • edisjoint_tcbuffer_geo

      public static int edisjoint_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • edisjoint_tcbuffer_cbuffer

      public static int edisjoint_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • edwithin_tcbuffer_geo

      public static int edwithin_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, double dist)
    • edwithin_tcbuffer_cbuffer

      public static int edwithin_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb, double dist)
    • edwithin_tcbuffer_tcbuffer

      public static int edwithin_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, double dist)
    • eintersects_tcbuffer_geo

      public static int eintersects_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • eintersects_tcbuffer_cbuffer

      public static int eintersects_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • eintersects_tcbuffer_tcbuffer

      public static int eintersects_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • etouches_tcbuffer_geo

      public static int etouches_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • etouches_tcbuffer_cbuffer

      public static int etouches_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • etouches_tcbuffer_tcbuffer

      public static int etouches_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tcontains_cbuffer_tcbuffer

      public static jnr.ffi.Pointer tcontains_cbuffer_tcbuffer(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp)
    • tcontains_geo_tcbuffer

      public static jnr.ffi.Pointer tcontains_geo_tcbuffer(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • tcontains_tcbuffer_geo

      public static jnr.ffi.Pointer tcontains_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tcontains_tcbuffer_cbuffer

      public static jnr.ffi.Pointer tcontains_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • tcontains_tcbuffer_tcbuffer

      public static jnr.ffi.Pointer tcontains_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tcovers_cbuffer_tcbuffer

      public static jnr.ffi.Pointer tcovers_cbuffer_tcbuffer(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp)
    • tcovers_geo_tcbuffer

      public static jnr.ffi.Pointer tcovers_geo_tcbuffer(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • tcovers_tcbuffer_geo

      public static jnr.ffi.Pointer tcovers_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tcovers_tcbuffer_cbuffer

      public static jnr.ffi.Pointer tcovers_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • tcovers_tcbuffer_tcbuffer

      public static jnr.ffi.Pointer tcovers_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tdwithin_geo_tcbuffer

      public static jnr.ffi.Pointer tdwithin_geo_tcbuffer(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp, double dist)
    • tdwithin_tcbuffer_geo

      public static jnr.ffi.Pointer tdwithin_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, double dist)
    • tdwithin_tcbuffer_cbuffer

      public static jnr.ffi.Pointer tdwithin_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb, double dist)
    • tdwithin_tcbuffer_tcbuffer

      public static jnr.ffi.Pointer tdwithin_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, double dist)
    • tdisjoint_cbuffer_tcbuffer

      public static jnr.ffi.Pointer tdisjoint_cbuffer_tcbuffer(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp)
    • tdisjoint_geo_tcbuffer

      public static jnr.ffi.Pointer tdisjoint_geo_tcbuffer(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • tdisjoint_tcbuffer_geo

      public static jnr.ffi.Pointer tdisjoint_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tdisjoint_tcbuffer_cbuffer

      public static jnr.ffi.Pointer tdisjoint_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • tdisjoint_tcbuffer_tcbuffer

      public static jnr.ffi.Pointer tdisjoint_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tintersects_cbuffer_tcbuffer

      public static jnr.ffi.Pointer tintersects_cbuffer_tcbuffer(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp)
    • tintersects_geo_tcbuffer

      public static jnr.ffi.Pointer tintersects_geo_tcbuffer(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • tintersects_tcbuffer_geo

      public static jnr.ffi.Pointer tintersects_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tintersects_tcbuffer_cbuffer

      public static jnr.ffi.Pointer tintersects_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • tintersects_tcbuffer_tcbuffer

      public static jnr.ffi.Pointer tintersects_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ttouches_geo_tcbuffer

      public static jnr.ffi.Pointer ttouches_geo_tcbuffer(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • ttouches_tcbuffer_geo

      public static jnr.ffi.Pointer ttouches_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • ttouches_cbuffer_tcbuffer

      public static jnr.ffi.Pointer ttouches_cbuffer_tcbuffer(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp)
    • ttouches_tcbuffer_cbuffer

      public static jnr.ffi.Pointer ttouches_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • ttouches_tcbuffer_tcbuffer

      public static jnr.ffi.Pointer ttouches_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ensure_valid_cbuffer_cbuffer

      public static boolean ensure_valid_cbuffer_cbuffer(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • ensure_valid_cbuffer_geo

      public static boolean ensure_valid_cbuffer_geo(jnr.ffi.Pointer cb, jnr.ffi.Pointer gs)
    • ensure_valid_cbuffer_stbox

      public static boolean ensure_valid_cbuffer_stbox(jnr.ffi.Pointer cb, jnr.ffi.Pointer box)
    • ensure_valid_cbufferset_cbuffer

      public static boolean ensure_valid_cbufferset_cbuffer(jnr.ffi.Pointer s, jnr.ffi.Pointer cb)
    • cbuffer_collinear

      public static boolean cbuffer_collinear(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2, jnr.ffi.Pointer cbuf3, double ratio)
    • cbuffersegm_interpolate

      public static jnr.ffi.Pointer cbuffersegm_interpolate(jnr.ffi.Pointer start, jnr.ffi.Pointer end, jnr.ffi.Pointer ratio)
    • cbuffersegm_locate

      public static jnr.ffi.Pointer cbuffersegm_locate(jnr.ffi.Pointer start, jnr.ffi.Pointer end, jnr.ffi.Pointer value)
    • cbuffer_parse

      public static jnr.ffi.Pointer cbuffer_parse(jnr.ffi.Pointer str, boolean end)
    • cbuffer_wkt_out

      public static String cbuffer_wkt_out(jnr.ffi.Pointer value, int maxdd, boolean extended)
    • cbuffer_point_p

      public static jnr.ffi.Pointer cbuffer_point_p(jnr.ffi.Pointer cb)
    • datum_cbuffer_round

      public static jnr.ffi.Pointer datum_cbuffer_round(jnr.ffi.Pointer buffer, jnr.ffi.Pointer size)
    • cbuffer_transf_pj

      public static jnr.ffi.Pointer cbuffer_transf_pj(jnr.ffi.Pointer cb, int srid_to, jnr.ffi.Pointer pj)
    • cbuffer_distance

      public static double cbuffer_distance(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • datum_cbuffer_distance

      public static jnr.ffi.Pointer datum_cbuffer_distance(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • cbuffersegm_distance_turnpt

      public static int cbuffersegm_distance_turnpt(jnr.ffi.Pointer start1, jnr.ffi.Pointer end1, jnr.ffi.Pointer start2, jnr.ffi.Pointer end2, OffsetDateTime lower, OffsetDateTime upper, jnr.ffi.Pointer t1, jnr.ffi.Pointer t2)
    • cbuffer_contains

      public static int cbuffer_contains(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • cbuffer_covers

      public static int cbuffer_covers(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • cbuffer_disjoint

      public static int cbuffer_disjoint(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • cbuffer_intersects

      public static int cbuffer_intersects(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • cbuffer_dwithin

      public static int cbuffer_dwithin(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2, double dist)
    • cbuffer_touches

      public static int cbuffer_touches(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • datum_cbuffer_contains

      public static jnr.ffi.Pointer datum_cbuffer_contains(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • datum_cbuffer_covers

      public static jnr.ffi.Pointer datum_cbuffer_covers(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • datum_cbuffer_disjoint

      public static jnr.ffi.Pointer datum_cbuffer_disjoint(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • datum_cbuffer_intersects

      public static jnr.ffi.Pointer datum_cbuffer_intersects(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • datum_cbuffer_dwithin

      public static jnr.ffi.Pointer datum_cbuffer_dwithin(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2, jnr.ffi.Pointer dist)
    • datum_cbuffer_touches

      public static jnr.ffi.Pointer datum_cbuffer_touches(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2)
    • temptype_subtype

      public static boolean temptype_subtype(int subtype)
    • temptype_subtype_all

      public static boolean temptype_subtype_all(int subtype)
    • tempsubtype_name

      public static String tempsubtype_name(int subtype)
    • tempsubtype_from_string

      public static boolean tempsubtype_from_string(String str, jnr.ffi.Pointer subtype)
    • meosoper_name

      public static String meosoper_name(int oper)
    • meosoper_from_string

      public static int meosoper_from_string(String name)
    • interptype_name

      public static String interptype_name(int interp)
    • interptype_from_string

      public static int interptype_from_string(String interp_str)
    • meos_typeof_hexwkb

      public static int meos_typeof_hexwkb(String hexwkb)
    • meostype_name

      public static String meostype_name(int type)
    • temptype_basetype

      public static int temptype_basetype(int type)
    • settype_basetype

      public static int settype_basetype(int type)
    • spantype_basetype

      public static int spantype_basetype(int type)
    • spantype_spansettype

      public static int spantype_spansettype(int type)
    • spansettype_spantype

      public static int spansettype_spantype(int type)
    • basetype_spantype

      public static int basetype_spantype(int type)
    • basetype_settype

      public static int basetype_settype(int type)
    • tnumber_basetype

      public static boolean tnumber_basetype(int type)
    • geo_basetype

      public static boolean geo_basetype(int type)
    • meos_basetype

      public static boolean meos_basetype(int type)
    • alphanum_basetype

      public static boolean alphanum_basetype(int type)
    • alphanum_temptype

      public static boolean alphanum_temptype(int type)
    • time_type

      public static boolean time_type(int type)
    • set_basetype

      public static boolean set_basetype(int type)
    • set_type

      public static boolean set_type(int type)
    • numset_type

      public static boolean numset_type(int type)
    • ensure_numset_type

      public static boolean ensure_numset_type(int type)
    • timeset_type

      public static boolean timeset_type(int type)
    • set_spantype

      public static boolean set_spantype(int type)
    • ensure_set_spantype

      public static boolean ensure_set_spantype(int type)
    • alphanumset_type

      public static boolean alphanumset_type(int settype)
    • geoset_type

      public static boolean geoset_type(int type)
    • ensure_geoset_type

      public static boolean ensure_geoset_type(int type)
    • spatialset_type

      public static boolean spatialset_type(int type)
    • ensure_spatialset_type

      public static boolean ensure_spatialset_type(int type)
    • pointcloud_basetype

      public static boolean pointcloud_basetype(int type)
    • pointcloudset_type

      public static boolean pointcloudset_type(int type)
    • tpointcloud_temptype

      public static boolean tpointcloud_temptype(int type)
    • span_basetype

      public static boolean span_basetype(int type)
    • span_canon_basetype

      public static boolean span_canon_basetype(int type)
    • span_type

      public static boolean span_type(int type)
    • type_span_bbox

      public static boolean type_span_bbox(int type)
    • span_tbox_type

      public static boolean span_tbox_type(int type)
    • ensure_span_tbox_type

      public static boolean ensure_span_tbox_type(int type)
    • numspan_basetype

      public static boolean numspan_basetype(int type)
    • numspan_type

      public static boolean numspan_type(int type)
    • ensure_numspan_type

      public static boolean ensure_numspan_type(int type)
    • timespan_basetype

      public static boolean timespan_basetype(int type)
    • timespan_type

      public static boolean timespan_type(int type)
    • spanset_type

      public static boolean spanset_type(int type)
    • timespanset_type

      public static boolean timespanset_type(int type)
    • ensure_timespanset_type

      public static boolean ensure_timespanset_type(int type)
    • temporal_type

      public static boolean temporal_type(int type)
    • temporal_basetype

      public static boolean temporal_basetype(int type)
    • temptype_supports_linear

      public static boolean temptype_supports_linear(int type)
    • basetype_byvalue

      public static boolean basetype_byvalue(int type)
    • basetype_varlength

      public static boolean basetype_varlength(int type)
    • meostype_length

      public static short meostype_length(int type)
    • talphanum_type

      public static boolean talphanum_type(int type)
    • talpha_type

      public static boolean talpha_type(int type)
    • tnumber_type

      public static boolean tnumber_type(int type)
    • ensure_tnumber_type

      public static boolean ensure_tnumber_type(int type)
    • ensure_tnumber_basetype

      public static boolean ensure_tnumber_basetype(int type)
    • tnumber_spantype

      public static boolean tnumber_spantype(int type)
    • spatial_basetype

      public static boolean spatial_basetype(int type)
    • tspatial_type

      public static boolean tspatial_type(int type)
    • ensure_tspatial_type

      public static boolean ensure_tspatial_type(int type)
    • tpoint_type

      public static boolean tpoint_type(int type)
    • ensure_tpoint_type

      public static boolean ensure_tpoint_type(int type)
    • tgeo_type

      public static boolean tgeo_type(int type)
    • ensure_tgeo_type

      public static boolean ensure_tgeo_type(int type)
    • tgeo_type_all

      public static boolean tgeo_type_all(int type)
    • ensure_tgeo_type_all

      public static boolean ensure_tgeo_type_all(int type)
    • tgeometry_type

      public static boolean tgeometry_type(int type)
    • ensure_tgeometry_type

      public static boolean ensure_tgeometry_type(int type)
    • tgeodetic_type

      public static boolean tgeodetic_type(int type)
    • ensure_tgeodetic_type

      public static boolean ensure_tgeodetic_type(int type)
    • ensure_tnumber_tpoint_type

      public static boolean ensure_tnumber_tpoint_type(int type)
    • gsl_get_generation_rng

      public static jnr.ffi.Pointer gsl_get_generation_rng()
    • gsl_get_aggregation_rng

      public static jnr.ffi.Pointer gsl_get_aggregation_rng()
    • datum_ceil

      public static jnr.ffi.Pointer datum_ceil(jnr.ffi.Pointer d)
    • datum_degrees

      public static jnr.ffi.Pointer datum_degrees(jnr.ffi.Pointer d, jnr.ffi.Pointer normalize)
    • datum_float_round

      public static jnr.ffi.Pointer datum_float_round(jnr.ffi.Pointer value, jnr.ffi.Pointer size)
    • datum_floor

      public static jnr.ffi.Pointer datum_floor(jnr.ffi.Pointer d)
    • datum_hash

      public static int datum_hash(jnr.ffi.Pointer d, int basetype)
    • datum_hash_extended

      public static long datum_hash_extended(jnr.ffi.Pointer d, int basetype, long seed)
    • datum_radians

      public static jnr.ffi.Pointer datum_radians(jnr.ffi.Pointer d)
    • floatspan_round_set

      public static void floatspan_round_set(jnr.ffi.Pointer s, int maxdd, jnr.ffi.Pointer result)
    • set_in

      public static jnr.ffi.Pointer set_in(String str, int basetype)
    • set_out

      public static String set_out(jnr.ffi.Pointer s, int maxdd)
    • span_in

      public static jnr.ffi.Pointer span_in(String str, int spantype)
    • span_out

      public static String span_out(jnr.ffi.Pointer s, int maxdd)
    • spanset_in

      public static jnr.ffi.Pointer spanset_in(String str, int spantype)
    • spanset_out

      public static String spanset_out(jnr.ffi.Pointer ss, int maxdd)
    • set_make

      public static jnr.ffi.Pointer set_make(jnr.ffi.Pointer values, int count, int basetype, boolean order)
    • set_make_exp

      public static jnr.ffi.Pointer set_make_exp(jnr.ffi.Pointer values, int count, int maxcount, int basetype, boolean order)
    • set_make_free

      public static jnr.ffi.Pointer set_make_free(jnr.ffi.Pointer values, int count, int basetype, boolean order)
    • span_make

      public static jnr.ffi.Pointer span_make(jnr.ffi.Pointer lower, jnr.ffi.Pointer upper, boolean lower_inc, boolean upper_inc, int basetype)
    • span_set

      public static void span_set(jnr.ffi.Pointer lower, jnr.ffi.Pointer upper, boolean lower_inc, boolean upper_inc, int basetype, int spantype, jnr.ffi.Pointer s)
    • spanset_make_exp

      public static jnr.ffi.Pointer spanset_make_exp(jnr.ffi.Pointer spans, int count, int maxcount, boolean normalize, boolean order)
    • spanset_make_free

      public static jnr.ffi.Pointer spanset_make_free(jnr.ffi.Pointer spans, int count, boolean normalize, boolean order)
    • set_span

      public static jnr.ffi.Pointer set_span(jnr.ffi.Pointer s)
    • set_spanset

      public static jnr.ffi.Pointer set_spanset(jnr.ffi.Pointer s)
    • value_set_span

      public static void value_set_span(jnr.ffi.Pointer value, int basetype, jnr.ffi.Pointer s)
    • value_set

      public static jnr.ffi.Pointer value_set(jnr.ffi.Pointer d, int basetype)
    • value_span

      public static jnr.ffi.Pointer value_span(jnr.ffi.Pointer d, int basetype)
    • value_spanset

      public static jnr.ffi.Pointer value_spanset(jnr.ffi.Pointer d, int basetype)
    • numspan_width

      public static jnr.ffi.Pointer numspan_width(jnr.ffi.Pointer s)
    • numspanset_width

      public static jnr.ffi.Pointer numspanset_width(jnr.ffi.Pointer ss, boolean boundspan)
    • set_end_value

      public static jnr.ffi.Pointer set_end_value(jnr.ffi.Pointer s)
    • set_mem_size

      public static int set_mem_size(jnr.ffi.Pointer s)
    • set_set_subspan

      public static void set_set_subspan(jnr.ffi.Pointer s, int minidx, int maxidx, jnr.ffi.Pointer result)
    • set_set_span

      public static void set_set_span(jnr.ffi.Pointer s, jnr.ffi.Pointer result)
    • set_start_value

      public static jnr.ffi.Pointer set_start_value(jnr.ffi.Pointer s)
    • set_value_n

      public static jnr.ffi.Pointer set_value_n(jnr.ffi.Pointer s, int n)
    • set_vals

      public static jnr.ffi.Pointer set_vals(jnr.ffi.Pointer s)
    • set_values

      public static jnr.ffi.Pointer set_values(jnr.ffi.Pointer s, jnr.ffi.Pointer count)
    • spanset_lower

      public static jnr.ffi.Pointer spanset_lower(jnr.ffi.Pointer ss)
    • spanset_mem_size

      public static int spanset_mem_size(jnr.ffi.Pointer ss)
    • spanset_sps

      public static jnr.ffi.Pointer spanset_sps(jnr.ffi.Pointer ss, jnr.ffi.Pointer count)
    • spanset_upper

      public static jnr.ffi.Pointer spanset_upper(jnr.ffi.Pointer ss)
    • datespan_set_tstzspan

      public static void datespan_set_tstzspan(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • bigintspan_set_floatspan

      public static void bigintspan_set_floatspan(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • bigintspan_set_intspan

      public static void bigintspan_set_intspan(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • floatspan_set_bigintspan

      public static void floatspan_set_bigintspan(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • floatspan_set_intspan

      public static void floatspan_set_intspan(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • intspan_set_bigintspan

      public static void intspan_set_bigintspan(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • intspan_set_floatspan

      public static void intspan_set_floatspan(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • numset_shift_scale

      public static jnr.ffi.Pointer numset_shift_scale(jnr.ffi.Pointer s, jnr.ffi.Pointer shift, jnr.ffi.Pointer width, boolean hasshift, boolean haswidth)
    • numspan_expand

      public static jnr.ffi.Pointer numspan_expand(jnr.ffi.Pointer s, jnr.ffi.Pointer value)
    • numspan_shift_scale

      public static jnr.ffi.Pointer numspan_shift_scale(jnr.ffi.Pointer s, jnr.ffi.Pointer shift, jnr.ffi.Pointer width, boolean hasshift, boolean haswidth)
    • numspanset_shift_scale

      public static jnr.ffi.Pointer numspanset_shift_scale(jnr.ffi.Pointer ss, jnr.ffi.Pointer shift, jnr.ffi.Pointer width, boolean hasshift, boolean haswidth)
    • set_compact

      public static jnr.ffi.Pointer set_compact(jnr.ffi.Pointer s)
    • span_expand

      public static void span_expand(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • spanset_compact

      public static jnr.ffi.Pointer spanset_compact(jnr.ffi.Pointer ss)
    • tbox_expand_value

      public static jnr.ffi.Pointer tbox_expand_value(jnr.ffi.Pointer box, jnr.ffi.Pointer value, int basetyp)
    • textcat_textset_text_common

      public static jnr.ffi.Pointer textcat_textset_text_common(jnr.ffi.Pointer s, jnr.ffi.Pointer txt, boolean invert)
    • tstzspan_set_datespan

      public static void tstzspan_set_datespan(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • adjacent_span_value

      public static boolean adjacent_span_value(jnr.ffi.Pointer s, jnr.ffi.Pointer value)
    • adjacent_spanset_value

      public static boolean adjacent_spanset_value(jnr.ffi.Pointer ss, jnr.ffi.Pointer value)
    • adjacent_value_spanset

      public static boolean adjacent_value_spanset(jnr.ffi.Pointer value, jnr.ffi.Pointer ss)
    • contained_value_set

      public static boolean contained_value_set(jnr.ffi.Pointer value, jnr.ffi.Pointer s)
    • contained_value_span

      public static boolean contained_value_span(jnr.ffi.Pointer value, jnr.ffi.Pointer s)
    • contained_value_spanset

      public static boolean contained_value_spanset(jnr.ffi.Pointer value, jnr.ffi.Pointer ss)
    • contains_set_value

      public static boolean contains_set_value(jnr.ffi.Pointer s, jnr.ffi.Pointer value)
    • contains_span_value

      public static boolean contains_span_value(jnr.ffi.Pointer s, jnr.ffi.Pointer value)
    • contains_spanset_value

      public static boolean contains_spanset_value(jnr.ffi.Pointer ss, jnr.ffi.Pointer value)
    • ovadj_span_span

      public static boolean ovadj_span_span(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • left_set_value

      public static boolean left_set_value(jnr.ffi.Pointer s, jnr.ffi.Pointer value)
    • left_span_value

      public static boolean left_span_value(jnr.ffi.Pointer s, jnr.ffi.Pointer value)
    • left_spanset_value

      public static boolean left_spanset_value(jnr.ffi.Pointer ss, jnr.ffi.Pointer value)
    • left_value_set

      public static boolean left_value_set(jnr.ffi.Pointer value, jnr.ffi.Pointer s)
    • left_value_span

      public static boolean left_value_span(jnr.ffi.Pointer value, jnr.ffi.Pointer s)
    • left_value_spanset

      public static boolean left_value_spanset(jnr.ffi.Pointer value, jnr.ffi.Pointer ss)
    • lfnadj_span_span

      public static boolean lfnadj_span_span(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • overleft_set_value

      public static boolean overleft_set_value(jnr.ffi.Pointer s, jnr.ffi.Pointer value)
    • overleft_span_value

      public static boolean overleft_span_value(jnr.ffi.Pointer s, jnr.ffi.Pointer value)
    • overleft_spanset_value

      public static boolean overleft_spanset_value(jnr.ffi.Pointer ss, jnr.ffi.Pointer value)
    • overleft_value_set

      public static boolean overleft_value_set(jnr.ffi.Pointer value, jnr.ffi.Pointer s)
    • overleft_value_span

      public static boolean overleft_value_span(jnr.ffi.Pointer value, jnr.ffi.Pointer s)
    • overleft_value_spanset

      public static boolean overleft_value_spanset(jnr.ffi.Pointer value, jnr.ffi.Pointer ss)
    • overright_set_value

      public static boolean overright_set_value(jnr.ffi.Pointer s, jnr.ffi.Pointer value)
    • overright_span_value

      public static boolean overright_span_value(jnr.ffi.Pointer s, jnr.ffi.Pointer value)
    • overright_spanset_value

      public static boolean overright_spanset_value(jnr.ffi.Pointer ss, jnr.ffi.Pointer value)
    • overright_value_set

      public static boolean overright_value_set(jnr.ffi.Pointer value, jnr.ffi.Pointer s)
    • overright_value_span

      public static boolean overright_value_span(jnr.ffi.Pointer value, jnr.ffi.Pointer s)
    • overright_value_spanset

      public static boolean overright_value_spanset(jnr.ffi.Pointer value, jnr.ffi.Pointer ss)
    • right_value_set

      public static boolean right_value_set(jnr.ffi.Pointer value, jnr.ffi.Pointer s)
    • right_set_value

      public static boolean right_set_value(jnr.ffi.Pointer s, jnr.ffi.Pointer value)
    • right_value_span

      public static boolean right_value_span(jnr.ffi.Pointer value, jnr.ffi.Pointer s)
    • right_value_spanset

      public static boolean right_value_spanset(jnr.ffi.Pointer value, jnr.ffi.Pointer ss)
    • right_span_value

      public static boolean right_span_value(jnr.ffi.Pointer s, jnr.ffi.Pointer value)
    • right_spanset_value

      public static boolean right_spanset_value(jnr.ffi.Pointer ss, jnr.ffi.Pointer value)
    • bbox_type

      public static boolean bbox_type(int bboxtype)
    • bbox_get_size

      public static long bbox_get_size(int bboxtype)
    • bbox_max_dims

      public static int bbox_max_dims(int bboxtype)
    • temporal_bbox_eq

      public static boolean temporal_bbox_eq(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2, int temptype)
    • temporal_bbox_cmp

      public static int temporal_bbox_cmp(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2, int temptype)
    • bbox_union_span_span

      public static void bbox_union_span_span(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2, jnr.ffi.Pointer result)
    • inter_span_span

      public static jnr.ffi.Pointer inter_span_span(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • intersection_set_value

      public static jnr.ffi.Pointer intersection_set_value(jnr.ffi.Pointer s, jnr.ffi.Pointer value)
    • intersection_span_value

      public static jnr.ffi.Pointer intersection_span_value(jnr.ffi.Pointer s, jnr.ffi.Pointer value)
    • intersection_spanset_value

      public static jnr.ffi.Pointer intersection_spanset_value(jnr.ffi.Pointer ss, jnr.ffi.Pointer value)
    • intersection_value_set

      public static jnr.ffi.Pointer intersection_value_set(jnr.ffi.Pointer value, jnr.ffi.Pointer s)
    • intersection_value_span

      public static jnr.ffi.Pointer intersection_value_span(jnr.ffi.Pointer value, jnr.ffi.Pointer s)
    • intersection_value_spanset

      public static jnr.ffi.Pointer intersection_value_spanset(jnr.ffi.Pointer value, jnr.ffi.Pointer ss)
    • mi_span_span

      public static int mi_span_span(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2, jnr.ffi.Pointer result)
    • minus_set_value

      public static jnr.ffi.Pointer minus_set_value(jnr.ffi.Pointer s, jnr.ffi.Pointer value)
    • minus_span_value

      public static jnr.ffi.Pointer minus_span_value(jnr.ffi.Pointer s, jnr.ffi.Pointer value)
    • minus_spanset_value

      public static jnr.ffi.Pointer minus_spanset_value(jnr.ffi.Pointer ss, jnr.ffi.Pointer value)
    • minus_value_set

      public static jnr.ffi.Pointer minus_value_set(jnr.ffi.Pointer value, jnr.ffi.Pointer s)
    • minus_value_span

      public static jnr.ffi.Pointer minus_value_span(jnr.ffi.Pointer value, jnr.ffi.Pointer s)
    • minus_value_spanset

      public static jnr.ffi.Pointer minus_value_spanset(jnr.ffi.Pointer value, jnr.ffi.Pointer ss)
    • union_set_value

      public static jnr.ffi.Pointer union_set_value(jnr.ffi.Pointer s, jnr.ffi.Pointer value)
    • union_span_value

      public static jnr.ffi.Pointer union_span_value(jnr.ffi.Pointer s, jnr.ffi.Pointer value)
    • union_spanset_value

      public static jnr.ffi.Pointer union_spanset_value(jnr.ffi.Pointer ss, jnr.ffi.Pointer value)
    • union_value_set

      public static jnr.ffi.Pointer union_value_set(jnr.ffi.Pointer value, jnr.ffi.Pointer s)
    • union_value_span

      public static jnr.ffi.Pointer union_value_span(jnr.ffi.Pointer value, jnr.ffi.Pointer s)
    • union_value_spanset

      public static jnr.ffi.Pointer union_value_spanset(jnr.ffi.Pointer value, jnr.ffi.Pointer ss)
    • distance_set_set

      public static jnr.ffi.Pointer distance_set_set(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • distance_set_value

      public static jnr.ffi.Pointer distance_set_value(jnr.ffi.Pointer s, jnr.ffi.Pointer value)
    • distance_span_span

      public static jnr.ffi.Pointer distance_span_span(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • distance_span_value

      public static jnr.ffi.Pointer distance_span_value(jnr.ffi.Pointer s, jnr.ffi.Pointer value)
    • distance_spanset_span

      public static jnr.ffi.Pointer distance_spanset_span(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • distance_spanset_spanset

      public static jnr.ffi.Pointer distance_spanset_spanset(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • distance_spanset_value

      public static jnr.ffi.Pointer distance_spanset_value(jnr.ffi.Pointer ss, jnr.ffi.Pointer value)
    • distance_value_value

      public static jnr.ffi.Pointer distance_value_value(jnr.ffi.Pointer l, jnr.ffi.Pointer r, int basetype)
    • spanbase_extent_transfn

      public static jnr.ffi.Pointer spanbase_extent_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer value, int basetype)
    • value_union_transfn

      public static jnr.ffi.Pointer value_union_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer value, int basetype)
    • number_tstzspan_to_tbox

      public static jnr.ffi.Pointer number_tstzspan_to_tbox(jnr.ffi.Pointer d, int basetype, jnr.ffi.Pointer s)
    • number_timestamptz_to_tbox

      public static jnr.ffi.Pointer number_timestamptz_to_tbox(jnr.ffi.Pointer d, int basetype, OffsetDateTime t)
    • tbox_set

      public static void tbox_set(jnr.ffi.Pointer s, jnr.ffi.Pointer p, jnr.ffi.Pointer box)
    • float_set_tbox

      public static void float_set_tbox(double d, jnr.ffi.Pointer box)
    • int_set_tbox

      public static void int_set_tbox(int i, jnr.ffi.Pointer box)
    • number_set_tbox

      public static void number_set_tbox(jnr.ffi.Pointer d, int basetype, jnr.ffi.Pointer box)
    • number_tbox

      public static jnr.ffi.Pointer number_tbox(jnr.ffi.Pointer value, int basetype)
    • numset_set_tbox

      public static void numset_set_tbox(jnr.ffi.Pointer s, jnr.ffi.Pointer box)
    • numspan_set_tbox

      public static void numspan_set_tbox(jnr.ffi.Pointer span, jnr.ffi.Pointer box)
    • timestamptz_set_tbox

      public static void timestamptz_set_tbox(OffsetDateTime t, jnr.ffi.Pointer box)
    • tstzset_set_tbox

      public static void tstzset_set_tbox(jnr.ffi.Pointer s, jnr.ffi.Pointer box)
    • tstzspan_set_tbox

      public static void tstzspan_set_tbox(jnr.ffi.Pointer s, jnr.ffi.Pointer box)
    • tbox_shift_scale_value

      public static jnr.ffi.Pointer tbox_shift_scale_value(jnr.ffi.Pointer box, jnr.ffi.Pointer shift, jnr.ffi.Pointer width, boolean hasshift, boolean haswidth)
    • tbox_expand

      public static void tbox_expand(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • inter_tbox_tbox

      public static jnr.ffi.Pointer inter_tbox_tbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tboolinst_from_mfjson

      public static jnr.ffi.Pointer tboolinst_from_mfjson(jnr.ffi.Pointer mfjson)
    • tboolinst_in

      public static jnr.ffi.Pointer tboolinst_in(String str)
    • tboolseq_from_mfjson

      public static jnr.ffi.Pointer tboolseq_from_mfjson(jnr.ffi.Pointer mfjson)
    • tboolseq_in

      public static jnr.ffi.Pointer tboolseq_in(String str, int interp)
    • tboolseqset_from_mfjson

      public static jnr.ffi.Pointer tboolseqset_from_mfjson(jnr.ffi.Pointer mfjson)
    • tboolseqset_in

      public static jnr.ffi.Pointer tboolseqset_in(String str)
    • temporal_in

      public static jnr.ffi.Pointer temporal_in(String str, int temptype)
    • temporal_out

      public static String temporal_out(jnr.ffi.Pointer temp, int maxdd)
    • temparr_out

      public static jnr.ffi.Pointer temparr_out(jnr.ffi.Pointer temparr, int count, int maxdd)
    • tfloatinst_from_mfjson

      public static jnr.ffi.Pointer tfloatinst_from_mfjson(jnr.ffi.Pointer mfjson)
    • tfloatinst_in

      public static jnr.ffi.Pointer tfloatinst_in(String str)
    • tfloatseq_from_mfjson

      public static jnr.ffi.Pointer tfloatseq_from_mfjson(jnr.ffi.Pointer mfjson, int interp)
    • tfloatseq_in

      public static jnr.ffi.Pointer tfloatseq_in(String str, int interp)
    • tfloatseqset_from_mfjson

      public static jnr.ffi.Pointer tfloatseqset_from_mfjson(jnr.ffi.Pointer mfjson, int interp)
    • tfloatseqset_in

      public static jnr.ffi.Pointer tfloatseqset_in(String str)
    • tinstant_from_mfjson

      public static jnr.ffi.Pointer tinstant_from_mfjson(jnr.ffi.Pointer mfjson, boolean spatial, int srid, int temptype)
    • tinstant_in

      public static jnr.ffi.Pointer tinstant_in(String str, int temptype)
    • tinstant_out

      public static String tinstant_out(jnr.ffi.Pointer inst, int maxdd)
    • tbigintinst_from_mfjson

      public static jnr.ffi.Pointer tbigintinst_from_mfjson(jnr.ffi.Pointer mfjson)
    • tbigintinst_in

      public static jnr.ffi.Pointer tbigintinst_in(String str)
    • tbigintseq_from_mfjson

      public static jnr.ffi.Pointer tbigintseq_from_mfjson(jnr.ffi.Pointer mfjson)
    • tbigintseqset_from_mfjson

      public static jnr.ffi.Pointer tbigintseqset_from_mfjson(jnr.ffi.Pointer mfjson)
    • tbigintseqset_in

      public static jnr.ffi.Pointer tbigintseqset_in(String str)
    • tintinst_from_mfjson

      public static jnr.ffi.Pointer tintinst_from_mfjson(jnr.ffi.Pointer mfjson)
    • tintinst_in

      public static jnr.ffi.Pointer tintinst_in(String str)
    • tintseq_from_mfjson

      public static jnr.ffi.Pointer tintseq_from_mfjson(jnr.ffi.Pointer mfjson)
    • tintseq_in

      public static jnr.ffi.Pointer tintseq_in(String str, int interp)
    • tintseqset_from_mfjson

      public static jnr.ffi.Pointer tintseqset_from_mfjson(jnr.ffi.Pointer mfjson)
    • tintseqset_in

      public static jnr.ffi.Pointer tintseqset_in(String str)
    • tsequence_from_mfjson

      public static jnr.ffi.Pointer tsequence_from_mfjson(jnr.ffi.Pointer mfjson, boolean spatial, int srid, int temptype, int interp)
    • tsequence_in

      public static jnr.ffi.Pointer tsequence_in(String str, int temptype, int interp)
    • tsequence_out

      public static String tsequence_out(jnr.ffi.Pointer seq, int maxdd)
    • tsequenceset_from_mfjson

      public static jnr.ffi.Pointer tsequenceset_from_mfjson(jnr.ffi.Pointer mfjson, boolean spatial, int srid, int temptype, int interp)
    • tsequenceset_in

      public static jnr.ffi.Pointer tsequenceset_in(String str, int temptype, int interp)
    • tsequenceset_out

      public static String tsequenceset_out(jnr.ffi.Pointer ss, int maxdd)
    • ttextinst_from_mfjson

      public static jnr.ffi.Pointer ttextinst_from_mfjson(jnr.ffi.Pointer mfjson)
    • ttextinst_in

      public static jnr.ffi.Pointer ttextinst_in(String str)
    • ttextseq_from_mfjson

      public static jnr.ffi.Pointer ttextseq_from_mfjson(jnr.ffi.Pointer mfjson)
    • ttextseq_in

      public static jnr.ffi.Pointer ttextseq_in(String str, int interp)
    • ttextseqset_from_mfjson

      public static jnr.ffi.Pointer ttextseqset_from_mfjson(jnr.ffi.Pointer mfjson)
    • ttextseqset_in

      public static jnr.ffi.Pointer ttextseqset_in(String str)
    • temporal_from_mfjson

      public static jnr.ffi.Pointer temporal_from_mfjson(String mfjson, int temptype)
    • temporal_from_base_temp

      public static jnr.ffi.Pointer temporal_from_base_temp(jnr.ffi.Pointer value, int temptype, jnr.ffi.Pointer temp)
    • tinstant_copy

      public static jnr.ffi.Pointer tinstant_copy(jnr.ffi.Pointer inst)
    • tinstant_make

      public static jnr.ffi.Pointer tinstant_make(jnr.ffi.Pointer value, int temptype, OffsetDateTime t)
    • tinstant_make_free

      public static jnr.ffi.Pointer tinstant_make_free(jnr.ffi.Pointer value, int temptype, OffsetDateTime t)
    • tsequence_copy

      public static jnr.ffi.Pointer tsequence_copy(jnr.ffi.Pointer seq)
    • tsequence_from_base_temp

      public static jnr.ffi.Pointer tsequence_from_base_temp(jnr.ffi.Pointer value, int temptype, jnr.ffi.Pointer seq)
    • tsequence_from_base_tstzset

      public static jnr.ffi.Pointer tsequence_from_base_tstzset(jnr.ffi.Pointer value, int temptype, jnr.ffi.Pointer s)
    • tsequence_from_base_tstzspan

      public static jnr.ffi.Pointer tsequence_from_base_tstzspan(jnr.ffi.Pointer value, int temptype, jnr.ffi.Pointer s, int interp)
    • tsequence_make_exp

      public static jnr.ffi.Pointer tsequence_make_exp(jnr.ffi.Pointer instants, int count, int maxcount, boolean lower_inc, boolean upper_inc, int interp, boolean normalize)
    • tsequence_make_free

      public static jnr.ffi.Pointer tsequence_make_free(jnr.ffi.Pointer instants, int count, boolean lower_inc, boolean upper_inc, int interp, boolean normalize)
    • tsequenceset_copy

      public static jnr.ffi.Pointer tsequenceset_copy(jnr.ffi.Pointer ss)
    • tseqsetarr_to_tseqset

      public static jnr.ffi.Pointer tseqsetarr_to_tseqset(jnr.ffi.Pointer seqsets, int count, int totalseqs)
    • tsequenceset_from_base_temp

      public static jnr.ffi.Pointer tsequenceset_from_base_temp(jnr.ffi.Pointer value, int temptype, jnr.ffi.Pointer ss)
    • tsequenceset_from_base_tstzspanset

      public static jnr.ffi.Pointer tsequenceset_from_base_tstzspanset(jnr.ffi.Pointer value, int temptype, jnr.ffi.Pointer ss, int interp)
    • tsequenceset_make_exp

      public static jnr.ffi.Pointer tsequenceset_make_exp(jnr.ffi.Pointer sequences, int count, int maxcount, boolean normalize)
    • tsequenceset_make_free

      public static jnr.ffi.Pointer tsequenceset_make_free(jnr.ffi.Pointer sequences, int count, boolean normalize)
    • temporal_set_tstzspan

      public static void temporal_set_tstzspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • tinstant_set_tstzspan

      public static void tinstant_set_tstzspan(jnr.ffi.Pointer inst, jnr.ffi.Pointer s)
    • tnumber_set_tbox

      public static void tnumber_set_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • tnumberinst_set_tbox

      public static void tnumberinst_set_tbox(jnr.ffi.Pointer inst, jnr.ffi.Pointer box)
    • tnumberseq_set_tbox

      public static void tnumberseq_set_tbox(jnr.ffi.Pointer seq, jnr.ffi.Pointer box)
    • tnumberseqset_set_tbox

      public static void tnumberseqset_set_tbox(jnr.ffi.Pointer ss, jnr.ffi.Pointer box)
    • tsequence_set_tstzspan

      public static void tsequence_set_tstzspan(jnr.ffi.Pointer seq, jnr.ffi.Pointer s)
    • tsequenceset_set_tstzspan

      public static void tsequenceset_set_tstzspan(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • temporal_end_inst

      public static jnr.ffi.Pointer temporal_end_inst(jnr.ffi.Pointer temp)
    • temporal_end_value

      public static jnr.ffi.Pointer temporal_end_value(jnr.ffi.Pointer temp)
    • temporal_inst_n

      public static jnr.ffi.Pointer temporal_inst_n(jnr.ffi.Pointer temp, int n)
    • temporal_insts_p

      public static jnr.ffi.Pointer temporal_insts_p(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • temporal_max_inst_p

      public static jnr.ffi.Pointer temporal_max_inst_p(jnr.ffi.Pointer temp)
    • temporal_max_value

      public static jnr.ffi.Pointer temporal_max_value(jnr.ffi.Pointer temp)
    • temporal_mem_size

      public static long temporal_mem_size(jnr.ffi.Pointer temp)
    • temporal_min_inst_p

      public static jnr.ffi.Pointer temporal_min_inst_p(jnr.ffi.Pointer temp)
    • temporal_min_value

      public static jnr.ffi.Pointer temporal_min_value(jnr.ffi.Pointer temp)
    • temporal_sequences_p

      public static jnr.ffi.Pointer temporal_sequences_p(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • temporal_set_bbox

      public static void temporal_set_bbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • temporal_start_inst

      public static jnr.ffi.Pointer temporal_start_inst(jnr.ffi.Pointer temp)
    • temporal_start_value

      public static jnr.ffi.Pointer temporal_start_value(jnr.ffi.Pointer temp)
    • temporal_values_p

      public static jnr.ffi.Pointer temporal_values_p(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • temporal_value_n

      public static jnr.ffi.Pointer temporal_value_n(jnr.ffi.Pointer temp, int n)
    • temporal_values

      public static jnr.ffi.Pointer temporal_values(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • tinstant_hash

      public static int tinstant_hash(jnr.ffi.Pointer inst)
    • tinstant_hash_extended

      public static long tinstant_hash_extended(jnr.ffi.Pointer inst, long seed)
    • tinstant_insts

      public static jnr.ffi.Pointer tinstant_insts(jnr.ffi.Pointer inst, jnr.ffi.Pointer count)
    • tinstant_set_bbox

      public static void tinstant_set_bbox(jnr.ffi.Pointer inst, jnr.ffi.Pointer box)
    • tinstant_time

      public static jnr.ffi.Pointer tinstant_time(jnr.ffi.Pointer inst)
    • tinstant_timestamps

      public static jnr.ffi.Pointer tinstant_timestamps(jnr.ffi.Pointer inst, jnr.ffi.Pointer count)
    • tinstant_value_p

      public static jnr.ffi.Pointer tinstant_value_p(jnr.ffi.Pointer inst)
    • tinstant_value

      public static jnr.ffi.Pointer tinstant_value(jnr.ffi.Pointer inst)
    • tinstant_value_at_timestamptz

      public static jnr.ffi.Pointer tinstant_value_at_timestamptz(jnr.ffi.Pointer inst, OffsetDateTime t)
    • tinstant_values_p

      public static jnr.ffi.Pointer tinstant_values_p(jnr.ffi.Pointer inst, jnr.ffi.Pointer count)
    • tnumber_set_span

      public static void tnumber_set_span(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • tnumberinst_valuespans

      public static jnr.ffi.Pointer tnumberinst_valuespans(jnr.ffi.Pointer inst)
    • tnumberseq_avg_val

      public static double tnumberseq_avg_val(jnr.ffi.Pointer seq)
    • tnumberseq_valuespans

      public static jnr.ffi.Pointer tnumberseq_valuespans(jnr.ffi.Pointer seq)
    • tnumberseqset_avg_val

      public static double tnumberseqset_avg_val(jnr.ffi.Pointer ss)
    • tnumberseqset_valuespans

      public static jnr.ffi.Pointer tnumberseqset_valuespans(jnr.ffi.Pointer ss)
    • tsequence_duration

      public static jnr.ffi.Pointer tsequence_duration(jnr.ffi.Pointer seq)
    • tsequence_end_timestamptz

      public static OffsetDateTime tsequence_end_timestamptz(jnr.ffi.Pointer seq)
    • tsequence_hash

      public static int tsequence_hash(jnr.ffi.Pointer seq)
    • tsequence_hash_extended

      public static long tsequence_hash_extended(jnr.ffi.Pointer seq, long seed)
    • tsequence_insts_p

      public static jnr.ffi.Pointer tsequence_insts_p(jnr.ffi.Pointer seq, jnr.ffi.Pointer count)
    • tsequence_max_inst_p

      public static jnr.ffi.Pointer tsequence_max_inst_p(jnr.ffi.Pointer seq)
    • tsequence_max_val

      public static jnr.ffi.Pointer tsequence_max_val(jnr.ffi.Pointer seq)
    • tsequence_min_inst_p

      public static jnr.ffi.Pointer tsequence_min_inst_p(jnr.ffi.Pointer seq)
    • tsequence_min_val

      public static jnr.ffi.Pointer tsequence_min_val(jnr.ffi.Pointer seq)
    • tsequence_segments

      public static jnr.ffi.Pointer tsequence_segments(jnr.ffi.Pointer seq, jnr.ffi.Pointer count)
    • tsequence_seqs

      public static jnr.ffi.Pointer tsequence_seqs(jnr.ffi.Pointer seq, jnr.ffi.Pointer count)
    • tsequence_start_timestamptz

      public static OffsetDateTime tsequence_start_timestamptz(jnr.ffi.Pointer seq)
    • tsequence_time

      public static jnr.ffi.Pointer tsequence_time(jnr.ffi.Pointer seq)
    • tsequence_timestamps

      public static jnr.ffi.Pointer tsequence_timestamps(jnr.ffi.Pointer seq, jnr.ffi.Pointer count)
    • tsequence_value_at_timestamptz

      public static jnr.ffi.Pointer tsequence_value_at_timestamptz(jnr.ffi.Pointer seq, OffsetDateTime t, boolean strict)
    • tsequence_values_p

      public static jnr.ffi.Pointer tsequence_values_p(jnr.ffi.Pointer seq, jnr.ffi.Pointer count)
    • tsequenceset_duration

      public static jnr.ffi.Pointer tsequenceset_duration(jnr.ffi.Pointer ss, boolean boundspan)
    • tsequenceset_end_timestamptz

      public static OffsetDateTime tsequenceset_end_timestamptz(jnr.ffi.Pointer ss)
    • tsequenceset_hash

      public static int tsequenceset_hash(jnr.ffi.Pointer ss)
    • tsequenceset_hash_extended

      public static long tsequenceset_hash_extended(jnr.ffi.Pointer ss, long seed)
    • tsequenceset_inst_n

      public static jnr.ffi.Pointer tsequenceset_inst_n(jnr.ffi.Pointer ss, int n)
    • tsequenceset_insts_p

      public static jnr.ffi.Pointer tsequenceset_insts_p(jnr.ffi.Pointer ss, jnr.ffi.Pointer count)
    • tsequenceset_max_inst_p

      public static jnr.ffi.Pointer tsequenceset_max_inst_p(jnr.ffi.Pointer ss)
    • tsequenceset_max_val

      public static jnr.ffi.Pointer tsequenceset_max_val(jnr.ffi.Pointer ss)
    • tsequenceset_min_inst_p

      public static jnr.ffi.Pointer tsequenceset_min_inst_p(jnr.ffi.Pointer ss)
    • tsequenceset_min_val

      public static jnr.ffi.Pointer tsequenceset_min_val(jnr.ffi.Pointer ss)
    • tsequenceset_num_instants

      public static int tsequenceset_num_instants(jnr.ffi.Pointer ss)
    • tsequenceset_num_timestamps

      public static int tsequenceset_num_timestamps(jnr.ffi.Pointer ss)
    • tsequenceset_segments

      public static jnr.ffi.Pointer tsequenceset_segments(jnr.ffi.Pointer ss, jnr.ffi.Pointer count)
    • tsequenceset_sequences_p

      public static jnr.ffi.Pointer tsequenceset_sequences_p(jnr.ffi.Pointer ss)
    • tsequenceset_start_timestamptz

      public static OffsetDateTime tsequenceset_start_timestamptz(jnr.ffi.Pointer ss)
    • tsequenceset_time

      public static jnr.ffi.Pointer tsequenceset_time(jnr.ffi.Pointer ss)
    • tsequenceset_timestamptz_n

      public static jnr.ffi.Pointer tsequenceset_timestamptz_n(jnr.ffi.Pointer ss, int n)
    • tsequenceset_timestamps

      public static jnr.ffi.Pointer tsequenceset_timestamps(jnr.ffi.Pointer ss, jnr.ffi.Pointer count)
    • tsequenceset_value_at_timestamptz

      public static jnr.ffi.Pointer tsequenceset_value_at_timestamptz(jnr.ffi.Pointer ss, OffsetDateTime t, boolean strict)
    • tsequenceset_value_n

      public static jnr.ffi.Pointer tsequenceset_value_n(jnr.ffi.Pointer ss, int n)
    • tsequenceset_value_n_p

      public static jnr.ffi.Pointer tsequenceset_value_n_p(jnr.ffi.Pointer ss, int n)
    • tsequenceset_values_p

      public static jnr.ffi.Pointer tsequenceset_values_p(jnr.ffi.Pointer ss, jnr.ffi.Pointer count)
    • temporal_restart

      public static void temporal_restart(jnr.ffi.Pointer temp, int count)
    • temporal_tsequence

      public static jnr.ffi.Pointer temporal_tsequence(jnr.ffi.Pointer temp, int interp)
    • temporal_tsequenceset

      public static jnr.ffi.Pointer temporal_tsequenceset(jnr.ffi.Pointer temp, int interp)
    • tinstant_shift_time

      public static jnr.ffi.Pointer tinstant_shift_time(jnr.ffi.Pointer inst, jnr.ffi.Pointer interv)
    • tinstant_as_tsequence

      public static jnr.ffi.Pointer tinstant_as_tsequence(jnr.ffi.Pointer inst, int interp)
    • tinstant_to_tsequence_free

      public static jnr.ffi.Pointer tinstant_to_tsequence_free(jnr.ffi.Pointer inst, int interp)
    • tinstant_as_tsequenceset

      public static jnr.ffi.Pointer tinstant_as_tsequenceset(jnr.ffi.Pointer inst, int interp)
    • tnumber_shift_scale_value

      public static jnr.ffi.Pointer tnumber_shift_scale_value(jnr.ffi.Pointer temp, jnr.ffi.Pointer shift, jnr.ffi.Pointer width, boolean hasshift, boolean haswidth)
    • tnumberinst_shift_value

      public static jnr.ffi.Pointer tnumberinst_shift_value(jnr.ffi.Pointer inst, jnr.ffi.Pointer shift)
    • tnumberseq_shift_scale_value

      public static jnr.ffi.Pointer tnumberseq_shift_scale_value(jnr.ffi.Pointer seq, jnr.ffi.Pointer shift, jnr.ffi.Pointer width, boolean hasshift, boolean haswidth)
    • tnumberseqset_shift_scale_value

      public static jnr.ffi.Pointer tnumberseqset_shift_scale_value(jnr.ffi.Pointer ss, jnr.ffi.Pointer start, jnr.ffi.Pointer width, boolean hasshift, boolean haswidth)
    • tsequence_restart

      public static void tsequence_restart(jnr.ffi.Pointer seq, int count)
    • tsequence_set_interp

      public static jnr.ffi.Pointer tsequence_set_interp(jnr.ffi.Pointer seq, int interp)
    • tsequence_shift_scale_time

      public static jnr.ffi.Pointer tsequence_shift_scale_time(jnr.ffi.Pointer seq, jnr.ffi.Pointer shift, jnr.ffi.Pointer duration)
    • tsequence_subseq

      public static jnr.ffi.Pointer tsequence_subseq(jnr.ffi.Pointer seq, int from, int to, boolean lower_inc, boolean upper_inc)
    • tsequence_as_tinstant

      public static jnr.ffi.Pointer tsequence_as_tinstant(jnr.ffi.Pointer seq)
    • tsequence_as_tsequenceset

      public static jnr.ffi.Pointer tsequence_as_tsequenceset(jnr.ffi.Pointer seq)
    • tsequence_to_tsequenceset_free

      public static jnr.ffi.Pointer tsequence_to_tsequenceset_free(jnr.ffi.Pointer seq)
    • tsequence_to_tsequenceset_interp

      public static jnr.ffi.Pointer tsequence_to_tsequenceset_interp(jnr.ffi.Pointer seq, int interp)
    • tsequenceset_restart

      public static void tsequenceset_restart(jnr.ffi.Pointer ss, int count)
    • tsequenceset_set_interp

      public static jnr.ffi.Pointer tsequenceset_set_interp(jnr.ffi.Pointer ss, int interp)
    • tsequenceset_shift_scale_time

      public static jnr.ffi.Pointer tsequenceset_shift_scale_time(jnr.ffi.Pointer ss, jnr.ffi.Pointer start, jnr.ffi.Pointer duration)
    • tsequenceset_to_discrete

      public static jnr.ffi.Pointer tsequenceset_to_discrete(jnr.ffi.Pointer ss)
    • tsequenceset_to_linear

      public static jnr.ffi.Pointer tsequenceset_to_linear(jnr.ffi.Pointer ss)
    • tsequenceset_to_step

      public static jnr.ffi.Pointer tsequenceset_to_step(jnr.ffi.Pointer ss)
    • tsequenceset_as_tinstant

      public static jnr.ffi.Pointer tsequenceset_as_tinstant(jnr.ffi.Pointer ss)
    • tsequenceset_as_tsequence

      public static jnr.ffi.Pointer tsequenceset_as_tsequence(jnr.ffi.Pointer ss)
    • tinstant_merge

      public static jnr.ffi.Pointer tinstant_merge(jnr.ffi.Pointer inst1, jnr.ffi.Pointer inst2)
    • tinstant_merge_array

      public static jnr.ffi.Pointer tinstant_merge_array(jnr.ffi.Pointer instants, int count)
    • tsequence_append_tinstant

      public static jnr.ffi.Pointer tsequence_append_tinstant(jnr.ffi.Pointer seq, jnr.ffi.Pointer inst, double maxdist, jnr.ffi.Pointer maxt, boolean expand)
    • tsequence_append_tsequence

      public static jnr.ffi.Pointer tsequence_append_tsequence(jnr.ffi.Pointer seq1, jnr.ffi.Pointer seq2, boolean expand)
    • tsequence_delete_timestamptz

      public static jnr.ffi.Pointer tsequence_delete_timestamptz(jnr.ffi.Pointer seq, OffsetDateTime t, boolean connect)
    • tsequence_delete_tstzset

      public static jnr.ffi.Pointer tsequence_delete_tstzset(jnr.ffi.Pointer seq, jnr.ffi.Pointer s, boolean connect)
    • tsequence_delete_tstzspan

      public static jnr.ffi.Pointer tsequence_delete_tstzspan(jnr.ffi.Pointer seq, jnr.ffi.Pointer s, boolean connect)
    • tsequence_delete_tstzspanset

      public static jnr.ffi.Pointer tsequence_delete_tstzspanset(jnr.ffi.Pointer seq, jnr.ffi.Pointer ss, boolean connect)
    • tsequence_insert

      public static jnr.ffi.Pointer tsequence_insert(jnr.ffi.Pointer seq1, jnr.ffi.Pointer seq2, boolean connect)
    • tsequence_merge

      public static jnr.ffi.Pointer tsequence_merge(jnr.ffi.Pointer seq1, jnr.ffi.Pointer seq2)
    • tsequence_merge_array

      public static jnr.ffi.Pointer tsequence_merge_array(jnr.ffi.Pointer sequences, int count)
    • tsequenceset_append_tinstant

      public static jnr.ffi.Pointer tsequenceset_append_tinstant(jnr.ffi.Pointer ss, jnr.ffi.Pointer inst, double maxdist, jnr.ffi.Pointer maxt, boolean expand)
    • tsequenceset_append_tsequence

      public static jnr.ffi.Pointer tsequenceset_append_tsequence(jnr.ffi.Pointer ss, jnr.ffi.Pointer seq, boolean expand)
    • tsequenceset_delete_timestamptz

      public static jnr.ffi.Pointer tsequenceset_delete_timestamptz(jnr.ffi.Pointer ss, OffsetDateTime t)
    • tsequenceset_delete_tstzset

      public static jnr.ffi.Pointer tsequenceset_delete_tstzset(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • tsequenceset_delete_tstzspan

      public static jnr.ffi.Pointer tsequenceset_delete_tstzspan(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • tsequenceset_delete_tstzspanset

      public static jnr.ffi.Pointer tsequenceset_delete_tstzspanset(jnr.ffi.Pointer ss, jnr.ffi.Pointer ps)
    • tsequenceset_insert

      public static jnr.ffi.Pointer tsequenceset_insert(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • tsequenceset_merge

      public static jnr.ffi.Pointer tsequenceset_merge(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • tsequenceset_merge_array

      public static jnr.ffi.Pointer tsequenceset_merge_array(jnr.ffi.Pointer seqsets, int count)
    • tsequence_expand_bbox

      public static void tsequence_expand_bbox(jnr.ffi.Pointer seq, jnr.ffi.Pointer inst)
    • tsequence_set_bbox

      public static void tsequence_set_bbox(jnr.ffi.Pointer seq, jnr.ffi.Pointer box)
    • tsequenceset_expand_bbox

      public static void tsequenceset_expand_bbox(jnr.ffi.Pointer ss, jnr.ffi.Pointer seq)
    • tsequenceset_set_bbox

      public static void tsequenceset_set_bbox(jnr.ffi.Pointer ss, jnr.ffi.Pointer box)
    • tcontseq_after_timestamptz

      public static jnr.ffi.Pointer tcontseq_after_timestamptz(jnr.ffi.Pointer seq, OffsetDateTime t, boolean strict)
    • tcontseq_before_timestamptz

      public static jnr.ffi.Pointer tcontseq_before_timestamptz(jnr.ffi.Pointer seq, OffsetDateTime t, boolean strict)
    • tcontseq_restrict_minmax

      public static jnr.ffi.Pointer tcontseq_restrict_minmax(jnr.ffi.Pointer seq, boolean min, boolean atfunc)
    • tdiscseq_after_timestamptz

      public static jnr.ffi.Pointer tdiscseq_after_timestamptz(jnr.ffi.Pointer seq, OffsetDateTime t, boolean strict)
    • tdiscseq_before_timestamptz

      public static jnr.ffi.Pointer tdiscseq_before_timestamptz(jnr.ffi.Pointer seq, OffsetDateTime t, boolean strict)
    • tdiscseq_restrict_minmax

      public static jnr.ffi.Pointer tdiscseq_restrict_minmax(jnr.ffi.Pointer seq, boolean min, boolean atfunc)
    • temporal_bbox_restrict_set

      public static boolean temporal_bbox_restrict_set(jnr.ffi.Pointer temp, jnr.ffi.Pointer set)
    • temporal_restrict_minmax

      public static jnr.ffi.Pointer temporal_restrict_minmax(jnr.ffi.Pointer temp, boolean min, boolean atfunc)
    • temporal_restrict_timestamptz

      public static jnr.ffi.Pointer temporal_restrict_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean atfunc)
    • temporal_restrict_tstzset

      public static jnr.ffi.Pointer temporal_restrict_tstzset(jnr.ffi.Pointer temp, jnr.ffi.Pointer s, boolean atfunc)
    • temporal_restrict_tstzspan

      public static jnr.ffi.Pointer temporal_restrict_tstzspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s, boolean atfunc)
    • temporal_restrict_tstzspanset

      public static jnr.ffi.Pointer temporal_restrict_tstzspanset(jnr.ffi.Pointer temp, jnr.ffi.Pointer ss, boolean atfunc)
    • temporal_restrict_value

      public static jnr.ffi.Pointer temporal_restrict_value(jnr.ffi.Pointer temp, jnr.ffi.Pointer value, boolean atfunc)
    • temporal_restrict_values

      public static jnr.ffi.Pointer temporal_restrict_values(jnr.ffi.Pointer temp, jnr.ffi.Pointer set, boolean atfunc)
    • temporal_value_at_timestamptz

      public static jnr.ffi.Pointer temporal_value_at_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean strict)
    • tinstant_after_timestamptz

      public static jnr.ffi.Pointer tinstant_after_timestamptz(jnr.ffi.Pointer inst, OffsetDateTime t, boolean strict)
    • tinstant_before_timestamptz

      public static jnr.ffi.Pointer tinstant_before_timestamptz(jnr.ffi.Pointer inst, OffsetDateTime t, boolean strict)
    • tinstant_restrict_tstzspan

      public static jnr.ffi.Pointer tinstant_restrict_tstzspan(jnr.ffi.Pointer inst, jnr.ffi.Pointer period, boolean atfunc)
    • tinstant_restrict_tstzspanset

      public static jnr.ffi.Pointer tinstant_restrict_tstzspanset(jnr.ffi.Pointer inst, jnr.ffi.Pointer ss, boolean atfunc)
    • tinstant_restrict_timestamptz

      public static jnr.ffi.Pointer tinstant_restrict_timestamptz(jnr.ffi.Pointer inst, OffsetDateTime t, boolean atfunc)
    • tinstant_restrict_tstzset

      public static jnr.ffi.Pointer tinstant_restrict_tstzset(jnr.ffi.Pointer inst, jnr.ffi.Pointer s, boolean atfunc)
    • tinstant_restrict_value

      public static jnr.ffi.Pointer tinstant_restrict_value(jnr.ffi.Pointer inst, jnr.ffi.Pointer value, boolean atfunc)
    • tinstant_restrict_values

      public static jnr.ffi.Pointer tinstant_restrict_values(jnr.ffi.Pointer inst, jnr.ffi.Pointer set, boolean atfunc)
    • tnumber_restrict_span

      public static jnr.ffi.Pointer tnumber_restrict_span(jnr.ffi.Pointer temp, jnr.ffi.Pointer span, boolean atfunc)
    • tnumber_restrict_spanset

      public static jnr.ffi.Pointer tnumber_restrict_spanset(jnr.ffi.Pointer temp, jnr.ffi.Pointer ss, boolean atfunc)
    • tnumberinst_restrict_span

      public static jnr.ffi.Pointer tnumberinst_restrict_span(jnr.ffi.Pointer inst, jnr.ffi.Pointer span, boolean atfunc)
    • tnumberinst_restrict_spanset

      public static jnr.ffi.Pointer tnumberinst_restrict_spanset(jnr.ffi.Pointer inst, jnr.ffi.Pointer ss, boolean atfunc)
    • tnumberseqset_restrict_span

      public static jnr.ffi.Pointer tnumberseqset_restrict_span(jnr.ffi.Pointer ss, jnr.ffi.Pointer span, boolean atfunc)
    • tnumberseqset_restrict_spanset

      public static jnr.ffi.Pointer tnumberseqset_restrict_spanset(jnr.ffi.Pointer ss, jnr.ffi.Pointer spanset, boolean atfunc)
    • tsequence_at_timestamptz

      public static jnr.ffi.Pointer tsequence_at_timestamptz(jnr.ffi.Pointer seq, OffsetDateTime t)
    • tsequence_restrict_tstzspan

      public static jnr.ffi.Pointer tsequence_restrict_tstzspan(jnr.ffi.Pointer seq, jnr.ffi.Pointer s, boolean atfunc)
    • tsequence_restrict_tstzspanset

      public static jnr.ffi.Pointer tsequence_restrict_tstzspanset(jnr.ffi.Pointer seq, jnr.ffi.Pointer ss, boolean atfunc)
    • tsequenceset_after_timestamptz

      public static jnr.ffi.Pointer tsequenceset_after_timestamptz(jnr.ffi.Pointer ss, OffsetDateTime t, boolean strict)
    • tsequenceset_before_timestamptz

      public static jnr.ffi.Pointer tsequenceset_before_timestamptz(jnr.ffi.Pointer ss, OffsetDateTime t, boolean strict)
    • tsequenceset_restrict_minmax

      public static jnr.ffi.Pointer tsequenceset_restrict_minmax(jnr.ffi.Pointer ss, boolean min, boolean atfunc)
    • tsequenceset_restrict_tstzspan

      public static jnr.ffi.Pointer tsequenceset_restrict_tstzspan(jnr.ffi.Pointer ss, jnr.ffi.Pointer s, boolean atfunc)
    • tsequenceset_restrict_tstzspanset

      public static jnr.ffi.Pointer tsequenceset_restrict_tstzspanset(jnr.ffi.Pointer ss, jnr.ffi.Pointer ps, boolean atfunc)
    • tsequenceset_restrict_timestamptz

      public static jnr.ffi.Pointer tsequenceset_restrict_timestamptz(jnr.ffi.Pointer ss, OffsetDateTime t, boolean atfunc)
    • tsequenceset_restrict_tstzset

      public static jnr.ffi.Pointer tsequenceset_restrict_tstzset(jnr.ffi.Pointer ss, jnr.ffi.Pointer s, boolean atfunc)
    • tsequenceset_restrict_value

      public static jnr.ffi.Pointer tsequenceset_restrict_value(jnr.ffi.Pointer ss, jnr.ffi.Pointer value, boolean atfunc)
    • tsequenceset_restrict_values

      public static jnr.ffi.Pointer tsequenceset_restrict_values(jnr.ffi.Pointer ss, jnr.ffi.Pointer s, boolean atfunc)
    • tinstant_cmp

      public static int tinstant_cmp(jnr.ffi.Pointer inst1, jnr.ffi.Pointer inst2)
    • tinstant_eq

      public static boolean tinstant_eq(jnr.ffi.Pointer inst1, jnr.ffi.Pointer inst2)
    • tsequence_cmp

      public static int tsequence_cmp(jnr.ffi.Pointer seq1, jnr.ffi.Pointer seq2)
    • tsequence_eq

      public static boolean tsequence_eq(jnr.ffi.Pointer seq1, jnr.ffi.Pointer seq2)
    • tsequenceset_cmp

      public static int tsequenceset_cmp(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • tsequenceset_eq

      public static boolean tsequenceset_eq(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • always_eq_base_temporal

      public static int always_eq_base_temporal(jnr.ffi.Pointer value, jnr.ffi.Pointer temp)
    • always_eq_temporal_base

      public static int always_eq_temporal_base(jnr.ffi.Pointer temp, jnr.ffi.Pointer value)
    • always_ne_base_temporal

      public static int always_ne_base_temporal(jnr.ffi.Pointer value, jnr.ffi.Pointer temp)
    • always_ne_temporal_base

      public static int always_ne_temporal_base(jnr.ffi.Pointer temp, jnr.ffi.Pointer value)
    • always_ge_base_temporal

      public static int always_ge_base_temporal(jnr.ffi.Pointer value, jnr.ffi.Pointer temp)
    • always_ge_temporal_base

      public static int always_ge_temporal_base(jnr.ffi.Pointer temp, jnr.ffi.Pointer value)
    • always_gt_base_temporal

      public static int always_gt_base_temporal(jnr.ffi.Pointer value, jnr.ffi.Pointer temp)
    • always_gt_temporal_base

      public static int always_gt_temporal_base(jnr.ffi.Pointer temp, jnr.ffi.Pointer value)
    • always_le_base_temporal

      public static int always_le_base_temporal(jnr.ffi.Pointer value, jnr.ffi.Pointer temp)
    • always_le_temporal_base

      public static int always_le_temporal_base(jnr.ffi.Pointer temp, jnr.ffi.Pointer value)
    • always_lt_base_temporal

      public static int always_lt_base_temporal(jnr.ffi.Pointer value, jnr.ffi.Pointer temp)
    • always_lt_temporal_base

      public static int always_lt_temporal_base(jnr.ffi.Pointer temp, jnr.ffi.Pointer value)
    • ever_eq_base_temporal

      public static int ever_eq_base_temporal(jnr.ffi.Pointer value, jnr.ffi.Pointer temp)
    • ever_eq_temporal_base

      public static int ever_eq_temporal_base(jnr.ffi.Pointer temp, jnr.ffi.Pointer value)
    • ever_ne_base_temporal

      public static int ever_ne_base_temporal(jnr.ffi.Pointer value, jnr.ffi.Pointer temp)
    • ever_ne_temporal_base

      public static int ever_ne_temporal_base(jnr.ffi.Pointer temp, jnr.ffi.Pointer value)
    • ever_ge_base_temporal

      public static int ever_ge_base_temporal(jnr.ffi.Pointer value, jnr.ffi.Pointer temp)
    • ever_ge_temporal_base

      public static int ever_ge_temporal_base(jnr.ffi.Pointer temp, jnr.ffi.Pointer value)
    • ever_gt_base_temporal

      public static int ever_gt_base_temporal(jnr.ffi.Pointer value, jnr.ffi.Pointer temp)
    • ever_gt_temporal_base

      public static int ever_gt_temporal_base(jnr.ffi.Pointer temp, jnr.ffi.Pointer value)
    • ever_le_base_temporal

      public static int ever_le_base_temporal(jnr.ffi.Pointer value, jnr.ffi.Pointer temp)
    • ever_le_temporal_base

      public static int ever_le_temporal_base(jnr.ffi.Pointer temp, jnr.ffi.Pointer value)
    • ever_lt_base_temporal

      public static int ever_lt_base_temporal(jnr.ffi.Pointer value, jnr.ffi.Pointer temp)
    • ever_lt_temporal_base

      public static int ever_lt_temporal_base(jnr.ffi.Pointer temp, jnr.ffi.Pointer value)
    • tnumberinst_abs

      public static jnr.ffi.Pointer tnumberinst_abs(jnr.ffi.Pointer inst)
    • tnumberinst_distance

      public static double tnumberinst_distance(jnr.ffi.Pointer inst1, jnr.ffi.Pointer inst2)
    • tnumberseq_abs

      public static jnr.ffi.Pointer tnumberseq_abs(jnr.ffi.Pointer seq)
    • tnumberseq_angular_difference

      public static jnr.ffi.Pointer tnumberseq_angular_difference(jnr.ffi.Pointer seq)
    • tnumberseq_delta_value

      public static jnr.ffi.Pointer tnumberseq_delta_value(jnr.ffi.Pointer seq)
    • tnumberseqset_abs

      public static jnr.ffi.Pointer tnumberseqset_abs(jnr.ffi.Pointer ss)
    • tnumberseqset_angular_difference

      public static jnr.ffi.Pointer tnumberseqset_angular_difference(jnr.ffi.Pointer ss)
    • tnumberseqset_delta_value

      public static jnr.ffi.Pointer tnumberseqset_delta_value(jnr.ffi.Pointer ss)
    • tdistance_tnumber_number

      public static jnr.ffi.Pointer tdistance_tnumber_number(jnr.ffi.Pointer temp, jnr.ffi.Pointer value)
    • nad_tbox_tbox

      public static double nad_tbox_tbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • nad_tnumber_number

      public static double nad_tnumber_number(jnr.ffi.Pointer temp, jnr.ffi.Pointer value)
    • nad_tnumber_tbox

      public static double nad_tnumber_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • nad_tnumber_tnumber

      public static double nad_tnumber_tnumber(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tnumberseq_integral

      public static double tnumberseq_integral(jnr.ffi.Pointer seq)
    • tnumberseq_twavg

      public static double tnumberseq_twavg(jnr.ffi.Pointer seq)
    • tnumberseqset_integral

      public static double tnumberseqset_integral(jnr.ffi.Pointer ss)
    • tnumberseqset_twavg

      public static double tnumberseqset_twavg(jnr.ffi.Pointer ss)
    • temporal_compact

      public static jnr.ffi.Pointer temporal_compact(jnr.ffi.Pointer temp)
    • tsequence_compact

      public static jnr.ffi.Pointer tsequence_compact(jnr.ffi.Pointer seq)
    • tsequenceset_compact

      public static jnr.ffi.Pointer tsequenceset_compact(jnr.ffi.Pointer ss)
    • temporal_skiplist_make

      public static jnr.ffi.Pointer temporal_skiplist_make()
    • skiplist_make

      public static jnr.ffi.Pointer skiplist_make(long key_size, long value_size, jnr.ffi.Pointer comp_fn, jnr.ffi.Pointer merge_fn)
    • skiplist_search

      public static int skiplist_search(jnr.ffi.Pointer list, jnr.ffi.Pointer key, jnr.ffi.Pointer value)
    • skiplist_free

      public static void skiplist_free(jnr.ffi.Pointer list)
    • skiplist_splice

      public static void skiplist_splice(jnr.ffi.Pointer list, jnr.ffi.Pointer keys, jnr.ffi.Pointer values, int count, jnr.ffi.Pointer func, boolean crossings, int sktype)
    • temporal_skiplist_splice

      public static void temporal_skiplist_splice(jnr.ffi.Pointer list, jnr.ffi.Pointer values, int count, jnr.ffi.Pointer func, boolean crossings)
    • skiplist_values

      public static jnr.ffi.Pointer skiplist_values(jnr.ffi.Pointer list)
    • skiplist_keys_values

      public static jnr.ffi.Pointer skiplist_keys_values(jnr.ffi.Pointer list, jnr.ffi.Pointer values)
    • temporal_app_tinst_transfn

      public static jnr.ffi.Pointer temporal_app_tinst_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer inst, int interp, double maxdist, jnr.ffi.Pointer maxt)
    • temporal_app_tseq_transfn

      public static jnr.ffi.Pointer temporal_app_tseq_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer seq)
    • span_bins

      public static jnr.ffi.Pointer span_bins(jnr.ffi.Pointer s, jnr.ffi.Pointer size, jnr.ffi.Pointer origin, jnr.ffi.Pointer count)
    • spanset_bins

      public static jnr.ffi.Pointer spanset_bins(jnr.ffi.Pointer ss, jnr.ffi.Pointer size, jnr.ffi.Pointer origin, jnr.ffi.Pointer count)
    • tnumber_value_bins

      public static jnr.ffi.Pointer tnumber_value_bins(jnr.ffi.Pointer temp, jnr.ffi.Pointer size, jnr.ffi.Pointer origin, jnr.ffi.Pointer count)
    • tnumber_value_time_boxes

      public static jnr.ffi.Pointer tnumber_value_time_boxes(jnr.ffi.Pointer temp, jnr.ffi.Pointer vsize, jnr.ffi.Pointer duration, jnr.ffi.Pointer vorigin, OffsetDateTime torigin, jnr.ffi.Pointer count)
    • tnumber_value_split

      public static jnr.ffi.Pointer tnumber_value_split(jnr.ffi.Pointer temp, jnr.ffi.Pointer vsize, jnr.ffi.Pointer vorigin, jnr.ffi.Pointer bins, jnr.ffi.Pointer count)
    • tbox_get_value_time_tile

      public static jnr.ffi.Pointer tbox_get_value_time_tile(jnr.ffi.Pointer value, OffsetDateTime t, jnr.ffi.Pointer vsize, jnr.ffi.Pointer duration, jnr.ffi.Pointer vorigin, OffsetDateTime torigin, int basetype, int spantype)
    • tnumber_value_time_split

      public static jnr.ffi.Pointer tnumber_value_time_split(jnr.ffi.Pointer temp, jnr.ffi.Pointer size, jnr.ffi.Pointer duration, jnr.ffi.Pointer vorigin, OffsetDateTime torigin, jnr.ffi.Pointer value_bins, jnr.ffi.Pointer time_bins, jnr.ffi.Pointer count)
    • double2_out

      public static String double2_out(jnr.ffi.Pointer d, int maxdd)
    • double2_set

      public static void double2_set(double a, double b, jnr.ffi.Pointer result)
    • double2_add

      public static jnr.ffi.Pointer double2_add(jnr.ffi.Pointer d1, jnr.ffi.Pointer d2)
    • double2_eq

      public static boolean double2_eq(jnr.ffi.Pointer d1, jnr.ffi.Pointer d2)
    • double3_out

      public static String double3_out(jnr.ffi.Pointer d, int maxdd)
    • double3_set

      public static void double3_set(double a, double b, double c, jnr.ffi.Pointer result)
    • double3_add

      public static jnr.ffi.Pointer double3_add(jnr.ffi.Pointer d1, jnr.ffi.Pointer d2)
    • double3_eq

      public static boolean double3_eq(jnr.ffi.Pointer d1, jnr.ffi.Pointer d2)
    • double4_out

      public static String double4_out(jnr.ffi.Pointer d, int maxdd)
    • double4_set

      public static void double4_set(double a, double b, double c, double d, jnr.ffi.Pointer result)
    • double4_add

      public static jnr.ffi.Pointer double4_add(jnr.ffi.Pointer d1, jnr.ffi.Pointer d2)
    • double4_eq

      public static boolean double4_eq(jnr.ffi.Pointer d1, jnr.ffi.Pointer d2)
    • double2_collinear

      public static boolean double2_collinear(jnr.ffi.Pointer x1, jnr.ffi.Pointer x2, jnr.ffi.Pointer x3, double ratio)
    • double3_collinear

      public static boolean double3_collinear(jnr.ffi.Pointer x1, jnr.ffi.Pointer x2, jnr.ffi.Pointer x3, double ratio)
    • double4_collinear

      public static boolean double4_collinear(jnr.ffi.Pointer x1, jnr.ffi.Pointer x2, jnr.ffi.Pointer x3, double ratio)
    • double2segm_interpolate

      public static jnr.ffi.Pointer double2segm_interpolate(jnr.ffi.Pointer start, jnr.ffi.Pointer end, jnr.ffi.Pointer ratio)
    • double3segm_interpolate

      public static jnr.ffi.Pointer double3segm_interpolate(jnr.ffi.Pointer start, jnr.ffi.Pointer end, jnr.ffi.Pointer ratio)
    • double4segm_interpolate

      public static jnr.ffi.Pointer double4segm_interpolate(jnr.ffi.Pointer start, jnr.ffi.Pointer end, jnr.ffi.Pointer ratio)
    • pg_atoi

      public static int pg_atoi(String s, long size, int c)
    • ensure_has_X

      public static boolean ensure_has_X(int type, short flags)
    • ensure_has_Z

      public static boolean ensure_has_Z(int type, short flags)
    • ensure_has_T

      public static boolean ensure_has_T(int type, short flags)
    • ensure_has_not_Z

      public static boolean ensure_has_not_Z(int type, short flags)
    • ensure_not_null

      public static boolean ensure_not_null(jnr.ffi.Pointer ptr)
    • ensure_one_not_null

      public static boolean ensure_one_not_null(jnr.ffi.Pointer ptr1, jnr.ffi.Pointer ptr2)
    • ensure_one_true

      public static boolean ensure_one_true(boolean hasshift, boolean haswidth)
    • ensure_valid_interp

      public static boolean ensure_valid_interp(int temptype, int interp)
    • ensure_continuous

      public static boolean ensure_continuous(jnr.ffi.Pointer temp)
    • ensure_same_interp

      public static boolean ensure_same_interp(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ensure_same_continuous_interp

      public static boolean ensure_same_continuous_interp(short flags1, short flags2)
    • ensure_linear_interp

      public static boolean ensure_linear_interp(short flags)
    • ensure_nonlinear_interp

      public static boolean ensure_nonlinear_interp(short flags)
    • ensure_common_dimension

      public static boolean ensure_common_dimension(short flags1, short flags2)
    • ensure_temporal_isof_type

      public static boolean ensure_temporal_isof_type(jnr.ffi.Pointer temp, int type)
    • ensure_temporal_isof_basetype

      public static boolean ensure_temporal_isof_basetype(jnr.ffi.Pointer temp, int basetype)
    • ensure_temporal_isof_subtype

      public static boolean ensure_temporal_isof_subtype(jnr.ffi.Pointer temp, int type)
    • ensure_same_temporal_type

      public static boolean ensure_same_temporal_type(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ensure_valid_tnumber_numspan

      public static boolean ensure_valid_tnumber_numspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • ensure_valid_tnumber_numspanset

      public static boolean ensure_valid_tnumber_numspanset(jnr.ffi.Pointer temp, jnr.ffi.Pointer ss)
    • ensure_valid_tnumber_tbox

      public static boolean ensure_valid_tnumber_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • ensure_valid_temporal_set

      public static boolean ensure_valid_temporal_set(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • ensure_valid_temporal_temporal

      public static boolean ensure_valid_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ensure_valid_tnumber_tnumber

      public static boolean ensure_valid_tnumber_tnumber(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ensure_not_negative

      public static boolean ensure_not_negative(int i)
    • ensure_positive

      public static boolean ensure_positive(int i)
    • not_negative_datum

      public static boolean not_negative_datum(jnr.ffi.Pointer size, int basetype)
    • ensure_not_negative_datum

      public static boolean ensure_not_negative_datum(jnr.ffi.Pointer size, int basetype)
    • positive_datum

      public static boolean positive_datum(jnr.ffi.Pointer size, int basetype)
    • ensure_positive_datum

      public static boolean ensure_positive_datum(jnr.ffi.Pointer size, int basetype)
    • ensure_valid_day_duration

      public static boolean ensure_valid_day_duration(jnr.ffi.Pointer duration)
    • positive_duration

      public static boolean positive_duration(jnr.ffi.Pointer duration)
    • ensure_positive_duration

      public static boolean ensure_positive_duration(jnr.ffi.Pointer duration)
    • temporal_bbox_ptr

      public static jnr.ffi.Pointer temporal_bbox_ptr(jnr.ffi.Pointer temp)
    • intersection_temporal_temporal

      public static boolean intersection_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, int mode, jnr.ffi.Pointer inter1, jnr.ffi.Pointer inter2)
    • round_fn

      public static jnr.ffi.Pointer round_fn(int basetype)
    • temporal_bbox_restrict_value

      public static boolean temporal_bbox_restrict_value(jnr.ffi.Pointer temp, jnr.ffi.Pointer value)
    • ensure_valid_tcbuffer_cbuffer

      public static boolean ensure_valid_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb)
    • ensure_valid_tcbuffer_geo

      public static boolean ensure_valid_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • ensure_valid_tcbuffer_stbox

      public static boolean ensure_valid_tcbuffer_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • ensure_valid_tcbuffer_tcbuffer

      public static boolean ensure_valid_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tcbuffersegm_intersection_value

      public static int tcbuffersegm_intersection_value(jnr.ffi.Pointer start, jnr.ffi.Pointer end, jnr.ffi.Pointer value, OffsetDateTime lower, OffsetDateTime upper, jnr.ffi.Pointer t1, jnr.ffi.Pointer t2)
    • tcbuffersegm_intersection

      public static int tcbuffersegm_intersection(jnr.ffi.Pointer start1, jnr.ffi.Pointer end1, jnr.ffi.Pointer start2, jnr.ffi.Pointer end2, OffsetDateTime lower, OffsetDateTime upper, jnr.ffi.Pointer t1, jnr.ffi.Pointer t2)
    • tcbuffersegm_dwithin_turnpt

      public static int tcbuffersegm_dwithin_turnpt(jnr.ffi.Pointer start1, jnr.ffi.Pointer end1, jnr.ffi.Pointer start2, jnr.ffi.Pointer end2, jnr.ffi.Pointer dist, OffsetDateTime lower, OffsetDateTime upper, jnr.ffi.Pointer t1, jnr.ffi.Pointer t2)
    • tcbuffersegm_tdwithin_turnpt

      public static int tcbuffersegm_tdwithin_turnpt(jnr.ffi.Pointer start1, jnr.ffi.Pointer end1, jnr.ffi.Pointer start2, jnr.ffi.Pointer end2, jnr.ffi.Pointer dist, OffsetDateTime lower, OffsetDateTime upper, jnr.ffi.Pointer t1, jnr.ffi.Pointer t2)
    • tcbuffersegm_distance_turnpt

      public static int tcbuffersegm_distance_turnpt(jnr.ffi.Pointer start1, jnr.ffi.Pointer end1, jnr.ffi.Pointer start2, jnr.ffi.Pointer end2, jnr.ffi.Pointer dist, OffsetDateTime lower, OffsetDateTime upper, jnr.ffi.Pointer t1, jnr.ffi.Pointer t2)
    • tcbuffer_geo_ctx_make

      public static jnr.ffi.Pointer tcbuffer_geo_ctx_make(jnr.ffi.Pointer gs)
    • tcbuffer_geo_ctx_free

      public static void tcbuffer_geo_ctx_free(jnr.ffi.Pointer ctx)
    • tcbuffer_geo_ctx_nsegs

      public static int tcbuffer_geo_ctx_nsegs(jnr.ffi.Pointer ctx)
    • tcbuffer_disc_within_ctx

      public static boolean tcbuffer_disc_within_ctx(jnr.ffi.Pointer cb, double dist, jnr.ffi.Pointer ctx)
    • tcbufferseg_within_ctx

      public static int tcbufferseg_within_ctx(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2, double dist, jnr.ffi.Pointer ctx, jnr.ffi.Pointer outlo, jnr.ffi.Pointer outhi, int maxout)
    • tcbuffer_disc_touch_ctx

      public static boolean tcbuffer_disc_touch_ctx(jnr.ffi.Pointer cb, jnr.ffi.Pointer ctx)
    • tcbufferseg_touch_roots

      public static int tcbufferseg_touch_roots(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2, jnr.ffi.Pointer ctx, jnr.ffi.Pointer outt, int maxout)
    • tcbuffer_disc_contains_ctx

      public static boolean tcbuffer_disc_contains_ctx(jnr.ffi.Pointer cb, jnr.ffi.Pointer ctx, boolean strict)
    • tcbufferseg_boundary_roots

      public static int tcbufferseg_boundary_roots(jnr.ffi.Pointer cb1, jnr.ffi.Pointer cb2, jnr.ffi.Pointer ctx, jnr.ffi.Pointer outt, int maxout)
    • cbuffer_set_stbox

      public static jnr.ffi.Pointer cbuffer_set_stbox(jnr.ffi.Pointer cb)
    • cbufferarr_set_stbox

      public static void cbufferarr_set_stbox(jnr.ffi.Pointer values, int count, jnr.ffi.Pointer box)
    • cbuffer_timestamptz_set_stbox

      public static void cbuffer_timestamptz_set_stbox(jnr.ffi.Pointer cb, OffsetDateTime t, jnr.ffi.Pointer box)
    • cbuffer_tstzspan_set_stbox

      public static void cbuffer_tstzspan_set_stbox(jnr.ffi.Pointer cb, jnr.ffi.Pointer s, jnr.ffi.Pointer box)
    • tcbufferinst_set_stbox

      public static void tcbufferinst_set_stbox(jnr.ffi.Pointer inst, jnr.ffi.Pointer box)
    • tcbufferinstarr_set_stbox

      public static void tcbufferinstarr_set_stbox(jnr.ffi.Pointer instants, int count, jnr.ffi.Pointer box)
    • tcbufferseq_expand_stbox

      public static void tcbufferseq_expand_stbox(jnr.ffi.Pointer seq, jnr.ffi.Pointer inst)
    • tcbufferinst_traversed_area

      public static jnr.ffi.Pointer tcbufferinst_traversed_area(jnr.ffi.Pointer inst)
    • tcbufferseq_traversed_area

      public static jnr.ffi.Pointer tcbufferseq_traversed_area(jnr.ffi.Pointer seq, boolean unary_union)
    • tcbufferseqset_traversed_area

      public static jnr.ffi.Pointer tcbufferseqset_traversed_area(jnr.ffi.Pointer ss, boolean unary_union)
    • tcbuffersegm_traversed_area

      public static jnr.ffi.Pointer tcbuffersegm_traversed_area(jnr.ffi.Pointer inst1, jnr.ffi.Pointer inst2)
    • tcbuffer_restrict_cbuffer

      public static jnr.ffi.Pointer tcbuffer_restrict_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb, boolean atfunc)
    • tcbuffer_restrict_stbox

      public static jnr.ffi.Pointer tcbuffer_restrict_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box, boolean border_inc, boolean atfunc)
    • tcbuffer_restrict_geom

      public static jnr.ffi.Pointer tcbuffer_restrict_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean atfunc)
    • ea_contains_geo_tcbuffer

      public static int ea_contains_geo_tcbuffer(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp, boolean ever)
    • ea_contains_tcbuffer_geo

      public static int ea_contains_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean ever)
    • ea_contains_tcbuffer_cbuffer

      public static int ea_contains_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb, boolean ever)
    • ea_contains_cbuffer_tcbuffer

      public static int ea_contains_cbuffer_tcbuffer(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp, boolean ever)
    • ea_contains_tcbuffer_tcbuffer

      public static int ea_contains_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, boolean ever)
    • ea_covers_geo_tcbuffer

      public static int ea_covers_geo_tcbuffer(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp, boolean ever)
    • ea_covers_tcbuffer_geo

      public static int ea_covers_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean ever)
    • ea_covers_tcbuffer_cbuffer

      public static int ea_covers_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb, boolean ever)
    • ea_covers_cbuffer_tcbuffer

      public static int ea_covers_cbuffer_tcbuffer(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp, boolean ever)
    • ea_covers_tcbuffer_tcbuffer

      public static int ea_covers_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, boolean ever)
    • ea_disjoint_tcbuffer_geo

      public static int ea_disjoint_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean ever)
    • ea_disjoint_geo_tcbuffer

      public static int ea_disjoint_geo_tcbuffer(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp, boolean ever)
    • ea_disjoint_tcbuffer_cbuffer

      public static int ea_disjoint_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb, boolean ever)
    • ea_disjoint_cbuffer_tcbuffer

      public static int ea_disjoint_cbuffer_tcbuffer(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp, boolean ever)
    • ea_disjoint_tcbuffer_tcbuffer

      public static int ea_disjoint_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, boolean ever)
    • ea_intersects_tcbuffer_geo

      public static int ea_intersects_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean ever)
    • ea_intersects_geo_tcbuffer

      public static int ea_intersects_geo_tcbuffer(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp, boolean ever)
    • ea_intersects_tcbuffer_cbuffer

      public static int ea_intersects_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb, boolean ever)
    • ea_intersects_cbuffer_tcbuffer

      public static int ea_intersects_cbuffer_tcbuffer(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp, boolean ever)
    • ea_intersects_tcbuffer_tcbuffer

      public static int ea_intersects_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, boolean ever)
    • ea_touches_tcbuffer_geo

      public static int ea_touches_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean ever)
    • ea_touches_geo_tcbuffer

      public static int ea_touches_geo_tcbuffer(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp, boolean ever)
    • ea_touches_tcbuffer_cbuffer

      public static int ea_touches_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb, boolean ever)
    • ea_touches_cbuffer_tcbuffer

      public static int ea_touches_cbuffer_tcbuffer(jnr.ffi.Pointer cb, jnr.ffi.Pointer temp, boolean ever)
    • ea_touches_tcbuffer_tcbuffer

      public static int ea_touches_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, boolean ever)
    • ea_dwithin_tcbuffer_tcbuffer

      public static int ea_dwithin_tcbuffer_tcbuffer(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, double dist, boolean ever)
    • tinterrel_tcbuffer_cbuffer

      public static jnr.ffi.Pointer tinterrel_tcbuffer_cbuffer(jnr.ffi.Pointer temp, jnr.ffi.Pointer cb, boolean tinter)
    • tinterrel_tcbuffer_geo

      public static jnr.ffi.Pointer tinterrel_tcbuffer_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean tinter)
    • edisjoint_tcbuffer_geo_native

      public static int edisjoint_tcbuffer_geo_native(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • eatouches_tcbuffer_geo_native

      public static int eatouches_tcbuffer_geo_native(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean ever)
    • eacontains_tcbuffer_geo_native

      public static int eacontains_tcbuffer_geo_native(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean ever, boolean strict)
    • clipper2_clip_poly_poly

      public static jnr.ffi.Pointer clipper2_clip_poly_poly(jnr.ffi.Pointer subj, jnr.ffi.Pointer clip, int op)
    • clipper2_traj_poly_periods

      public static jnr.ffi.Pointer clipper2_traj_poly_periods(jnr.ffi.Pointer seq, jnr.ffi.Pointer gs, jnr.ffi.Pointer out_count)
    • clip_poly_poly

      public static jnr.ffi.Pointer clip_poly_poly(jnr.ffi.Pointer subj, jnr.ffi.Pointer clip, int operation)
    • lwproj_lookup

      public static int lwproj_lookup(int srid_from, int srid_to, jnr.ffi.Pointer pj)
    • spheroid_init_from_srid

      public static int spheroid_init_from_srid(int srid, jnr.ffi.Pointer s)
    • srid_check_latlong

      public static void srid_check_latlong(int srid)
    • srid_is_latlong

      public static int srid_is_latlong(int srid)
    • geom_serialize

      public static jnr.ffi.Pointer geom_serialize(jnr.ffi.Pointer lwgeom)
    • geog_serialize

      public static jnr.ffi.Pointer geog_serialize(jnr.ffi.Pointer lwgeom)
    • meos_postgis_valid_typmod

      public static jnr.ffi.Pointer meos_postgis_valid_typmod(jnr.ffi.Pointer gs, int typmod)
    • geo_as_wkt

      public static String geo_as_wkt(jnr.ffi.Pointer gs, int precision, boolean extended)
    • box2d_to_lwgeom

      public static jnr.ffi.Pointer box2d_to_lwgeom(jnr.ffi.Pointer box, int srid)
    • box3d_to_lwgeom

      public static jnr.ffi.Pointer box3d_to_lwgeom(jnr.ffi.Pointer box)
    • MEOS_POSTGIS2GEOS

      public static jnr.ffi.Pointer MEOS_POSTGIS2GEOS(jnr.ffi.Pointer pglwgeom)
    • MEOS_GEOS2POSTGIS

      public static jnr.ffi.Pointer MEOS_GEOS2POSTGIS(jnr.ffi.Pointer geom, String want3d)
    • geom_spatialrel

      public static boolean geom_spatialrel(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2, int rel)
    • meos_point_in_polygon

      public static boolean meos_point_in_polygon(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2, int rel)
    • lwgeom_line_interpolate_point

      public static jnr.ffi.Pointer lwgeom_line_interpolate_point(jnr.ffi.Pointer geom, double fraction, int srid, String repeat)
    • point_get_coords

      public static void point_get_coords(jnr.ffi.Pointer point, boolean hasz, jnr.ffi.Pointer x, jnr.ffi.Pointer y, jnr.ffi.Pointer z)
    • tstzset_stbox_slice

      public static void tstzset_stbox_slice(jnr.ffi.Pointer tsdatum, jnr.ffi.Pointer box)
    • tstzspanset_stbox_slice

      public static void tstzspanset_stbox_slice(jnr.ffi.Pointer psdatum, jnr.ffi.Pointer box)
    • stbox_index_leaf_consistent

      public static boolean stbox_index_leaf_consistent(jnr.ffi.Pointer key, jnr.ffi.Pointer query, jnr.ffi.Pointer strategy)
    • stbox_gist_inner_consistent

      public static boolean stbox_gist_inner_consistent(jnr.ffi.Pointer key, jnr.ffi.Pointer query, jnr.ffi.Pointer strategy)
    • stbox_index_recheck

      public static boolean stbox_index_recheck(jnr.ffi.Pointer strategy)
    • stboxnode_copy

      public static jnr.ffi.Pointer stboxnode_copy(jnr.ffi.Pointer box)
    • getQuadrant8D

      public static byte getQuadrant8D(jnr.ffi.Pointer centroid, jnr.ffi.Pointer inBox)
    • stboxnode_init

      public static void stboxnode_init(jnr.ffi.Pointer centroid, jnr.ffi.Pointer nodebox)
    • stboxnode_quadtree_next

      public static void stboxnode_quadtree_next(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer centroid, byte quadrant, jnr.ffi.Pointer next_nodebox)
    • stboxnode_kdtree_next

      public static void stboxnode_kdtree_next(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer centroid, byte node, int level, jnr.ffi.Pointer next_nodebox)
    • overlap8D

      public static boolean overlap8D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • overlapKD

      public static boolean overlapKD(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query, int level)
    • contain8D

      public static boolean contain8D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • containKD

      public static boolean containKD(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query, int level)
    • left8D

      public static boolean left8D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • overLeft8D

      public static boolean overLeft8D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • right8D

      public static boolean right8D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • overRight8D

      public static boolean overRight8D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • below8D

      public static boolean below8D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • overBelow8D

      public static boolean overBelow8D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • above8D

      public static boolean above8D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • overAbove8D

      public static boolean overAbove8D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • front8D

      public static boolean front8D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • overFront8D

      public static boolean overFront8D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • back8D

      public static boolean back8D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • overBack8D

      public static boolean overBack8D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • before8D

      public static boolean before8D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • overBefore8D

      public static boolean overBefore8D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • after8D

      public static boolean after8D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • overAfter8D

      public static boolean overAfter8D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • distance_stbox_nodebox

      public static double distance_stbox_nodebox(jnr.ffi.Pointer query, jnr.ffi.Pointer nodebox)
    • tspatial_spgist_get_stbox

      public static void tspatial_spgist_get_stbox(jnr.ffi.Pointer value, int type, jnr.ffi.Pointer result)
    • mobilitydb_init

      public static void mobilitydb_init()
    • geo_stbox

      public static jnr.ffi.Pointer geo_stbox(jnr.ffi.Pointer gs)
    • stbox_geo

      public static jnr.ffi.Pointer stbox_geo(jnr.ffi.Pointer box)
    • tcomp_geo_tgeo

      public static jnr.ffi.Pointer tcomp_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp, jnr.ffi.Pointer func)
    • tcomp_tgeo_geo

      public static jnr.ffi.Pointer tcomp_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, jnr.ffi.Pointer func)
    • ensure_geoaggstate

      public static boolean ensure_geoaggstate(jnr.ffi.Pointer state, int srid, boolean hasz)
    • ensure_geoaggstate_state

      public static boolean ensure_geoaggstate_state(jnr.ffi.Pointer state1, jnr.ffi.Pointer state2)
    • tpoint_transform_tcentroid

      public static jnr.ffi.Pointer tpoint_transform_tcentroid(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • tpointinst_tcentroid_finalfn

      public static jnr.ffi.Pointer tpointinst_tcentroid_finalfn(jnr.ffi.Pointer instants, int count, int srid)
    • tpointseq_tcentroid_finalfn

      public static jnr.ffi.Pointer tpointseq_tcentroid_finalfn(jnr.ffi.Pointer sequences, int count, int srid)
    • point3d_min_dist

      public static boolean point3d_min_dist(jnr.ffi.Pointer p1, jnr.ffi.Pointer p2, jnr.ffi.Pointer p3, jnr.ffi.Pointer p4, jnr.ffi.Pointer fraction)
    • tgeompointsegm_distance_turnpt

      public static int tgeompointsegm_distance_turnpt(jnr.ffi.Pointer start1, jnr.ffi.Pointer end1, jnr.ffi.Pointer start2, jnr.ffi.Pointer end2, jnr.ffi.Pointer param, OffsetDateTime lower, OffsetDateTime upper, jnr.ffi.Pointer t1, jnr.ffi.Pointer t2)
    • tgeogpointsegm_distance_turnpt

      public static int tgeogpointsegm_distance_turnpt(jnr.ffi.Pointer start1, jnr.ffi.Pointer end1, jnr.ffi.Pointer start2, jnr.ffi.Pointer end2, jnr.ffi.Pointer param, OffsetDateTime lower, OffsetDateTime upper, jnr.ffi.Pointer t1, jnr.ffi.Pointer t2)
    • tinstant_distance

      public static double tinstant_distance(jnr.ffi.Pointer inst1, jnr.ffi.Pointer inst2, jnr.ffi.Pointer func)
    • geodist_geom_build

      public static boolean geodist_geom_build(jnr.ffi.Pointer gs, jnr.ffi.Pointer g)
    • geodist_geom_free

      public static void geodist_geom_free(jnr.ffi.Pointer g)
    • geodist_geom_edges

      public static boolean geodist_geom_edges(jnr.ffi.Pointer lw, boolean allow_arc, jnr.ffi.Pointer arr, jnr.ffi.Pointer cap, jnr.ffi.Pointer cnt, jnr.ffi.Pointer has_poly)
    • geodist_segm_edge_mindist

      public static double geodist_segm_edge_mindist(double cx1, double cy1, double cx2, double cy2, double r1, double r2, jnr.ffi.Pointer e)
    • geodist_segm_arc_mindist

      public static double geodist_segm_arc_mindist(double cx1, double cy1, double cx2, double cy2, double r1, double r2, jnr.ffi.Pointer e)
    • geodist_geom_point_inside

      public static boolean geodist_geom_point_inside(double x, double y, jnr.ffi.Pointer g)
    • geodist_segm_nad

      public static void geodist_segm_nad(double cx1, double cy1, double r1, double cx2, double cy2, double r2, jnr.ffi.Pointer g, jnr.ffi.Pointer best)
    • geodist_segm_shortestline

      public static void geodist_segm_shortestline(double cx1, double cy1, double r1, double cx2, double cy2, double r2, jnr.ffi.Pointer g, jnr.ffi.Pointer w)
    • geodist_segm_nai

      public static void geodist_segm_nai(double cx1, double cy1, double r1, OffsetDateTime t1, double cx2, double cy2, double r2, OffsetDateTime t2, jnr.ffi.Pointer g, jnr.ffi.Pointer w)
    • geodist_geom_build_rtree

      public static jnr.ffi.Pointer geodist_geom_build_rtree(jnr.ffi.Pointer segs, int n)
    • tpointseq_at_geom

      public static jnr.ffi.Pointer tpointseq_at_geom(jnr.ffi.Pointer seq, jnr.ffi.Pointer gs, jnr.ffi.Pointer count)
    • tpointseq_interperiods

      public static jnr.ffi.Pointer tpointseq_interperiods(jnr.ffi.Pointer seq, jnr.ffi.Pointer gs, jnr.ffi.Pointer count)
    • datum_point4d

      public static void datum_point4d(jnr.ffi.Pointer value, jnr.ffi.Pointer p)
    • geopoint_cmp

      public static int geopoint_cmp(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • geopoint_eq

      public static boolean geopoint_eq(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • geopoint_same

      public static boolean geopoint_same(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • datum_point_eq

      public static boolean datum_point_eq(jnr.ffi.Pointer point1, jnr.ffi.Pointer point2)
    • datum_point_same

      public static boolean datum_point_same(jnr.ffi.Pointer point1, jnr.ffi.Pointer point2)
    • datum2_point_eq

      public static jnr.ffi.Pointer datum2_point_eq(jnr.ffi.Pointer point1, jnr.ffi.Pointer point2)
    • datum2_point_ne

      public static jnr.ffi.Pointer datum2_point_ne(jnr.ffi.Pointer point1, jnr.ffi.Pointer point2)
    • datum2_point_same

      public static jnr.ffi.Pointer datum2_point_same(jnr.ffi.Pointer point1, jnr.ffi.Pointer point2)
    • datum2_point_nsame

      public static jnr.ffi.Pointer datum2_point_nsame(jnr.ffi.Pointer point1, jnr.ffi.Pointer point2)
    • datum2_geom_centroid

      public static jnr.ffi.Pointer datum2_geom_centroid(jnr.ffi.Pointer geo)
    • datum2_geog_centroid

      public static jnr.ffi.Pointer datum2_geog_centroid(jnr.ffi.Pointer geo)
    • geo_extract_elements

      public static jnr.ffi.Pointer geo_extract_elements(jnr.ffi.Pointer gs, jnr.ffi.Pointer count)
    • geo_serialize

      public static jnr.ffi.Pointer geo_serialize(jnr.ffi.Pointer geom)
    • geo_distance_fn

      public static jnr.ffi.Pointer geo_distance_fn(short flags)
    • pt_distance_fn

      public static jnr.ffi.Pointer pt_distance_fn(short flags)
    • datum_geom_distance2d

      public static jnr.ffi.Pointer datum_geom_distance2d(jnr.ffi.Pointer geom1, jnr.ffi.Pointer geom2)
    • datum_geom_distance3d

      public static jnr.ffi.Pointer datum_geom_distance3d(jnr.ffi.Pointer geom1, jnr.ffi.Pointer geom2)
    • datum_geog_distance

      public static jnr.ffi.Pointer datum_geog_distance(jnr.ffi.Pointer geog1, jnr.ffi.Pointer geog2)
    • datum_pt_distance2d

      public static jnr.ffi.Pointer datum_pt_distance2d(jnr.ffi.Pointer geom1, jnr.ffi.Pointer geom2)
    • datum_pt_distance3d

      public static jnr.ffi.Pointer datum_pt_distance3d(jnr.ffi.Pointer geom1, jnr.ffi.Pointer geom2)
    • spatial_flags

      public static short spatial_flags(jnr.ffi.Pointer d, int basetype)
    • ensure_srid_is_latlong

      public static boolean ensure_srid_is_latlong(int srid)
    • ensure_spatial_validity

      public static boolean ensure_spatial_validity(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ensure_not_geodetic

      public static boolean ensure_not_geodetic(short flags)
    • ensure_same_geodetic

      public static boolean ensure_same_geodetic(short flags1, short flags2)
    • ensure_same_geodetic_geo

      public static boolean ensure_same_geodetic_geo(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • ensure_same_geodetic_tspatial_geo

      public static boolean ensure_same_geodetic_tspatial_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • ensure_same_geodetic_tspatial_base

      public static boolean ensure_same_geodetic_tspatial_base(jnr.ffi.Pointer temp, jnr.ffi.Pointer base)
    • ensure_srid_known

      public static boolean ensure_srid_known(int srid)
    • ensure_same_srid

      public static boolean ensure_same_srid(int srid1, int srid2)
    • ensure_srid_reconcile

      public static jnr.ffi.Pointer ensure_srid_reconcile(int srid1, int srid2)
    • ensure_same_dimensionality

      public static boolean ensure_same_dimensionality(short flags1, short flags2)
    • same_spatial_dimensionality

      public static boolean same_spatial_dimensionality(short flags1, short flags2)
    • ensure_same_spatial_dimensionality

      public static boolean ensure_same_spatial_dimensionality(short flags1, short flags2)
    • ensure_same_dimensionality_geo

      public static boolean ensure_same_dimensionality_geo(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • same_dimensionality_tspatial_geo

      public static boolean same_dimensionality_tspatial_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • ensure_same_dimensionality_tspatial_geo

      public static boolean ensure_same_dimensionality_tspatial_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • ensure_same_spatial_dimensionality_stbox_geo

      public static boolean ensure_same_spatial_dimensionality_stbox_geo(jnr.ffi.Pointer box, jnr.ffi.Pointer gs)
    • ensure_same_geodetic_stbox_geo

      public static boolean ensure_same_geodetic_stbox_geo(jnr.ffi.Pointer box, jnr.ffi.Pointer gs)
    • ensure_has_Z_geo

      public static boolean ensure_has_Z_geo(jnr.ffi.Pointer gs)
    • ensure_has_not_Z_geo

      public static boolean ensure_has_not_Z_geo(jnr.ffi.Pointer gs)
    • ensure_has_M_geo

      public static boolean ensure_has_M_geo(jnr.ffi.Pointer gs)
    • ensure_has_not_M_geo

      public static boolean ensure_has_not_M_geo(jnr.ffi.Pointer gs)
    • ensure_not_geodetic_geo

      public static boolean ensure_not_geodetic_geo(jnr.ffi.Pointer gs)
    • ensure_point_type

      public static boolean ensure_point_type(jnr.ffi.Pointer gs)
    • ensure_mline_type

      public static boolean ensure_mline_type(jnr.ffi.Pointer gs)
    • circle_type

      public static boolean circle_type(jnr.ffi.Pointer gs)
    • ensure_circle_type

      public static boolean ensure_circle_type(jnr.ffi.Pointer gs)
    • ensure_not_empty

      public static boolean ensure_not_empty(jnr.ffi.Pointer gs)
    • ensure_valid_stbox_geo

      public static boolean ensure_valid_stbox_geo(jnr.ffi.Pointer box, jnr.ffi.Pointer gs)
    • ensure_valid_tspatial_geo

      public static boolean ensure_valid_tspatial_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • ensure_valid_tspatial_base

      public static boolean ensure_valid_tspatial_base(jnr.ffi.Pointer temp, jnr.ffi.Pointer base)
    • ensure_valid_tspatial_tspatial

      public static boolean ensure_valid_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ensure_valid_spatial_stbox_stbox

      public static boolean ensure_valid_spatial_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • ensure_valid_tgeo_stbox

      public static boolean ensure_valid_tgeo_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • ensure_valid_geo_geo

      public static boolean ensure_valid_geo_geo(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • ensure_valid_tgeo_geo

      public static boolean ensure_valid_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • ensure_valid_tgeo_tgeo

      public static boolean ensure_valid_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ensure_valid_tpoint_geo

      public static boolean ensure_valid_tpoint_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • ensure_valid_tpoint_tpoint

      public static boolean ensure_valid_tpoint_tpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • mline_type

      public static boolean mline_type(jnr.ffi.Pointer gs)
    • tpoint_get_coord

      public static jnr.ffi.Pointer tpoint_get_coord(jnr.ffi.Pointer temp, int coord)
    • eacomp_tgeo_geo

      public static int eacomp_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, jnr.ffi.Pointer func, boolean ever)
    • closest_point2d_on_segment_ratio

      public static jnr.ffi.Pointer closest_point2d_on_segment_ratio(jnr.ffi.Pointer p, jnr.ffi.Pointer A, jnr.ffi.Pointer B, jnr.ffi.Pointer closest)
    • closest_point3dz_on_segment_ratio

      public static jnr.ffi.Pointer closest_point3dz_on_segment_ratio(jnr.ffi.Pointer p, jnr.ffi.Pointer A, jnr.ffi.Pointer B, jnr.ffi.Pointer closest)
    • closest_point_on_segment_sphere

      public static jnr.ffi.Pointer closest_point_on_segment_sphere(jnr.ffi.Pointer p, jnr.ffi.Pointer A, jnr.ffi.Pointer B, jnr.ffi.Pointer closest, jnr.ffi.Pointer dist)
    • interpolate_point4d_spheroid

      public static void interpolate_point4d_spheroid(jnr.ffi.Pointer p1, jnr.ffi.Pointer p2, jnr.ffi.Pointer p, jnr.ffi.Pointer s, double f)
    • geopoint_make

      public static jnr.ffi.Pointer geopoint_make(double x, double y, double z, boolean hasz, boolean geodetic, int srid)
    • lwcircle_make

      public static jnr.ffi.Pointer lwcircle_make(double x, double y, double radius, int srid)
    • geocircle_make

      public static jnr.ffi.Pointer geocircle_make(double x, double y, double radius, int srid)
    • pointsegm_interpolate

      public static jnr.ffi.Pointer pointsegm_interpolate(jnr.ffi.Pointer start, jnr.ffi.Pointer end, jnr.ffi.Pointer ratio)
    • pointsegm_locate

      public static jnr.ffi.Pointer pointsegm_locate(jnr.ffi.Pointer start, jnr.ffi.Pointer end, jnr.ffi.Pointer point, jnr.ffi.Pointer dist)
    • tgeompointsegm_intersection

      public static int tgeompointsegm_intersection(jnr.ffi.Pointer start1, jnr.ffi.Pointer end1, jnr.ffi.Pointer start2, jnr.ffi.Pointer end2, OffsetDateTime lower, OffsetDateTime upper, jnr.ffi.Pointer t1, jnr.ffi.Pointer t2)
    • tgeogpointsegm_intersection

      public static int tgeogpointsegm_intersection(jnr.ffi.Pointer start1, jnr.ffi.Pointer end1, jnr.ffi.Pointer start2, jnr.ffi.Pointer end2, OffsetDateTime lower, OffsetDateTime upper, jnr.ffi.Pointer t1, jnr.ffi.Pointer t2)
    • geopoint_collinear

      public static boolean geopoint_collinear(jnr.ffi.Pointer value1, jnr.ffi.Pointer value2, jnr.ffi.Pointer value3, double ratio, boolean hasz, boolean geodetic)
    • lwpointarr_remove_duplicates

      public static jnr.ffi.Pointer lwpointarr_remove_duplicates(jnr.ffi.Pointer points, int count, jnr.ffi.Pointer newcount)
    • lwpointarr_make_trajectory

      public static jnr.ffi.Pointer lwpointarr_make_trajectory(jnr.ffi.Pointer points, int count, int interp)
    • lwline_make

      public static jnr.ffi.Pointer lwline_make(jnr.ffi.Pointer value1, jnr.ffi.Pointer value2)
    • lwcoll_from_points_lines

      public static jnr.ffi.Pointer lwcoll_from_points_lines(jnr.ffi.Pointer points, jnr.ffi.Pointer lines, int npoints, int nlines)
    • tpointseq_stops_iter

      public static int tpointseq_stops_iter(jnr.ffi.Pointer seq, double maxdist, long mintunits, jnr.ffi.Pointer result)
    • datum_geom_contains

      public static jnr.ffi.Pointer datum_geom_contains(jnr.ffi.Pointer geom1, jnr.ffi.Pointer geom2)
    • datum_geom_covers

      public static jnr.ffi.Pointer datum_geom_covers(jnr.ffi.Pointer geom1, jnr.ffi.Pointer geom2)
    • datum_geo_covers2d

      public static jnr.ffi.Pointer datum_geo_covers2d(jnr.ffi.Pointer geom1, jnr.ffi.Pointer geom2)
    • datum_geom_disjoint2d

      public static jnr.ffi.Pointer datum_geom_disjoint2d(jnr.ffi.Pointer geom1, jnr.ffi.Pointer geom2)
    • datum_geo_disjoint2d

      public static jnr.ffi.Pointer datum_geo_disjoint2d(jnr.ffi.Pointer geom1, jnr.ffi.Pointer geom2)
    • datum_geo_intersects2d

      public static jnr.ffi.Pointer datum_geo_intersects2d(jnr.ffi.Pointer geom1, jnr.ffi.Pointer geom2)
    • datum_geom_disjoint3d

      public static jnr.ffi.Pointer datum_geom_disjoint3d(jnr.ffi.Pointer geom1, jnr.ffi.Pointer geom2)
    • datum_geog_disjoint

      public static jnr.ffi.Pointer datum_geog_disjoint(jnr.ffi.Pointer geog1, jnr.ffi.Pointer geog2)
    • datum_geom_intersects2d

      public static jnr.ffi.Pointer datum_geom_intersects2d(jnr.ffi.Pointer geom1, jnr.ffi.Pointer geom2)
    • datum_geom_intersects3d

      public static jnr.ffi.Pointer datum_geom_intersects3d(jnr.ffi.Pointer geom1, jnr.ffi.Pointer geom2)
    • datum_geog_intersects

      public static jnr.ffi.Pointer datum_geog_intersects(jnr.ffi.Pointer geog1, jnr.ffi.Pointer geog2)
    • datum_geom_touches

      public static jnr.ffi.Pointer datum_geom_touches(jnr.ffi.Pointer geom1, jnr.ffi.Pointer geom2)
    • datum_geom_dwithin2d

      public static jnr.ffi.Pointer datum_geom_dwithin2d(jnr.ffi.Pointer geom1, jnr.ffi.Pointer geom2, jnr.ffi.Pointer dist)
    • datum_geom_dwithin3d

      public static jnr.ffi.Pointer datum_geom_dwithin3d(jnr.ffi.Pointer geom1, jnr.ffi.Pointer geom2, jnr.ffi.Pointer dist)
    • datum_geog_dwithin

      public static jnr.ffi.Pointer datum_geog_dwithin(jnr.ffi.Pointer geog1, jnr.ffi.Pointer geog2, jnr.ffi.Pointer dist)
    • datum_geom_relate_pattern

      public static jnr.ffi.Pointer datum_geom_relate_pattern(jnr.ffi.Pointer geog1, jnr.ffi.Pointer geog2, jnr.ffi.Pointer p)
    • geo_disjoint_fn

      public static jnr.ffi.Pointer geo_disjoint_fn(short flags1, short flags2)
    • geo_disjoint_fn_geo

      public static jnr.ffi.Pointer geo_disjoint_fn_geo(short flags1, byte flags2)
    • geo_intersects_fn

      public static jnr.ffi.Pointer geo_intersects_fn(short flags1, short flags2)
    • geo_intersects_fn_geo

      public static jnr.ffi.Pointer geo_intersects_fn_geo(short flags1, byte flags2)
    • geo_dwithin_fn

      public static jnr.ffi.Pointer geo_dwithin_fn(short flags1, short flags2)
    • geo_dwithin_fn_geo

      public static jnr.ffi.Pointer geo_dwithin_fn_geo(short flags1, byte flags2)
    • tpointsegm_tdwithin_turnpt

      public static int tpointsegm_tdwithin_turnpt(jnr.ffi.Pointer start1, jnr.ffi.Pointer end1, jnr.ffi.Pointer start2, jnr.ffi.Pointer end2, jnr.ffi.Pointer value, OffsetDateTime lower, OffsetDateTime upper, jnr.ffi.Pointer t1, jnr.ffi.Pointer t2)
    • spatialrel_geo_geo

      public static int spatialrel_geo_geo(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2, jnr.ffi.Pointer param, jnr.ffi.Pointer func, int numparam, boolean invert)
    • spatialrel_tgeo_tgeo

      public static int spatialrel_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, jnr.ffi.Pointer param, jnr.ffi.Pointer func, int numparam)
    • ea_contains_geo_tgeo

      public static int ea_contains_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp, boolean ever)
    • ea_contains_tgeo_geo

      public static int ea_contains_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean ever)
    • ea_contains_tgeo_tgeo

      public static int ea_contains_tgeo_tgeo(jnr.ffi.Pointer temp, jnr.ffi.Pointer temp2, boolean ever)
    • ea_covers_geo_tgeo

      public static int ea_covers_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp, boolean ever)
    • ea_covers_tgeo_geo

      public static int ea_covers_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean ever)
    • ea_covers_tgeo_tgeo

      public static int ea_covers_tgeo_tgeo(jnr.ffi.Pointer temp, jnr.ffi.Pointer temp2, boolean ever)
    • ea_disjoint_geo_tgeo

      public static int ea_disjoint_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp, boolean ever)
    • ea_disjoint_tgeo_geo

      public static int ea_disjoint_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean ever)
    • ea_disjoint_tgeo_tgeo

      public static int ea_disjoint_tgeo_tgeo(jnr.ffi.Pointer temp, jnr.ffi.Pointer temp2, boolean ever)
    • ea_intersects_geo_tgeo

      public static int ea_intersects_geo_tgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp, boolean ever)
    • ea_intersects_tgeo_geo

      public static int ea_intersects_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean ever)
    • ea_intersects_tgeo_tgeo

      public static int ea_intersects_tgeo_tgeo(jnr.ffi.Pointer temp, jnr.ffi.Pointer temp2, boolean ever)
    • ea_touches_tpoint_geo

      public static int ea_touches_tpoint_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean ever)
    • ea_touches_tgeo_geo

      public static int ea_touches_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean ever)
    • ea_touches_tgeo_tgeo

      public static int ea_touches_tgeo_tgeo(jnr.ffi.Pointer temp, jnr.ffi.Pointer temp2, boolean ever)
    • ea_dwithin_tgeo_geo

      public static int ea_dwithin_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, double dist, boolean ever)
    • ea_dwithin_tgeo_tgeo

      public static int ea_dwithin_tgeo_tgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, double dist, boolean ever)
    • ea_spatialrel_tspatial_geo

      public static int ea_spatialrel_tspatial_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, jnr.ffi.Pointer func, boolean ever, boolean invert)
    • ea_spatialrel_tspatial_tspatial

      public static int ea_spatialrel_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, jnr.ffi.Pointer func, boolean ever)
    • tspatialrel_tspatial_base

      public static jnr.ffi.Pointer tspatialrel_tspatial_base(jnr.ffi.Pointer temp, jnr.ffi.Pointer base, jnr.ffi.Pointer param, jnr.ffi.Pointer func, int numparam, boolean invert)
    • tspatialrel_tspatial_tspatial

      public static jnr.ffi.Pointer tspatialrel_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, jnr.ffi.Pointer param, jnr.ffi.Pointer func, int numparam, boolean invert)
    • tinterrel_tgeo_geo

      public static jnr.ffi.Pointer tinterrel_tgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean tinter)
    • tinterrel_tspatial_base

      public static jnr.ffi.Pointer tinterrel_tspatial_base(jnr.ffi.Pointer temp, jnr.ffi.Pointer base, boolean tinter, jnr.ffi.Pointer func)
    • tinterrel_tspatial_tspatial

      public static jnr.ffi.Pointer tinterrel_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, boolean tinter)
    • tdwithin_tspatial_tspatial

      public static jnr.ffi.Pointer tdwithin_tspatial_tspatial(jnr.ffi.Pointer sync1, jnr.ffi.Pointer sync2, jnr.ffi.Pointer dist, jnr.ffi.Pointer func, jnr.ffi.Pointer tpfn)
    • tdwithin_add_solutions

      public static int tdwithin_add_solutions(int solutions, OffsetDateTime lower, OffsetDateTime upper, boolean lower_inc, boolean upper_inc, boolean upper_inc1, OffsetDateTime t1, OffsetDateTime t2, jnr.ffi.Pointer instants, jnr.ffi.Pointer result)
    • tdwithin_tspatial_spatial

      public static jnr.ffi.Pointer tdwithin_tspatial_spatial(jnr.ffi.Pointer temp, jnr.ffi.Pointer base, jnr.ffi.Pointer dist, jnr.ffi.Pointer func, jnr.ffi.Pointer tpfn)
    • bitmatrix_make

      public static jnr.ffi.Pointer bitmatrix_make(jnr.ffi.Pointer count, int ndims)
    • tpoint_set_tiles

      public static int tpoint_set_tiles(jnr.ffi.Pointer temp, jnr.ffi.Pointer state, jnr.ffi.Pointer bm)
    • tpoint_at_tile

      public static jnr.ffi.Pointer tpoint_at_tile(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • stbox_tile_state_set

      public static void stbox_tile_state_set(double x, double y, double z, OffsetDateTime t, double xsize, double ysize, double zsize, long tunits, boolean hasx, boolean hasz, boolean hast, int srid, jnr.ffi.Pointer result)
    • stbox_tile_state_make

      public static jnr.ffi.Pointer stbox_tile_state_make(jnr.ffi.Pointer temp, jnr.ffi.Pointer box, double xsize, double ysize, double zsize, jnr.ffi.Pointer duration, int sorigin, OffsetDateTime torigin, boolean border_inc)
    • stbox_tile_state_next

      public static void stbox_tile_state_next(jnr.ffi.Pointer state)
    • stbox_tile_state_get

      public static jnr.ffi.Pointer stbox_tile_state_get(jnr.ffi.Pointer state)
    • tgeo_space_time_tile_init

      public static jnr.ffi.Pointer tgeo_space_time_tile_init(jnr.ffi.Pointer temp, double xsize, double ysize, double zsize, jnr.ffi.Pointer duration, jnr.ffi.Pointer sorigin, OffsetDateTime torigin, boolean bitmatrix, boolean border_inc, jnr.ffi.Pointer ntiles)
    • stbox_space_time_tile

      public static jnr.ffi.Pointer stbox_space_time_tile(jnr.ffi.Pointer point, OffsetDateTime t, double xsize, double ysize, double zsize, jnr.ffi.Pointer duration, jnr.ffi.Pointer sorigin, OffsetDateTime torigin, boolean hasx, boolean hast)
    • create_trip

      public static jnr.ffi.Pointer create_trip(jnr.ffi.Pointer lines, jnr.ffi.Pointer maxSpeeds, jnr.ffi.Pointer categories, int noEdges, OffsetDateTime startTime, boolean disturbData, int verbosity)
    • spatialarr_wkt_out

      public static jnr.ffi.Pointer spatialarr_wkt_out(jnr.ffi.Pointer spatialarr, int basetype, int count, int maxdd, boolean extended)
    • spatialbase_as_text

      public static String spatialbase_as_text(jnr.ffi.Pointer value, int type, int maxdd)
    • spatialbase_as_ewkt

      public static String spatialbase_as_ewkt(jnr.ffi.Pointer value, int type, int maxdd)
    • point_transf_pj

      public static boolean point_transf_pj(jnr.ffi.Pointer gs, int srid_to, jnr.ffi.Pointer pj)
    • tgeoinst_set_stbox

      public static void tgeoinst_set_stbox(jnr.ffi.Pointer inst, jnr.ffi.Pointer box)
    • tgeoinstarr_set_stbox

      public static void tgeoinstarr_set_stbox(jnr.ffi.Pointer instants, int count, jnr.ffi.Pointer box)
    • tgeoseq_expand_stbox

      public static void tgeoseq_expand_stbox(jnr.ffi.Pointer seq, jnr.ffi.Pointer inst)
    • tspatialinst_set_stbox

      public static void tspatialinst_set_stbox(jnr.ffi.Pointer inst, jnr.ffi.Pointer box)
    • tspatialinstarr_set_stbox

      public static void tspatialinstarr_set_stbox(jnr.ffi.Pointer instants, int count, boolean lower_inc, boolean upper_inc, int interp, jnr.ffi.Pointer box)
    • tspatialseqarr_set_stbox

      public static void tspatialseqarr_set_stbox(jnr.ffi.Pointer sequences, int count, jnr.ffi.Pointer box)
    • tspatialseq_expand_stbox

      public static void tspatialseq_expand_stbox(jnr.ffi.Pointer seq, jnr.ffi.Pointer inst)
    • spatialarr_set_bbox

      public static void spatialarr_set_bbox(jnr.ffi.Pointer values, int basetype, int count, jnr.ffi.Pointer box)
    • boxop_tspatial_stbox

      public static boolean boxop_tspatial_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box, jnr.ffi.Pointer func, boolean invert)
    • boxop_tspatial_tspatial

      public static boolean boxop_tspatial_tspatial(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, jnr.ffi.Pointer func)
    • srid_parse

      public static boolean srid_parse(jnr.ffi.Pointer str, jnr.ffi.Pointer srid)
    • spatial_parse_elem

      public static jnr.ffi.Pointer spatial_parse_elem(jnr.ffi.Pointer str, int temptype, String delim, jnr.ffi.Pointer temp_srid)
    • geo_parse

      public static jnr.ffi.Pointer geo_parse(jnr.ffi.Pointer str, int basetype, String delim, jnr.ffi.Pointer srid)
    • stbox_parse_dims

      public static jnr.ffi.Pointer stbox_parse_dims(jnr.ffi.Pointer str, boolean geodetic, int srid, String type_str)
    • stbox_parse

      public static jnr.ffi.Pointer stbox_parse(jnr.ffi.Pointer str)
    • tpoint_parse

      public static jnr.ffi.Pointer tpoint_parse(jnr.ffi.Pointer str, int temptype)
    • tspatialinst_parse

      public static jnr.ffi.Pointer tspatialinst_parse(jnr.ffi.Pointer str, int temptype, boolean end, jnr.ffi.Pointer temp_srid)
    • tspatialseq_disc_parse

      public static jnr.ffi.Pointer tspatialseq_disc_parse(jnr.ffi.Pointer str, int temptype, jnr.ffi.Pointer temp_srid)
    • tspatialseq_cont_parse

      public static jnr.ffi.Pointer tspatialseq_cont_parse(jnr.ffi.Pointer str, int temptype, int interp, boolean end, jnr.ffi.Pointer temp_srid)
    • tspatialseqset_parse

      public static jnr.ffi.Pointer tspatialseqset_parse(jnr.ffi.Pointer str, int temptype, int interp, jnr.ffi.Pointer temp_srid)
    • tspatial_parse

      public static jnr.ffi.Pointer tspatial_parse(jnr.ffi.Pointer str, int temptype)
    • h3_are_neighbor_cells_meos

      public static boolean h3_are_neighbor_cells_meos(long origin, long destination)
    • h3_cells_to_directed_edge_meos

      public static long h3_cells_to_directed_edge_meos(long origin, long destination)
    • h3_is_valid_directed_edge_meos

      public static boolean h3_is_valid_directed_edge_meos(long edge)
    • h3_get_directed_edge_origin_meos

      public static long h3_get_directed_edge_origin_meos(long edge)
    • h3_get_directed_edge_destination_meos

      public static long h3_get_directed_edge_destination_meos(long edge)
    • h3_cell_to_parent_meos

      public static long h3_cell_to_parent_meos(long origin, int resolution)
    • h3_cell_to_center_child_meos

      public static long h3_cell_to_center_child_meos(long origin, int resolution)
    • h3_cell_to_child_pos_meos

      public static long h3_cell_to_child_pos_meos(long child, int parentRes)
    • h3_child_pos_to_cell_meos

      public static long h3_child_pos_to_cell_meos(long childPos, long parent, int childRes)
    • h3_get_resolution_meos

      public static int h3_get_resolution_meos(long hex)
    • h3_get_base_cell_number_meos

      public static int h3_get_base_cell_number_meos(long hex)
    • h3_is_valid_cell_meos

      public static boolean h3_is_valid_cell_meos(long hex)
    • h3_is_res_class_iii_meos

      public static boolean h3_is_res_class_iii_meos(long hex)
    • h3_is_pentagon_meos

      public static boolean h3_is_pentagon_meos(long hex)
    • h3_get_num_cells_meos

      public static long h3_get_num_cells_meos(int resolution)
    • h3_grid_distance_meos

      public static long h3_grid_distance_meos(long originIndex, long h3Index)
    • h3_cell_to_vertex_meos

      public static long h3_cell_to_vertex_meos(long cell, int vertexNum)
    • h3_is_valid_vertex_meos

      public static boolean h3_is_valid_vertex_meos(long vertex)
    • h3index_in

      public static long h3index_in(String str)
    • h3index_out

      public static String h3index_out(long cell)
    • h3index_from_wkb

      public static long h3index_from_wkb(jnr.ffi.Pointer wkb, long size)
    • h3index_from_hexwkb

      public static long h3index_from_hexwkb(String hexwkb)
    • h3index_as_wkb

      public static jnr.ffi.Pointer h3index_as_wkb(long cell, byte variant)
    • h3index_as_hexwkb

      public static String h3index_as_hexwkb(long cell, byte variant)
    • h3index_eq

      public static boolean h3index_eq(long a, long b)
    • h3index_ne

      public static boolean h3index_ne(long a, long b)
    • h3index_lt

      public static boolean h3index_lt(long a, long b)
    • h3index_le

      public static boolean h3index_le(long a, long b)
    • h3index_gt

      public static boolean h3index_gt(long a, long b)
    • h3index_ge

      public static boolean h3index_ge(long a, long b)
    • h3index_cmp

      public static int h3index_cmp(long a, long b)
    • h3index_hash

      public static int h3index_hash(long cell)
    • h3_grid_disk

      public static jnr.ffi.Pointer h3_grid_disk(long origin, int k)
    • h3_cell_to_children

      public static jnr.ffi.Pointer h3_cell_to_children(long origin, int childRes)
    • h3_compact_cells

      public static jnr.ffi.Pointer h3_compact_cells(jnr.ffi.Pointer cells)
    • h3_uncompact_cells

      public static jnr.ffi.Pointer h3_uncompact_cells(jnr.ffi.Pointer cells, int res)
    • h3_grid_ring

      public static jnr.ffi.Pointer h3_grid_ring(long origin, int k)
    • h3_grid_path_cells

      public static jnr.ffi.Pointer h3_grid_path_cells(long start, long end)
    • h3_origin_to_directed_edges

      public static jnr.ffi.Pointer h3_origin_to_directed_edges(long origin)
    • h3_cell_to_vertexes

      public static jnr.ffi.Pointer h3_cell_to_vertexes(long cell)
    • h3_get_icosahedron_faces

      public static jnr.ffi.Pointer h3_get_icosahedron_faces(long cell)
    • th3index_in

      public static jnr.ffi.Pointer th3index_in(String str)
    • th3indexinst_in

      public static jnr.ffi.Pointer th3indexinst_in(String str)
    • th3indexseq_in

      public static jnr.ffi.Pointer th3indexseq_in(String str, int interp)
    • th3indexseqset_in

      public static jnr.ffi.Pointer th3indexseqset_in(String str)
    • th3index_make

      public static jnr.ffi.Pointer th3index_make(long value, OffsetDateTime t)
    • th3indexinst_make

      public static jnr.ffi.Pointer th3indexinst_make(long value, OffsetDateTime t)
    • th3indexseq_make

      public static jnr.ffi.Pointer th3indexseq_make(jnr.ffi.Pointer values, jnr.ffi.Pointer times, int count, boolean lower_inc, boolean upper_inc)
    • th3indexseqset_make

      public static jnr.ffi.Pointer th3indexseqset_make(jnr.ffi.Pointer sequences, int count)
    • th3index_start_value

      public static long th3index_start_value(jnr.ffi.Pointer temp)
    • th3index_end_value

      public static long th3index_end_value(jnr.ffi.Pointer temp)
    • th3index_value_n

      public static jnr.ffi.Pointer th3index_value_n(jnr.ffi.Pointer temp, int n)
    • th3index_values

      public static jnr.ffi.Pointer th3index_values(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • th3index_value_at_timestamptz

      public static jnr.ffi.Pointer th3index_value_at_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean strict)
    • tbigint_to_th3index

      public static jnr.ffi.Pointer tbigint_to_th3index(jnr.ffi.Pointer temp)
    • th3index_to_tbigint

      public static jnr.ffi.Pointer th3index_to_tbigint(jnr.ffi.Pointer temp)
    • ever_eq_h3index_th3index

      public static int ever_eq_h3index_th3index(long cell, jnr.ffi.Pointer temp)
    • ever_eq_th3index_h3index

      public static int ever_eq_th3index_h3index(jnr.ffi.Pointer temp, long cell)
    • ever_ne_h3index_th3index

      public static int ever_ne_h3index_th3index(long cell, jnr.ffi.Pointer temp)
    • ever_ne_th3index_h3index

      public static int ever_ne_th3index_h3index(jnr.ffi.Pointer temp, long cell)
    • always_eq_h3index_th3index

      public static int always_eq_h3index_th3index(long cell, jnr.ffi.Pointer temp)
    • always_eq_th3index_h3index

      public static int always_eq_th3index_h3index(jnr.ffi.Pointer temp, long cell)
    • always_ne_h3index_th3index

      public static int always_ne_h3index_th3index(long cell, jnr.ffi.Pointer temp)
    • always_ne_th3index_h3index

      public static int always_ne_th3index_h3index(jnr.ffi.Pointer temp, long cell)
    • ever_eq_th3index_th3index

      public static int ever_eq_th3index_th3index(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ever_ne_th3index_th3index

      public static int ever_ne_th3index_th3index(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • always_eq_th3index_th3index

      public static int always_eq_th3index_th3index(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • always_ne_th3index_th3index

      public static int always_ne_th3index_th3index(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • teq_h3index_th3index

      public static jnr.ffi.Pointer teq_h3index_th3index(long cell, jnr.ffi.Pointer temp)
    • teq_th3index_h3index

      public static jnr.ffi.Pointer teq_th3index_h3index(jnr.ffi.Pointer temp, long cell)
    • teq_th3index_th3index

      public static jnr.ffi.Pointer teq_th3index_th3index(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tne_h3index_th3index

      public static jnr.ffi.Pointer tne_h3index_th3index(long cell, jnr.ffi.Pointer temp)
    • tne_th3index_h3index

      public static jnr.ffi.Pointer tne_th3index_h3index(jnr.ffi.Pointer temp, long cell)
    • tne_th3index_th3index

      public static jnr.ffi.Pointer tne_th3index_th3index(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • th3index_get_resolution

      public static jnr.ffi.Pointer th3index_get_resolution(jnr.ffi.Pointer temp)
    • th3index_get_base_cell_number

      public static jnr.ffi.Pointer th3index_get_base_cell_number(jnr.ffi.Pointer temp)
    • th3index_is_valid_cell

      public static jnr.ffi.Pointer th3index_is_valid_cell(jnr.ffi.Pointer temp)
    • th3index_is_res_class_iii

      public static jnr.ffi.Pointer th3index_is_res_class_iii(jnr.ffi.Pointer temp)
    • th3index_is_pentagon

      public static jnr.ffi.Pointer th3index_is_pentagon(jnr.ffi.Pointer temp)
    • th3index_cell_to_parent

      public static jnr.ffi.Pointer th3index_cell_to_parent(jnr.ffi.Pointer temp, int resolution)
    • th3index_cell_to_parent_next

      public static jnr.ffi.Pointer th3index_cell_to_parent_next(jnr.ffi.Pointer temp)
    • th3index_cell_to_center_child

      public static jnr.ffi.Pointer th3index_cell_to_center_child(jnr.ffi.Pointer temp, int resolution)
    • th3index_cell_to_center_child_next

      public static jnr.ffi.Pointer th3index_cell_to_center_child_next(jnr.ffi.Pointer temp)
    • th3index_cell_to_child_pos

      public static jnr.ffi.Pointer th3index_cell_to_child_pos(jnr.ffi.Pointer temp, int parent_res)
    • th3index_child_pos_to_cell

      public static jnr.ffi.Pointer th3index_child_pos_to_cell(jnr.ffi.Pointer child_pos, jnr.ffi.Pointer parent, int child_res)
    • tgeogpoint_to_th3index

      public static jnr.ffi.Pointer tgeogpoint_to_th3index(jnr.ffi.Pointer temp, int resolution)
    • tgeompoint_to_th3index

      public static jnr.ffi.Pointer tgeompoint_to_th3index(jnr.ffi.Pointer temp, int resolution)
    • th3index_to_tgeogpoint

      public static jnr.ffi.Pointer th3index_to_tgeogpoint(jnr.ffi.Pointer temp)
    • th3index_to_tgeompoint

      public static jnr.ffi.Pointer th3index_to_tgeompoint(jnr.ffi.Pointer temp)
    • th3index_cell_to_boundary

      public static jnr.ffi.Pointer th3index_cell_to_boundary(jnr.ffi.Pointer temp)
    • geo_to_h3index_cell

      public static long geo_to_h3index_cell(jnr.ffi.Pointer point, int resolution)
    • geo_to_h3index_set

      public static jnr.ffi.Pointer geo_to_h3index_set(jnr.ffi.Pointer gs, int resolution)
    • h3index_to_stbox

      public static jnr.ffi.Pointer h3index_to_stbox(long cell)
    • h3index_timestamptz_to_stbox

      public static jnr.ffi.Pointer h3index_timestamptz_to_stbox(long cell, OffsetDateTime t)
    • h3index_tstzspan_to_stbox

      public static jnr.ffi.Pointer h3index_tstzspan_to_stbox(long cell, jnr.ffi.Pointer s)
    • ever_eq_h3indexset_th3index

      public static int ever_eq_h3indexset_th3index(jnr.ffi.Pointer cells, jnr.ffi.Pointer th3idx)
    • th3index_are_neighbor_cells

      public static jnr.ffi.Pointer th3index_are_neighbor_cells(jnr.ffi.Pointer origin, jnr.ffi.Pointer dest)
    • th3index_cells_to_directed_edge

      public static jnr.ffi.Pointer th3index_cells_to_directed_edge(jnr.ffi.Pointer origin, jnr.ffi.Pointer dest)
    • th3index_is_valid_directed_edge

      public static jnr.ffi.Pointer th3index_is_valid_directed_edge(jnr.ffi.Pointer edge)
    • th3index_get_directed_edge_origin

      public static jnr.ffi.Pointer th3index_get_directed_edge_origin(jnr.ffi.Pointer edge)
    • th3index_get_directed_edge_destination

      public static jnr.ffi.Pointer th3index_get_directed_edge_destination(jnr.ffi.Pointer edge)
    • th3index_directed_edge_to_boundary

      public static jnr.ffi.Pointer th3index_directed_edge_to_boundary(jnr.ffi.Pointer edge)
    • th3index_cell_to_vertex

      public static jnr.ffi.Pointer th3index_cell_to_vertex(jnr.ffi.Pointer temp, int vertex_num)
    • th3index_vertex_to_latlng

      public static jnr.ffi.Pointer th3index_vertex_to_latlng(jnr.ffi.Pointer temp)
    • th3index_is_valid_vertex

      public static jnr.ffi.Pointer th3index_is_valid_vertex(jnr.ffi.Pointer temp)
    • th3index_grid_distance

      public static jnr.ffi.Pointer th3index_grid_distance(jnr.ffi.Pointer origin, jnr.ffi.Pointer dest)
    • th3index_cell_to_local_ij

      public static jnr.ffi.Pointer th3index_cell_to_local_ij(jnr.ffi.Pointer origin, jnr.ffi.Pointer cell)
    • th3index_local_ij_to_cell

      public static jnr.ffi.Pointer th3index_local_ij_to_cell(jnr.ffi.Pointer origin, jnr.ffi.Pointer coord)
    • th3index_cell_area

      public static jnr.ffi.Pointer th3index_cell_area(jnr.ffi.Pointer temp, String unit)
    • th3index_edge_length

      public static jnr.ffi.Pointer th3index_edge_length(jnr.ffi.Pointer temp, String unit)
    • tgeogpoint_great_circle_distance

      public static jnr.ffi.Pointer tgeogpoint_great_circle_distance(jnr.ffi.Pointer a, jnr.ffi.Pointer b, String unit)
    • ensure_valid_th3index_th3index

      public static boolean ensure_valid_th3index_th3index(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ensure_valid_th3index_h3index

      public static boolean ensure_valid_th3index_h3index(jnr.ffi.Pointer temp, long cell)
    • ensure_valid_th3index_tgeogpoint

      public static boolean ensure_valid_th3index_tgeogpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • datum2_h3index_eq

      public static jnr.ffi.Pointer datum2_h3index_eq(jnr.ffi.Pointer d1, jnr.ffi.Pointer d2, int type)
    • datum2_h3index_ne

      public static jnr.ffi.Pointer datum2_h3index_ne(jnr.ffi.Pointer d1, jnr.ffi.Pointer d2, int type)
    • h3index_set_stbox

      public static jnr.ffi.Pointer h3index_set_stbox(long cell)
    • h3indexarr_set_stbox

      public static void h3indexarr_set_stbox(jnr.ffi.Pointer values, int count, jnr.ffi.Pointer box)
    • th3indexinst_set_stbox

      public static void th3indexinst_set_stbox(jnr.ffi.Pointer inst, jnr.ffi.Pointer box)
    • th3indexinstarr_set_stbox

      public static void th3indexinstarr_set_stbox(jnr.ffi.Pointer instants, int count, jnr.ffi.Pointer box)
    • th3indexseq_expand_stbox

      public static void th3indexseq_expand_stbox(jnr.ffi.Pointer seq, jnr.ffi.Pointer inst)
    • h3_cell_to_geompoint

      public static jnr.ffi.Pointer h3_cell_to_geompoint(long cell)
    • h3_cell_to_geom

      public static jnr.ffi.Pointer h3_cell_to_geom(long cell)
    • cell_boundary_to_gs

      public static jnr.ffi.Pointer cell_boundary_to_gs(jnr.ffi.Pointer bnd)
    • h3_sample_step_deg

      public static double h3_sample_step_deg(int resolution)
    • h3_latlng_deg_to_cell

      public static long h3_latlng_deg_to_cell(double lat_deg, double lng_deg, int resolution)
    • h3_cell_to_parent_next_meos

      public static long h3_cell_to_parent_next_meos(long cell)
    • h3_cell_to_center_child_next_meos

      public static long h3_cell_to_center_child_next_meos(long cell)
    • h3_directed_edge_to_gs_boundary

      public static jnr.ffi.Pointer h3_directed_edge_to_gs_boundary(long edge)
    • h3_vertex_to_gs_point

      public static jnr.ffi.Pointer h3_vertex_to_gs_point(long vertex)
    • h3_cell_to_local_ij_meos

      public static jnr.ffi.Pointer h3_cell_to_local_ij_meos(long origin, long cell)
    • h3_local_ij_to_cell_meos

      public static long h3_local_ij_to_cell_meos(long origin, jnr.ffi.Pointer coord)
    • h3_unit_from_cstring

      public static int h3_unit_from_cstring(String unit)
    • h3_cell_area_meos

      public static double h3_cell_area_meos(long cell, int unit)
    • h3_edge_length_meos

      public static double h3_edge_length_meos(long edge, int unit)
    • h3_gs_great_circle_distance_meos

      public static double h3_gs_great_circle_distance_meos(jnr.ffi.Pointer a, jnr.ffi.Pointer b, int unit)
    • datum_h3_get_resolution

      public static jnr.ffi.Pointer datum_h3_get_resolution(jnr.ffi.Pointer d)
    • datum_h3_get_base_cell_number

      public static jnr.ffi.Pointer datum_h3_get_base_cell_number(jnr.ffi.Pointer d)
    • datum_h3_is_valid_cell

      public static jnr.ffi.Pointer datum_h3_is_valid_cell(jnr.ffi.Pointer d)
    • datum_h3_is_res_class_iii

      public static jnr.ffi.Pointer datum_h3_is_res_class_iii(jnr.ffi.Pointer d)
    • datum_h3_is_pentagon

      public static jnr.ffi.Pointer datum_h3_is_pentagon(jnr.ffi.Pointer d)
    • datum_h3_cell_to_parent

      public static jnr.ffi.Pointer datum_h3_cell_to_parent(jnr.ffi.Pointer cell_d, jnr.ffi.Pointer res_d)
    • datum_h3_cell_to_parent_next

      public static jnr.ffi.Pointer datum_h3_cell_to_parent_next(jnr.ffi.Pointer cell_d)
    • datum_h3_cell_to_center_child

      public static jnr.ffi.Pointer datum_h3_cell_to_center_child(jnr.ffi.Pointer cell_d, jnr.ffi.Pointer res_d)
    • datum_h3_cell_to_center_child_next

      public static jnr.ffi.Pointer datum_h3_cell_to_center_child_next(jnr.ffi.Pointer cell_d)
    • datum_h3_cell_to_child_pos

      public static jnr.ffi.Pointer datum_h3_cell_to_child_pos(jnr.ffi.Pointer cell_d, jnr.ffi.Pointer parent_res_d)
    • datum_h3_child_pos_to_cell

      public static jnr.ffi.Pointer datum_h3_child_pos_to_cell(jnr.ffi.Pointer pos_d, jnr.ffi.Pointer parent_d, jnr.ffi.Pointer child_res_d)
    • datum_h3_are_neighbor_cells

      public static jnr.ffi.Pointer datum_h3_are_neighbor_cells(jnr.ffi.Pointer origin_d, jnr.ffi.Pointer dest_d)
    • datum_h3_cells_to_directed_edge

      public static jnr.ffi.Pointer datum_h3_cells_to_directed_edge(jnr.ffi.Pointer origin_d, jnr.ffi.Pointer dest_d)
    • datum_h3_is_valid_directed_edge

      public static jnr.ffi.Pointer datum_h3_is_valid_directed_edge(jnr.ffi.Pointer d)
    • datum_h3_get_directed_edge_origin

      public static jnr.ffi.Pointer datum_h3_get_directed_edge_origin(jnr.ffi.Pointer d)
    • datum_h3_get_directed_edge_destination

      public static jnr.ffi.Pointer datum_h3_get_directed_edge_destination(jnr.ffi.Pointer d)
    • datum_h3_directed_edge_to_boundary

      public static jnr.ffi.Pointer datum_h3_directed_edge_to_boundary(jnr.ffi.Pointer d)
    • datum_h3_cell_to_vertex

      public static jnr.ffi.Pointer datum_h3_cell_to_vertex(jnr.ffi.Pointer cell_d, jnr.ffi.Pointer vnum_d)
    • datum_h3_vertex_to_latlng

      public static jnr.ffi.Pointer datum_h3_vertex_to_latlng(jnr.ffi.Pointer d)
    • datum_h3_is_valid_vertex

      public static jnr.ffi.Pointer datum_h3_is_valid_vertex(jnr.ffi.Pointer d)
    • datum_h3_grid_distance

      public static jnr.ffi.Pointer datum_h3_grid_distance(jnr.ffi.Pointer origin_d, jnr.ffi.Pointer dest_d)
    • datum_h3_cell_to_local_ij

      public static jnr.ffi.Pointer datum_h3_cell_to_local_ij(jnr.ffi.Pointer origin_d, jnr.ffi.Pointer cell_d)
    • datum_h3_local_ij_to_cell

      public static jnr.ffi.Pointer datum_h3_local_ij_to_cell(jnr.ffi.Pointer origin_d, jnr.ffi.Pointer coord_d)
    • datum_h3_latlng_to_cell

      public static jnr.ffi.Pointer datum_h3_latlng_to_cell(jnr.ffi.Pointer point_d, jnr.ffi.Pointer res_d)
    • datum_h3_cell_to_latlng

      public static jnr.ffi.Pointer datum_h3_cell_to_latlng(jnr.ffi.Pointer d)
    • datum_h3_cell_to_boundary

      public static jnr.ffi.Pointer datum_h3_cell_to_boundary(jnr.ffi.Pointer d)
    • datum_h3_cell_area

      public static jnr.ffi.Pointer datum_h3_cell_area(jnr.ffi.Pointer cell_d, jnr.ffi.Pointer unit_d)
    • datum_h3_edge_length

      public static jnr.ffi.Pointer datum_h3_edge_length(jnr.ffi.Pointer edge_d, jnr.ffi.Pointer unit_d)
    • datum_h3_great_circle_distance

      public static jnr.ffi.Pointer datum_h3_great_circle_distance(jnr.ffi.Pointer a_d, jnr.ffi.Pointer b_d, jnr.ffi.Pointer unit_d)
    • char_hash

      public static int char_hash(String c)
    • char_hash_extended

      public static long char_hash_extended(String c, long seed)
    • int16_hash

      public static int int16_hash(short val)
    • int16_hash_extended

      public static long int16_hash_extended(short val, long seed)
    • int32_hash

      public static int int32_hash(int val)
    • int32_hash_extended

      public static long int32_hash_extended(int val, long seed)
    • int64_hash

      public static int int64_hash(long val)
    • int64_hash_extended

      public static long int64_hash_extended(long val, long seed)
    • float4_hash

      public static int float4_hash(jnr.ffi.Pointer num)
    • float4_hash_extended

      public static long float4_hash_extended(jnr.ffi.Pointer num, long seed)
    • float8_hash

      public static int float8_hash(double num)
    • float8_hash_extended

      public static long float8_hash_extended(double num, long seed)
    • text_hash

      public static int text_hash(jnr.ffi.Pointer num, int collid)
    • text_hash_extended

      public static long text_hash_extended(jnr.ffi.Pointer txt, long seed, int collid)
    • bool_eq

      public static boolean bool_eq(boolean arg1, boolean arg2)
    • bool_ge

      public static boolean bool_ge(boolean arg1, boolean arg2)
    • bool_gt

      public static boolean bool_gt(boolean arg1, boolean arg2)
    • bool_hash

      public static int bool_hash(boolean arg)
    • bool_hash_extended

      public static long bool_hash_extended(boolean arg, long seed)
    • bool_in

      public static boolean bool_in(String str)
    • bool_le

      public static boolean bool_le(boolean arg1, boolean arg2)
    • bool_lt

      public static boolean bool_lt(boolean arg1, boolean arg2)
    • bool_ne

      public static boolean bool_ne(boolean arg1, boolean arg2)
    • bool_out

      public static String bool_out(boolean b)
    • bool_to_text

      public static jnr.ffi.Pointer bool_to_text(boolean b)
    • add_int16_int16

      public static short add_int16_int16(short num1, short num2)
    • add_int16_int32

      public static int add_int16_int32(short num1, int num2)
    • add_int16_int64

      public static long add_int16_int64(short num1, long num2)
    • add_int32_int16

      public static int add_int32_int16(int num1, short num2)
    • add_int32_int32

      public static int add_int32_int32(int num1, int num2)
    • add_int32_int64

      public static long add_int32_int64(int num1, long num2)
    • add_int64_int16

      public static long add_int64_int16(long num1, short num2)
    • add_int64_int32

      public static long add_int64_int32(long num1, int num2)
    • add_int64_int64

      public static long add_int64_int64(long num1, long num2)
    • bool_to_int32

      public static int bool_to_int32(boolean b)
    • div_int16_int16

      public static short div_int16_int16(short num1, short num2)
    • div_int16_int32

      public static int div_int16_int32(short num1, int num2)
    • div_int16_int64

      public static long div_int16_int64(short num1, long num2)
    • div_int32_int16

      public static int div_int32_int16(int num1, short num2)
    • div_int32_int32

      public static int div_int32_int32(int num1, int num2)
    • div_int32_int64

      public static long div_int32_int64(int num1, long num2)
    • div_int64_int16

      public static long div_int64_int16(long num1, short num2)
    • div_int64_int32

      public static long div_int64_int32(long num1, int num2)
    • div_int64_int64

      public static long div_int64_int64(long num1, long num2)
    • eq_int16_int32

      public static boolean eq_int16_int32(short num1, int num2)
    • eq_int16_int16

      public static boolean eq_int16_int16(short num1, short num2)
    • eq_int16_int64

      public static boolean eq_int16_int64(short num1, long num2)
    • eq_int32_int16

      public static boolean eq_int32_int16(int num1, short num2)
    • eq_int32_int32

      public static boolean eq_int32_int32(int num1, int num2)
    • eq_int32_int64

      public static boolean eq_int32_int64(int num1, long num2)
    • eq_int64_int16

      public static boolean eq_int64_int16(long num1, short num2)
    • eq_int64_int32

      public static boolean eq_int64_int32(long num1, int num2)
    • eq_int64_int64

      public static boolean eq_int64_int64(long num1, long num2)
    • float4_to_int64

      public static long float4_to_int64(jnr.ffi.Pointer num)
    • float8_to_int64

      public static long float8_to_int64(double num)
    • ge_int16_int16

      public static boolean ge_int16_int16(short num1, short num2)
    • ge_int16_int32

      public static boolean ge_int16_int32(short num1, int num2)
    • ge_int16_int64

      public static boolean ge_int16_int64(short num1, long num2)
    • ge_int32_int16

      public static boolean ge_int32_int16(int num1, short num2)
    • ge_int32_int32

      public static boolean ge_int32_int32(int num1, int num2)
    • ge_int32_int64

      public static boolean ge_int32_int64(int num1, long num2)
    • ge_int64_int16

      public static boolean ge_int64_int16(long num1, short num2)
    • ge_int64_int32

      public static boolean ge_int64_int32(long num1, int num2)
    • ge_int64_int64

      public static boolean ge_int64_int64(long num1, long num2)
    • gt_int16_int16

      public static boolean gt_int16_int16(short num1, short num2)
    • gt_int16_int32

      public static boolean gt_int16_int32(short num1, int num2)
    • gt_int16_int64

      public static boolean gt_int16_int64(short num1, long num2)
    • gt_int32_int16

      public static boolean gt_int32_int16(int num1, short num2)
    • gt_int32_int32

      public static boolean gt_int32_int32(int num1, int num2)
    • gt_int32_int64

      public static boolean gt_int32_int64(int num1, long num2)
    • gt_int64_int16

      public static boolean gt_int64_int16(long num1, short num2)
    • gt_int64_int32

      public static boolean gt_int64_int32(long num1, int num2)
    • gt_int64_int64

      public static boolean gt_int64_int64(long num1, long num2)
    • int16_abs

      public static short int16_abs(short num)
    • int16_and

      public static short int16_and(short num1, short num2)
    • int16_in

      public static short int16_in(String str)
    • int16_larger

      public static short int16_larger(short num1, short num2)
    • int16_mod

      public static short int16_mod(short num1, short num2)
    • int16_not

      public static short int16_not(short num)
    • int16_or

      public static short int16_or(short num1, short num2)
    • int16_out

      public static String int16_out(short num)
    • int16_shl

      public static short int16_shl(short num1, int num2)
    • int16_shr

      public static short int16_shr(short num1, int num2)
    • int16_smaller

      public static short int16_smaller(short num1, short num2)
    • int16_to_int32

      public static int int16_to_int32(short num)
    • int16_to_int64

      public static long int16_to_int64(short num)
    • int16_uminus

      public static short int16_uminus(short num)
    • int16_uplus

      public static short int16_uplus(short num)
    • int16_xor

      public static short int16_xor(short num1, short num2)
    • int32_abs

      public static int int32_abs(int num)
    • int32_and

      public static int int32_and(int num1, int num2)
    • int32_cmp

      public static int int32_cmp(int l, int r)
    • int32_gcd

      public static int int32_gcd(int num1, int num2)
    • int32_in

      public static int int32_in(String str)
    • int32_inc

      public static int int32_inc(int num)
    • int32_larger

      public static int int32_larger(int num1, int num2)
    • int32_lcm

      public static int int32_lcm(int num1, int num2)
    • int32_mod

      public static int int32_mod(int num1, int num2)
    • int32_not

      public static int int32_not(int num)
    • int32_or

      public static int int32_or(int num1, int num2)
    • int32_out

      public static String int32_out(int num)
    • int32_shl

      public static int int32_shl(int num1, int num2)
    • int32_shr

      public static int int32_shr(int num1, int num2)
    • int32_smaller

      public static int int32_smaller(int num1, int num2)
    • int32_to_bool

      public static boolean int32_to_bool(int num)
    • int32_to_int16

      public static short int32_to_int16(int num)
    • int32_to_int64

      public static long int32_to_int64(int num)
    • int32_uminus

      public static int int32_uminus(int num)
    • int32_uplus

      public static int int32_uplus(int num)
    • int32_xor

      public static int int32_xor(int num1, int num2)
    • int64_abs

      public static long int64_abs(long num)
    • int64_and

      public static long int64_and(long num1, long num2)
    • int64_cmp

      public static int int64_cmp(long l, long r)
    • int64_dec

      public static long int64_dec(long num)
    • int64_gcd

      public static long int64_gcd(long num1, long num2)
    • int64_in

      public static long int64_in(String str)
    • int64_inc

      public static long int64_inc(long num)
    • int64_larger

      public static long int64_larger(long num1, long num2)
    • int64_lcm

      public static long int64_lcm(long num1, long num2)
    • int64_mod

      public static long int64_mod(long num1, long num2)
    • int64_not

      public static long int64_not(long num)
    • int64_or

      public static long int64_or(long num1, long num2)
    • int64_out

      public static String int64_out(long num)
    • int64_shl

      public static long int64_shl(long num1, int num2)
    • int64_shr

      public static long int64_shr(long num1, int num2)
    • int64_smaller

      public static long int64_smaller(long num1, long num2)
    • int64_to_float4

      public static jnr.ffi.Pointer int64_to_float4(long num)
    • int64_to_float8

      public static double int64_to_float8(long num)
    • int64_to_int16

      public static short int64_to_int16(long num)
    • int64_to_int32

      public static int int64_to_int32(long num)
    • int64_uminus

      public static long int64_uminus(long num)
    • int64_uplus

      public static long int64_uplus(long num)
    • int64_xor

      public static long int64_xor(long num1, long num2)
    • le_int16_int16

      public static boolean le_int16_int16(short num1, short num2)
    • le_int16_int32

      public static boolean le_int16_int32(short num1, int num2)
    • le_int16_int64

      public static boolean le_int16_int64(short num1, long num2)
    • le_int32_int16

      public static boolean le_int32_int16(int num1, short num2)
    • le_int32_int32

      public static boolean le_int32_int32(int num1, int num2)
    • le_int32_int64

      public static boolean le_int32_int64(int num1, long num2)
    • le_int64_int16

      public static boolean le_int64_int16(long num1, short num2)
    • le_int64_int32

      public static boolean le_int64_int32(long num1, int num2)
    • le_int64_int64

      public static boolean le_int64_int64(long num1, long num2)
    • lt_int16_int16

      public static boolean lt_int16_int16(short num1, short num2)
    • lt_int16_int32

      public static boolean lt_int16_int32(short num1, int num2)
    • lt_int16_int64

      public static boolean lt_int16_int64(short num1, long num2)
    • lt_int32_int16

      public static boolean lt_int32_int16(int num1, short num2)
    • lt_int32_int32

      public static boolean lt_int32_int32(int num1, int num2)
    • lt_int32_int64

      public static boolean lt_int32_int64(int num1, long num2)
    • lt_int64_int16

      public static boolean lt_int64_int16(long num1, short num2)
    • lt_int64_int32

      public static boolean lt_int64_int32(long num1, int num2)
    • lt_int64_int64

      public static boolean lt_int64_int64(long num1, long num2)
    • minus_int16_int16

      public static short minus_int16_int16(short num1, short num2)
    • minus_int16_int32

      public static int minus_int16_int32(short num1, int num2)
    • minus_int16_int64

      public static long minus_int16_int64(short num1, long num2)
    • minus_int32_int16

      public static int minus_int32_int16(int num1, short num2)
    • minus_int32_int32

      public static int minus_int32_int32(int num1, int num2)
    • minus_int32_int64

      public static long minus_int32_int64(int num1, long num2)
    • minus_int64_int16

      public static long minus_int64_int16(long num1, short num2)
    • minus_int64_int32

      public static long minus_int64_int32(long num1, int num2)
    • minus_int64_int64

      public static long minus_int64_int64(long num1, long num2)
    • mul_int16_int16

      public static short mul_int16_int16(short num1, short num2)
    • mul_int16_int32

      public static int mul_int16_int32(short num1, int num2)
    • mul_int16_int64

      public static long mul_int16_int64(short num1, long num2)
    • mul_int32_int16

      public static int mul_int32_int16(int num1, short num2)
    • mul_int32_int32

      public static int mul_int32_int32(int num1, int num2)
    • mul_int32_int64

      public static long mul_int32_int64(int num1, long num2)
    • mul_int64_int16

      public static long mul_int64_int16(long num1, short num2)
    • mul_int64_int32

      public static long mul_int64_int32(long num1, int num2)
    • mul_int64_int64

      public static long mul_int64_int64(long num1, long num2)
    • ne_int16_int16

      public static boolean ne_int16_int16(short num1, short num2)
    • ne_int16_int32

      public static boolean ne_int16_int32(short num1, int num2)
    • ne_int16_int64

      public static boolean ne_int16_int64(short num1, long num2)
    • ne_int32_int16

      public static boolean ne_int32_int16(int num1, short num2)
    • ne_int32_int32

      public static boolean ne_int32_int32(int num1, int num2)
    • ne_int32_int64

      public static boolean ne_int32_int64(int num1, long num2)
    • ne_int64_int16

      public static boolean ne_int64_int16(long num1, short num2)
    • ne_int64_int32

      public static boolean ne_int64_int32(long num1, int num2)
    • ne_int64_int64

      public static boolean ne_int64_int64(long num1, long num2)
    • numeric_copy

      public static jnr.ffi.Pointer numeric_copy(jnr.ffi.Pointer num)
    • pg_numeric_in

      public static jnr.ffi.Pointer pg_numeric_in(String str, int typmod)
    • pg_numeric_out

      public static String pg_numeric_out(jnr.ffi.Pointer num)
    • pg_numeric_typmodin

      public static int pg_numeric_typmodin(jnr.ffi.Pointer tl, int n)
    • pg_numeric_typmodout

      public static String pg_numeric_typmodout(int typmod)
    • pg_numeric

      public static jnr.ffi.Pointer pg_numeric(jnr.ffi.Pointer num, int typmod)
    • pg_numeric_abs

      public static jnr.ffi.Pointer pg_numeric_abs(jnr.ffi.Pointer num)
    • pg_numeric_uplus

      public static jnr.ffi.Pointer pg_numeric_uplus(jnr.ffi.Pointer num)
    • pg_numeric_uminus

      public static jnr.ffi.Pointer pg_numeric_uminus(jnr.ffi.Pointer num)
    • pg_numeric_sign

      public static jnr.ffi.Pointer pg_numeric_sign(jnr.ffi.Pointer num)
    • pg_numeric_round

      public static jnr.ffi.Pointer pg_numeric_round(jnr.ffi.Pointer num, int scale)
    • pg_numeric_trunc

      public static jnr.ffi.Pointer pg_numeric_trunc(jnr.ffi.Pointer num, int scale)
    • pg_numeric_ceil

      public static jnr.ffi.Pointer pg_numeric_ceil(jnr.ffi.Pointer num)
    • pg_numeric_floor

      public static jnr.ffi.Pointer pg_numeric_floor(jnr.ffi.Pointer num)
    • numeric_width_bucket

      public static int numeric_width_bucket(jnr.ffi.Pointer operand, jnr.ffi.Pointer bound1, jnr.ffi.Pointer bound2, int count)
    • pg_numeric_cmp

      public static int pg_numeric_cmp(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • pg_numeric_eq

      public static boolean pg_numeric_eq(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • pg_numeric_ne

      public static boolean pg_numeric_ne(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • pg_numeric_gt

      public static boolean pg_numeric_gt(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • pg_numeric_ge

      public static boolean pg_numeric_ge(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • pg_numeric_lt

      public static boolean pg_numeric_lt(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • pg_numeric_le

      public static boolean pg_numeric_le(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • numeric_hash

      public static int numeric_hash(jnr.ffi.Pointer key)
    • numeric_hash_extended

      public static long numeric_hash_extended(jnr.ffi.Pointer key, long seed)
    • pg_numeric_add

      public static jnr.ffi.Pointer pg_numeric_add(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • pg_numeric_sub

      public static jnr.ffi.Pointer pg_numeric_sub(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • pg_numeric_mul

      public static jnr.ffi.Pointer pg_numeric_mul(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • pg_numeric_div

      public static jnr.ffi.Pointer pg_numeric_div(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • pg_numeric_div_trunc

      public static jnr.ffi.Pointer pg_numeric_div_trunc(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • pg_numeric_mod

      public static jnr.ffi.Pointer pg_numeric_mod(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • pg_numeric_inc

      public static jnr.ffi.Pointer pg_numeric_inc(jnr.ffi.Pointer num)
    • pg_numeric_smaller

      public static jnr.ffi.Pointer pg_numeric_smaller(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • pg_numeric_larger

      public static jnr.ffi.Pointer pg_numeric_larger(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • pg_numeric_gcd

      public static jnr.ffi.Pointer pg_numeric_gcd(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • pg_numeric_lcm

      public static jnr.ffi.Pointer pg_numeric_lcm(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • pg_numeric_fac

      public static jnr.ffi.Pointer pg_numeric_fac(long num)
    • pg_numeric_sqrt

      public static jnr.ffi.Pointer pg_numeric_sqrt(jnr.ffi.Pointer num)
    • pg_numeric_exp

      public static jnr.ffi.Pointer pg_numeric_exp(jnr.ffi.Pointer num)
    • pg_numeric_ln

      public static jnr.ffi.Pointer pg_numeric_ln(jnr.ffi.Pointer num)
    • pg_numeric_log

      public static jnr.ffi.Pointer pg_numeric_log(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • numeric_pow

      public static jnr.ffi.Pointer numeric_pow(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • pg_numeric_scale

      public static int pg_numeric_scale(jnr.ffi.Pointer num)
    • pg_numeric_min_scale

      public static int pg_numeric_min_scale(jnr.ffi.Pointer num)
    • pg_numeric_trim_scale

      public static jnr.ffi.Pointer pg_numeric_trim_scale(jnr.ffi.Pointer num)
    • int32_to_numeric

      public static jnr.ffi.Pointer int32_to_numeric(int num)
    • numeric_to_int32

      public static int numeric_to_int32(jnr.ffi.Pointer num)
    • int64_to_numeric

      public static jnr.ffi.Pointer int64_to_numeric(long num)
    • numeric_to_int64

      public static long numeric_to_int64(jnr.ffi.Pointer num)
    • int16_to_numeric

      public static jnr.ffi.Pointer int16_to_numeric(short num)
    • numeric_to_int16

      public static short numeric_to_int16(jnr.ffi.Pointer num)
    • numeric_to_float4

      public static jnr.ffi.Pointer numeric_to_float4(jnr.ffi.Pointer num)
    • numeric_to_float8

      public static double numeric_to_float8(jnr.ffi.Pointer num)
    • float4_to_numeric

      public static jnr.ffi.Pointer float4_to_numeric(jnr.ffi.Pointer num)
    • float8_to_numeric

      public static jnr.ffi.Pointer float8_to_numeric(double num)
    • add_float4_float4

      public static jnr.ffi.Pointer add_float4_float4(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • add_float4_float8

      public static double add_float4_float8(jnr.ffi.Pointer num1, double num2)
    • add_float8_float4

      public static double add_float8_float4(double num1, jnr.ffi.Pointer num2)
    • add_float8_float8

      public static double add_float8_float8(double num1, double num2)
    • div_float4_float4

      public static jnr.ffi.Pointer div_float4_float4(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • div_float4_float8

      public static double div_float4_float8(jnr.ffi.Pointer num1, double num2)
    • div_float8_float4

      public static double div_float8_float4(double num1, jnr.ffi.Pointer num2)
    • div_float8_float8

      public static double div_float8_float8(double num1, double num2)
    • eq_float4_float4

      public static boolean eq_float4_float4(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • eq_float4_float8

      public static boolean eq_float4_float8(jnr.ffi.Pointer num1, double num2)
    • eq_float8_float4

      public static boolean eq_float8_float4(double num1, jnr.ffi.Pointer num2)
    • eq_float8_float8

      public static boolean eq_float8_float8(double num1, double num2)
    • float4_abs

      public static jnr.ffi.Pointer float4_abs(jnr.ffi.Pointer num)
    • float4_in

      public static jnr.ffi.Pointer float4_in(String num)
    • float4_larger

      public static jnr.ffi.Pointer float4_larger(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • float4_out

      public static String float4_out(jnr.ffi.Pointer num)
    • float4_smaller

      public static jnr.ffi.Pointer float4_smaller(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • float4_to_float8

      public static double float4_to_float8(jnr.ffi.Pointer num)
    • float4_to_int16

      public static short float4_to_int16(jnr.ffi.Pointer num)
    • float4_to_int32

      public static int float4_to_int32(jnr.ffi.Pointer num)
    • float4_um

      public static jnr.ffi.Pointer float4_um(jnr.ffi.Pointer num)
    • float4_up

      public static jnr.ffi.Pointer float4_up(jnr.ffi.Pointer num)
    • float8_abs

      public static double float8_abs(double num)
    • float8_acos

      public static double float8_acos(double num)
    • float8_acosd

      public static double float8_acosd(double num)
    • float8_acosh

      public static double float8_acosh(double num)
    • float8_asin

      public static double float8_asin(double num)
    • float8_asind

      public static double float8_asind(double num)
    • float8_asinh

      public static double float8_asinh(double num)
    • float8_atan

      public static double float8_atan(double num)
    • float8_atan2

      public static double float8_atan2(double num1, double num2)
    • float8_atan2d

      public static double float8_atan2d(double num1, double num2)
    • float8_atand

      public static double float8_atand(double num)
    • float8_atanh

      public static double float8_atanh(double num)
    • float8_cbrt

      public static double float8_cbrt(double num)
    • float8_ceil

      public static double float8_ceil(double num)
    • float8_cos

      public static double float8_cos(double num)
    • float8_cosd

      public static double float8_cosd(double num)
    • float8_cosh

      public static double float8_cosh(double num)
    • float8_cot

      public static double float8_cot(double num)
    • float8_cotd

      public static double float8_cotd(double num)
    • float8_degrees

      public static double float8_degrees(double num)
    • float8_exp

      public static double float8_exp(double num)
    • float8_floor

      public static double float8_floor(double num)
    • float8_gamma

      public static double float8_gamma(double num)
    • float8_in

      public static double float8_in(String str)
    • float8_larger

      public static double float8_larger(double num1, double num2)
    • meos_strtod

      public static double meos_strtod(String str, jnr.ffi.Pointer endptr)
    • float8_lgamma

      public static double float8_lgamma(double num)
    • float8_ln

      public static double float8_ln(double num)
    • float8_log10

      public static double float8_log10(double num)
    • float8_out

      public static String float8_out(double num, int maxdd)
    • float8_pi

      public static double float8_pi()
    • float8_pow

      public static double float8_pow(double num1, double num2)
    • float8_radians

      public static double float8_radians(double num)
    • float8_rint

      public static double float8_rint(double num)
    • float8_round

      public static double float8_round(double num, int maxdd)
    • float8_sign

      public static double float8_sign(double num)
    • float8_sin

      public static double float8_sin(double num)
    • float8_sind

      public static double float8_sind(double num)
    • float8_sinh

      public static double float8_sinh(double num)
    • float8_smaller

      public static double float8_smaller(double num1, double num2)
    • float8_sqrt

      public static double float8_sqrt(double num)
    • float8_tan

      public static double float8_tan(double num)
    • float8_tand

      public static double float8_tand(double num)
    • float8_tanh

      public static double float8_tanh(double num)
    • float8_to_float4

      public static jnr.ffi.Pointer float8_to_float4(double num)
    • float8_to_int16

      public static short float8_to_int16(double num)
    • float8_to_int32

      public static int float8_to_int32(double num)
    • float8_trunc

      public static double float8_trunc(double num)
    • float8_um

      public static double float8_um(double num)
    • float8_up

      public static double float8_up(double num)
    • float8_width_bucket

      public static int float8_width_bucket(double num, double bound1, double bound2, int count)
    • ge_float4_float4

      public static boolean ge_float4_float4(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • ge_float4_float8

      public static boolean ge_float4_float8(jnr.ffi.Pointer num1, double num2)
    • ge_float8_float4

      public static boolean ge_float8_float4(double num1, jnr.ffi.Pointer num2)
    • ge_float8_float8

      public static boolean ge_float8_float8(double num1, double num2)
    • gt_float4_float4

      public static boolean gt_float4_float4(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • gt_float4_float8

      public static boolean gt_float4_float8(jnr.ffi.Pointer num1, double num2)
    • gt_float8_float4

      public static boolean gt_float8_float4(double num1, jnr.ffi.Pointer num2)
    • gt_float8_float8

      public static boolean gt_float8_float8(double num1, double num2)
    • int16_to_float4

      public static jnr.ffi.Pointer int16_to_float4(short num)
    • int16_to_float8

      public static double int16_to_float8(short num)
    • int32_to_float4

      public static jnr.ffi.Pointer int32_to_float4(int num)
    • int32_to_float8

      public static double int32_to_float8(int num)
    • le_float4_float4

      public static boolean le_float4_float4(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • le_float4_float8

      public static boolean le_float4_float8(jnr.ffi.Pointer num1, double num2)
    • le_float8_float4

      public static boolean le_float8_float4(double num1, jnr.ffi.Pointer num2)
    • le_float8_float8

      public static boolean le_float8_float8(double num1, double num2)
    • lt_float4_float4

      public static boolean lt_float4_float4(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • lt_float4_float8

      public static boolean lt_float4_float8(jnr.ffi.Pointer num1, double num2)
    • lt_float8_float4

      public static boolean lt_float8_float4(double num1, jnr.ffi.Pointer num2)
    • lt_float8_float8

      public static boolean lt_float8_float8(double num1, double num2)
    • minus_float4_float4

      public static jnr.ffi.Pointer minus_float4_float4(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • minus_float4_float8

      public static double minus_float4_float8(jnr.ffi.Pointer num1, double num2)
    • minus_float8_float4

      public static double minus_float8_float4(double num1, jnr.ffi.Pointer num2)
    • minus_float8_float8

      public static double minus_float8_float8(double num1, double num2)
    • mul_float4_float4

      public static jnr.ffi.Pointer mul_float4_float4(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • mul_float4_float8

      public static double mul_float4_float8(jnr.ffi.Pointer num1, double num2)
    • mul_float8_float4

      public static double mul_float8_float4(double num1, jnr.ffi.Pointer num2)
    • mul_float8_float8

      public static double mul_float8_float8(double num1, double num2)
    • ne_float4_float4

      public static boolean ne_float4_float4(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • ne_float4_float8

      public static boolean ne_float4_float8(jnr.ffi.Pointer num1, double num2)
    • ne_float8_float4

      public static boolean ne_float8_float4(double num1, jnr.ffi.Pointer num2)
    • ne_float8_float8

      public static boolean ne_float8_float8(double num1, double num2)
    • pg_float4_cmp

      public static int pg_float4_cmp(jnr.ffi.Pointer a, jnr.ffi.Pointer b)
    • pg_float8_cmp

      public static int pg_float8_cmp(double a, double b)
    • pg_cstring_to_text

      public static jnr.ffi.Pointer pg_cstring_to_text(String str)
    • cstring_to_text

      public static jnr.ffi.Pointer cstring_to_text(String str)
    • int32_to_bin

      public static jnr.ffi.Pointer int32_to_bin(int num)
    • int32_to_hex

      public static jnr.ffi.Pointer int32_to_hex(int num)
    • int32_to_oct

      public static jnr.ffi.Pointer int32_to_oct(int num)
    • int64_to_bin

      public static jnr.ffi.Pointer int64_to_bin(long num)
    • int64_to_hex

      public static jnr.ffi.Pointer int64_to_hex(long num)
    • int64_to_oct

      public static jnr.ffi.Pointer int64_to_oct(long num)
    • pg_icu_unicode_version

      public static jnr.ffi.Pointer pg_icu_unicode_version()
    • pg_text_concat

      public static jnr.ffi.Pointer pg_text_concat(jnr.ffi.Pointer textarr, int count)
    • pg_text_concat_ws

      public static jnr.ffi.Pointer pg_text_concat_ws(jnr.ffi.Pointer textarr, int count, jnr.ffi.Pointer sep)
    • pg_text_ge

      public static boolean pg_text_ge(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • pg_text_gt

      public static boolean pg_text_gt(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • pg_text_larger

      public static jnr.ffi.Pointer pg_text_larger(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • pg_text_le

      public static boolean pg_text_le(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • pg_text_left

      public static jnr.ffi.Pointer pg_text_left(jnr.ffi.Pointer txt, int n)
    • pg_text_lt

      public static boolean pg_text_lt(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • pg_text_pattern_ge

      public static boolean pg_text_pattern_ge(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • pg_text_pattern_gt

      public static boolean pg_text_pattern_gt(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • pg_text_pattern_le

      public static boolean pg_text_pattern_le(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • pg_text_pattern_lt

      public static boolean pg_text_pattern_lt(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • pg_text_reverse

      public static jnr.ffi.Pointer pg_text_reverse(jnr.ffi.Pointer txt)
    • pg_text_right

      public static jnr.ffi.Pointer pg_text_right(jnr.ffi.Pointer txt, int n)
    • pg_text_smaller

      public static jnr.ffi.Pointer pg_text_smaller(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • pg_text_starts_with

      public static boolean pg_text_starts_with(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • pg_text_substr

      public static jnr.ffi.Pointer pg_text_substr(jnr.ffi.Pointer txt, int start, int length)
    • pg_text_substr_no_len

      public static jnr.ffi.Pointer pg_text_substr_no_len(jnr.ffi.Pointer txt, int start)
    • pg_unicode_assigned

      public static boolean pg_unicode_assigned(jnr.ffi.Pointer txt)
    • pg_unicode_is_normalized

      public static boolean pg_unicode_is_normalized(jnr.ffi.Pointer txt, jnr.ffi.Pointer fmt)
    • pg_unicode_normalize_func

      public static jnr.ffi.Pointer pg_unicode_normalize_func(jnr.ffi.Pointer txt, jnr.ffi.Pointer fmt)
    • pg_unicode_version

      public static jnr.ffi.Pointer pg_unicode_version()
    • pg_unistr

      public static jnr.ffi.Pointer pg_unistr(jnr.ffi.Pointer txt)
    • pg_text_to_cstring

      public static String pg_text_to_cstring(jnr.ffi.Pointer txt)
    • text_to_cstring

      public static String text_to_cstring(jnr.ffi.Pointer txt)
    • text_cat

      public static jnr.ffi.Pointer text_cat(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • text_cmp

      public static int text_cmp(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2, int collid)
    • text_copy

      public static jnr.ffi.Pointer text_copy(jnr.ffi.Pointer txt)
    • text_eq

      public static boolean text_eq(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • text_in

      public static jnr.ffi.Pointer text_in(String str)
    • text_initcap

      public static jnr.ffi.Pointer text_initcap(jnr.ffi.Pointer txt)
    • text_len

      public static int text_len(jnr.ffi.Pointer txt)
    • text_lower

      public static jnr.ffi.Pointer text_lower(jnr.ffi.Pointer txt)
    • text_ne

      public static boolean text_ne(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • text_octetlen

      public static int text_octetlen(jnr.ffi.Pointer txt)
    • text_out

      public static String text_out(jnr.ffi.Pointer txt)
    • text_overlay

      public static jnr.ffi.Pointer text_overlay(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2, int from, int count)
    • text_overlay_no_len

      public static jnr.ffi.Pointer text_overlay_no_len(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2, int from)
    • text_pos

      public static int text_pos(jnr.ffi.Pointer txt, jnr.ffi.Pointer search)
    • text_upper

      public static jnr.ffi.Pointer text_upper(jnr.ffi.Pointer txt)
    • textcat_text_text

      public static jnr.ffi.Pointer textcat_text_text(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • bytea_copy

      public static jnr.ffi.Pointer bytea_copy(jnr.ffi.Pointer ba)
    • add_date_int

      public static int add_date_int(int date, int days)
    • add_date_interval

      public static int add_date_interval(int date, jnr.ffi.Pointer interv)
    • cmp_date_timestamp

      public static int cmp_date_timestamp(int date, LocalDateTime ts2)
    • cmp_date_date

      public static int cmp_date_date(int date1, int date2)
    • cmp_date_timestamptz

      public static int cmp_date_timestamptz(int date, OffsetDateTime ts2)
    • cmp_timestamp_date

      public static int cmp_timestamp_date(LocalDateTime ts1, int date)
    • cmp_timestamptz_date

      public static int cmp_timestamptz_date(OffsetDateTime ts1, int date)
    • date_extract

      public static jnr.ffi.Pointer date_extract(int date, jnr.ffi.Pointer units)
    • date_hash

      public static int date_hash(int date)
    • date_hash_extended

      public static long date_hash_extended(int date, long seed)
    • date_is_finite

      public static boolean date_is_finite(int date)
    • date_time_to_timestamp

      public static LocalDateTime date_time_to_timestamp(int date, jnr.ffi.Pointer time)
    • date_to_timestamp

      public static LocalDateTime date_to_timestamp(int date)
    • date_to_timestamptz

      public static LocalDateTime date_to_timestamptz(int date)
    • eq_date_date

      public static boolean eq_date_date(int date1, int date2)
    • eq_date_timestamp

      public static boolean eq_date_timestamp(int date, LocalDateTime ts2)
    • eq_date_timestamptz

      public static boolean eq_date_timestamptz(int date, OffsetDateTime ts2)
    • eq_timestamp_date

      public static boolean eq_timestamp_date(LocalDateTime ts1, int date)
    • eq_timestamptz_date

      public static boolean eq_timestamptz_date(OffsetDateTime ts1, int date)
    • ge_date_date

      public static boolean ge_date_date(int date1, int date2)
    • ge_date_timestamp

      public static boolean ge_date_timestamp(int date, LocalDateTime ts)
    • ge_date_timestamptz

      public static boolean ge_date_timestamptz(int date, OffsetDateTime ts2)
    • ge_timestamp_date

      public static boolean ge_timestamp_date(LocalDateTime ts1, int date)
    • ge_timestamptz_date

      public static boolean ge_timestamptz_date(OffsetDateTime ts1, int date)
    • gt_date_date

      public static boolean gt_date_date(int date1, int date2)
    • gt_date_timestamp

      public static boolean gt_date_timestamp(int date, LocalDateTime ts)
    • gt_date_timestamptz

      public static boolean gt_date_timestamptz(int date, OffsetDateTime ts2)
    • gt_timestamp_date

      public static boolean gt_timestamp_date(LocalDateTime ts1, int date)
    • gt_timestamptz_date

      public static boolean gt_timestamptz_date(OffsetDateTime ts1, int date)
    • le_date_date

      public static boolean le_date_date(int date1, int date2)
    • le_date_timestamp

      public static boolean le_date_timestamp(int date, LocalDateTime ts)
    • le_date_timestamptz

      public static boolean le_date_timestamptz(int date, OffsetDateTime ts2)
    • le_timestamp_date

      public static boolean le_timestamp_date(LocalDateTime ts1, int date)
    • le_timestamptz_date

      public static boolean le_timestamptz_date(OffsetDateTime ts1, int date)
    • lt_date_date

      public static boolean lt_date_date(int date1, int date2)
    • lt_date_timestamp

      public static boolean lt_date_timestamp(int date, LocalDateTime ts)
    • lt_date_timestamptz

      public static boolean lt_date_timestamptz(int date, OffsetDateTime ts2)
    • lt_timestamp_date

      public static boolean lt_timestamp_date(LocalDateTime ts1, int date)
    • lt_timestamptz_date

      public static boolean lt_timestamptz_date(OffsetDateTime ts1, int date)
    • minus_date_date

      public static int minus_date_date(int date1, int date2)
    • minus_date_int

      public static int minus_date_int(int date, int days)
    • minus_date_interval

      public static int minus_date_interval(int date, jnr.ffi.Pointer span)
    • ne_date_date

      public static boolean ne_date_date(int date1, int date2)
    • ne_date_timestamp

      public static boolean ne_date_timestamp(int date, LocalDateTime ts)
    • ne_date_timestamptz

      public static boolean ne_date_timestamptz(int date, OffsetDateTime ts2)
    • ne_timestamp_date

      public static boolean ne_timestamp_date(LocalDateTime ts1, int date)
    • ne_timestamptz_date

      public static boolean ne_timestamptz_date(OffsetDateTime ts1, int date)
    • pg_date_in

      public static int pg_date_in(String str)
    • pg_date_larger

      public static int pg_date_larger(int date1, int date2)
    • pg_date_make

      public static int pg_date_make(int year, int mon, int mday)
    • pg_date_smaller

      public static int pg_date_smaller(int date1, int date2)
    • pg_date_out

      public static String pg_date_out(int date)
    • time_overlaps

      public static boolean time_overlaps(jnr.ffi.Pointer ts1, jnr.ffi.Pointer te1, jnr.ffi.Pointer ts2, jnr.ffi.Pointer te2)
    • timestamp_to_date

      public static int timestamp_to_date(LocalDateTime timestamp)
    • timestamptz_to_date

      public static int timestamptz_to_date(OffsetDateTime timestamp)
    • date_timetz_to_timestamptz

      public static OffsetDateTime date_timetz_to_timestamptz(int date, jnr.ffi.Pointer timetz)
    • interval_to_time

      public static jnr.ffi.Pointer interval_to_time(jnr.ffi.Pointer interv)
    • minus_time_interval

      public static jnr.ffi.Pointer minus_time_interval(jnr.ffi.Pointer time, jnr.ffi.Pointer interv)
    • minus_time_time

      public static jnr.ffi.Pointer minus_time_time(jnr.ffi.Pointer time1, jnr.ffi.Pointer time2)
    • minus_timetz_interval

      public static jnr.ffi.Pointer minus_timetz_interval(jnr.ffi.Pointer timetz, jnr.ffi.Pointer interv)
    • pg_time_cmp

      public static int pg_time_cmp(jnr.ffi.Pointer time1, jnr.ffi.Pointer time2)
    • pg_time_eq

      public static boolean pg_time_eq(jnr.ffi.Pointer time1, jnr.ffi.Pointer time2)
    • pg_time_ge

      public static boolean pg_time_ge(jnr.ffi.Pointer time1, jnr.ffi.Pointer time2)
    • pg_time_gt

      public static boolean pg_time_gt(jnr.ffi.Pointer time1, jnr.ffi.Pointer time2)
    • pg_time_hash

      public static int pg_time_hash(jnr.ffi.Pointer time)
    • pg_time_hash_extended

      public static long pg_time_hash_extended(jnr.ffi.Pointer time, int seed)
    • pg_time_in

      public static jnr.ffi.Pointer pg_time_in(String str, int typmod)
    • pg_time_larger

      public static jnr.ffi.Pointer pg_time_larger(jnr.ffi.Pointer time1, jnr.ffi.Pointer time2)
    • pg_time_le

      public static boolean pg_time_le(jnr.ffi.Pointer time1, jnr.ffi.Pointer time2)
    • pg_time_lt

      public static boolean pg_time_lt(jnr.ffi.Pointer time1, jnr.ffi.Pointer time2)
    • pg_time_ne

      public static boolean pg_time_ne(jnr.ffi.Pointer time1, jnr.ffi.Pointer time2)
    • pg_time_out

      public static String pg_time_out(jnr.ffi.Pointer time)
    • pg_time_part

      public static double pg_time_part(jnr.ffi.Pointer time, jnr.ffi.Pointer units)
    • pg_time_scale

      public static jnr.ffi.Pointer pg_time_scale(jnr.ffi.Pointer date, int typmod)
    • pg_time_smaller

      public static jnr.ffi.Pointer pg_time_smaller(jnr.ffi.Pointer time1, jnr.ffi.Pointer time2)
    • pg_timetz_at_local

      public static jnr.ffi.Pointer pg_timetz_at_local(jnr.ffi.Pointer timetz)
    • pg_timetz_cmp

      public static int pg_timetz_cmp(jnr.ffi.Pointer timetz1, jnr.ffi.Pointer timetz2)
    • pg_timetz_eq

      public static boolean pg_timetz_eq(jnr.ffi.Pointer timetz1, jnr.ffi.Pointer timetz2)
    • pg_timetz_ge

      public static boolean pg_timetz_ge(jnr.ffi.Pointer timetz1, jnr.ffi.Pointer timetz2)
    • pg_timetz_gt

      public static boolean pg_timetz_gt(jnr.ffi.Pointer timetz1, jnr.ffi.Pointer timetz2)
    • pg_timetz_hash

      public static int pg_timetz_hash(jnr.ffi.Pointer timetz)
    • pg_timetz_hash_extended

      public static long pg_timetz_hash_extended(jnr.ffi.Pointer timetz, long seed)
    • pg_timetz_in

      public static jnr.ffi.Pointer pg_timetz_in(String str, int typmod)
    • pg_timetz_izone

      public static jnr.ffi.Pointer pg_timetz_izone(jnr.ffi.Pointer timetz, jnr.ffi.Pointer zone)
    • pg_timetz_le

      public static boolean pg_timetz_le(jnr.ffi.Pointer timetz1, jnr.ffi.Pointer timetz2)
    • pg_timetz_lt

      public static boolean pg_timetz_lt(jnr.ffi.Pointer timetz1, jnr.ffi.Pointer timetz2)
    • pg_timetz_ne

      public static boolean pg_timetz_ne(jnr.ffi.Pointer timetz1, jnr.ffi.Pointer timetz2)
    • pg_timetz_out

      public static String pg_timetz_out(jnr.ffi.Pointer timetz)
    • pg_timetz_larger

      public static jnr.ffi.Pointer pg_timetz_larger(jnr.ffi.Pointer timetz1, jnr.ffi.Pointer timetz2)
    • pg_timetz_part

      public static double pg_timetz_part(jnr.ffi.Pointer timetz, jnr.ffi.Pointer units)
    • pg_timetz_scale

      public static jnr.ffi.Pointer pg_timetz_scale(jnr.ffi.Pointer timetz, int typmod)
    • pg_timetz_smaller

      public static jnr.ffi.Pointer pg_timetz_smaller(jnr.ffi.Pointer timetz1, jnr.ffi.Pointer timetz2)
    • pg_timetz_zone

      public static jnr.ffi.Pointer pg_timetz_zone(jnr.ffi.Pointer timetz, jnr.ffi.Pointer zone)
    • plus_time_interval

      public static jnr.ffi.Pointer plus_time_interval(jnr.ffi.Pointer time, jnr.ffi.Pointer interv)
    • plus_timetz_interval

      public static jnr.ffi.Pointer plus_timetz_interval(jnr.ffi.Pointer timetz, jnr.ffi.Pointer interv)
    • time_extract

      public static jnr.ffi.Pointer time_extract(jnr.ffi.Pointer time, jnr.ffi.Pointer units)
    • time_make

      public static jnr.ffi.Pointer time_make(int tm_hour, int tm_min, double sec)
    • time_to_interval

      public static jnr.ffi.Pointer time_to_interval(jnr.ffi.Pointer time)
    • time_to_timetz

      public static jnr.ffi.Pointer time_to_timetz(jnr.ffi.Pointer time)
    • timestamp_to_time

      public static jnr.ffi.Pointer timestamp_to_time(LocalDateTime ts)
    • timestamptz_to_time

      public static jnr.ffi.Pointer timestamptz_to_time(OffsetDateTime tztz)
    • timestamptz_to_timetz

      public static jnr.ffi.Pointer timestamptz_to_timetz(OffsetDateTime tztz)
    • timetz_overlaps

      public static boolean timetz_overlaps(jnr.ffi.Pointer ts1, jnr.ffi.Pointer te1, jnr.ffi.Pointer ts2, jnr.ffi.Pointer te2)
    • timetz_to_time

      public static jnr.ffi.Pointer timetz_to_time(jnr.ffi.Pointer timetz)
    • timetz_extract

      public static jnr.ffi.Pointer timetz_extract(jnr.ffi.Pointer timetz, jnr.ffi.Pointer units)
    • add_timestamp_interval

      public static LocalDateTime add_timestamp_interval(LocalDateTime ts, jnr.ffi.Pointer interv)
    • add_timestamptz_interval

      public static LocalDateTime add_timestamptz_interval(OffsetDateTime tstz, jnr.ffi.Pointer interv)
    • add_timestamptz_interval_at_zone

      public static LocalDateTime add_timestamptz_interval_at_zone(OffsetDateTime tstz, jnr.ffi.Pointer interv, jnr.ffi.Pointer zone)
    • cmp_timestamp_timestamp

      public static int cmp_timestamp_timestamp(LocalDateTime ts1, LocalDateTime ts2)
    • cmp_timestamp_timestamptz

      public static int cmp_timestamp_timestamptz(LocalDateTime ts, OffsetDateTime tstz)
    • cmp_timestamptz_timestamp

      public static int cmp_timestamptz_timestamp(OffsetDateTime tstz, LocalDateTime ts)
    • eq_timestamp_timestamp

      public static boolean eq_timestamp_timestamp(LocalDateTime ts1, LocalDateTime ts2)
    • eq_timestamp_timestamptz

      public static boolean eq_timestamp_timestamptz(LocalDateTime ts, OffsetDateTime tstz)
    • eq_timestamptz_timestamp

      public static boolean eq_timestamptz_timestamp(OffsetDateTime tstz, LocalDateTime ts)
    • float8_to_timestamptz

      public static OffsetDateTime float8_to_timestamptz(double seconds)
    • gt_timestamp_timestamp

      public static boolean gt_timestamp_timestamp(LocalDateTime ts1, LocalDateTime ts2)
    • gt_timestamp_timestamptz

      public static boolean gt_timestamp_timestamptz(LocalDateTime ts, OffsetDateTime tstz)
    • gt_timestamptz_timestamp

      public static boolean gt_timestamptz_timestamp(OffsetDateTime tstz, LocalDateTime ts)
    • ge_timestamp_timestamp

      public static boolean ge_timestamp_timestamp(LocalDateTime ts1, LocalDateTime ts2)
    • ge_timestamp_timestamptz

      public static boolean ge_timestamp_timestamptz(LocalDateTime ts, OffsetDateTime tstz)
    • ge_timestamptz_timestamp

      public static boolean ge_timestamptz_timestamp(OffsetDateTime tstz, LocalDateTime ts)
    • le_timestamp_timestamp

      public static boolean le_timestamp_timestamp(LocalDateTime ts1, LocalDateTime ts2)
    • le_timestamp_timestamptz

      public static boolean le_timestamp_timestamptz(LocalDateTime ts, OffsetDateTime tstz)
    • le_timestamptz_timestamp

      public static boolean le_timestamptz_timestamp(OffsetDateTime tstz, LocalDateTime ts)
    • lt_timestamp_timestamp

      public static boolean lt_timestamp_timestamp(LocalDateTime ts1, LocalDateTime ts2)
    • lt_timestamp_timestamptz

      public static boolean lt_timestamp_timestamptz(LocalDateTime ts, OffsetDateTime tstz)
    • lt_timestamptz_timestamp

      public static boolean lt_timestamptz_timestamp(OffsetDateTime tstz, LocalDateTime ts)
    • minus_timestamp_interval

      public static LocalDateTime minus_timestamp_interval(LocalDateTime ts, jnr.ffi.Pointer interv)
    • minus_timestamp_timestamp

      public static jnr.ffi.Pointer minus_timestamp_timestamp(LocalDateTime ts1, LocalDateTime ts2)
    • minus_timestamptz_interval

      public static OffsetDateTime minus_timestamptz_interval(OffsetDateTime tstz, jnr.ffi.Pointer interv)
    • minus_timestamptz_interval_at_zone

      public static OffsetDateTime minus_timestamptz_interval_at_zone(OffsetDateTime tstz, jnr.ffi.Pointer interv, jnr.ffi.Pointer zone)
    • minus_timestamptz_timestamptz

      public static jnr.ffi.Pointer minus_timestamptz_timestamptz(OffsetDateTime tstz1, OffsetDateTime tstz2)
    • ne_timestamp_timestamp

      public static boolean ne_timestamp_timestamp(LocalDateTime ts1, LocalDateTime ts2)
    • ne_timestamp_timestamptz

      public static boolean ne_timestamp_timestamptz(LocalDateTime ts, OffsetDateTime tstz)
    • ne_timestamptz_timestamp

      public static boolean ne_timestamptz_timestamp(OffsetDateTime tstz, LocalDateTime ts)
    • pg_interval_justify_days

      public static jnr.ffi.Pointer pg_interval_justify_days(jnr.ffi.Pointer interv)
    • pg_interval_justify_hours

      public static jnr.ffi.Pointer pg_interval_justify_hours(jnr.ffi.Pointer interv)
    • pg_interval_justify_interval

      public static jnr.ffi.Pointer pg_interval_justify_interval(jnr.ffi.Pointer interv)
    • pg_timestamp_age

      public static jnr.ffi.Pointer pg_timestamp_age(LocalDateTime ts1, LocalDateTime ts2)
    • pg_timestamp_at_local

      public static OffsetDateTime pg_timestamp_at_local(LocalDateTime ts)
    • pg_timestamp_bin

      public static LocalDateTime pg_timestamp_bin(LocalDateTime ts, jnr.ffi.Pointer stride, LocalDateTime origin)
    • pg_timestamp_hash

      public static int pg_timestamp_hash(LocalDateTime ts)
    • pg_timestamp_hash_extended

      public static long pg_timestamp_hash_extended(OffsetDateTime tstz, long seed)
    • pg_timestamp_in

      public static LocalDateTime pg_timestamp_in(String str, int typmod)
    • pg_timestamp_izone

      public static OffsetDateTime pg_timestamp_izone(LocalDateTime ts, jnr.ffi.Pointer zone)
    • time_of_day

      public static jnr.ffi.Pointer time_of_day()
    • pg_timestamp_larger

      public static LocalDateTime pg_timestamp_larger(LocalDateTime ts1, LocalDateTime ts2)
    • pg_timestamp_out

      public static String pg_timestamp_out(LocalDateTime ts)
    • pg_timestamp_part

      public static double pg_timestamp_part(LocalDateTime ts, jnr.ffi.Pointer units)
    • pg_timestamp_scale

      public static LocalDateTime pg_timestamp_scale(LocalDateTime ts, int typmod)
    • pg_timestamp_smaller

      public static LocalDateTime pg_timestamp_smaller(LocalDateTime ts1, LocalDateTime ts2)
    • pg_timestamp_trunc

      public static LocalDateTime pg_timestamp_trunc(LocalDateTime ts, jnr.ffi.Pointer units)
    • pg_timestamp_zone

      public static OffsetDateTime pg_timestamp_zone(LocalDateTime ts, jnr.ffi.Pointer zone)
    • pg_timestamptz_age

      public static jnr.ffi.Pointer pg_timestamptz_age(OffsetDateTime tstz1, OffsetDateTime tstz2)
    • pg_timestamptz_bin

      public static OffsetDateTime pg_timestamptz_bin(OffsetDateTime tstz, jnr.ffi.Pointer stride, OffsetDateTime origin)
    • pg_timestamptz_hash

      public static int pg_timestamptz_hash(OffsetDateTime tstz)
    • pg_timestamptz_hash_extended

      public static long pg_timestamptz_hash_extended(OffsetDateTime tstz, long seed)
    • pg_timestamptz_in

      public static OffsetDateTime pg_timestamptz_in(String str, int typmod)
    • pg_timestamptz_izone

      public static LocalDateTime pg_timestamptz_izone(OffsetDateTime tstz, jnr.ffi.Pointer zone)
    • pg_timestamptz_out

      public static String pg_timestamptz_out(OffsetDateTime tstz)
    • pg_timestamptz_part

      public static double pg_timestamptz_part(OffsetDateTime tstz, jnr.ffi.Pointer units)
    • pg_timestamptz_scale

      public static OffsetDateTime pg_timestamptz_scale(OffsetDateTime tstz, int typmod)
    • pg_timestamptz_trunc

      public static OffsetDateTime pg_timestamptz_trunc(OffsetDateTime tstz, jnr.ffi.Pointer units)
    • pg_timestamptz_trunc_zone

      public static OffsetDateTime pg_timestamptz_trunc_zone(OffsetDateTime tstz, jnr.ffi.Pointer units, jnr.ffi.Pointer zone)
    • pg_timestamptz_zone

      public static LocalDateTime pg_timestamptz_zone(OffsetDateTime tstz, jnr.ffi.Pointer zone)
    • timestamp_extract

      public static jnr.ffi.Pointer timestamp_extract(LocalDateTime ts, jnr.ffi.Pointer units)
    • timestamp_is_finite

      public static boolean timestamp_is_finite(LocalDateTime ts)
    • timestamp_make

      public static LocalDateTime timestamp_make(int year, int month, int mday, int hour, int min, double sec)
    • timestamp_overlaps

      public static boolean timestamp_overlaps(LocalDateTime ts1, LocalDateTime te1, LocalDateTime ts2, LocalDateTime te2)
    • timestamp_to_timestamptz

      public static OffsetDateTime timestamp_to_timestamptz(LocalDateTime ts)
    • timestamptz_at_local

      public static OffsetDateTime timestamptz_at_local(OffsetDateTime tstz)
    • pg_timestamptz_at_local

      public static OffsetDateTime pg_timestamptz_at_local(OffsetDateTime tstz)
    • timestamptz_extract

      public static jnr.ffi.Pointer timestamptz_extract(OffsetDateTime tstz, jnr.ffi.Pointer units)
    • timestamptz_make

      public static OffsetDateTime timestamptz_make(int year, int month, int day, int hour, int min, double sec)
    • timestamptz_make_at_timezone

      public static OffsetDateTime timestamptz_make_at_timezone(int year, int month, int day, int hour, int min, double sec, jnr.ffi.Pointer zone)
    • timestamptz_shift

      public static OffsetDateTime timestamptz_shift(OffsetDateTime tstz, jnr.ffi.Pointer interv)
    • timestamptz_to_timestamp

      public static LocalDateTime timestamptz_to_timestamp(OffsetDateTime tstz)
    • add_interval_interval

      public static jnr.ffi.Pointer add_interval_interval(jnr.ffi.Pointer interv1, jnr.ffi.Pointer interv2)
    • div_interval_float8

      public static jnr.ffi.Pointer div_interval_float8(jnr.ffi.Pointer interv, double factor)
    • interval_extract

      public static jnr.ffi.Pointer interval_extract(jnr.ffi.Pointer interv, jnr.ffi.Pointer units)
    • interval_is_finite

      public static boolean interval_is_finite(jnr.ffi.Pointer interv)
    • interval_make

      public static jnr.ffi.Pointer interval_make(int years, int months, int weeks, int days, int hours, int mins, double secs)
    • interval_negate

      public static jnr.ffi.Pointer interval_negate(jnr.ffi.Pointer interv)
    • minus_interval_interval

      public static jnr.ffi.Pointer minus_interval_interval(jnr.ffi.Pointer interv1, jnr.ffi.Pointer interv2)
    • mul_float8_interval

      public static jnr.ffi.Pointer mul_float8_interval(double factor, jnr.ffi.Pointer interv)
    • mul_interval_float8

      public static jnr.ffi.Pointer mul_interval_float8(jnr.ffi.Pointer interv, double factor)
    • pg_interval_cmp

      public static int pg_interval_cmp(jnr.ffi.Pointer interv1, jnr.ffi.Pointer interv2)
    • pg_interval_eq

      public static boolean pg_interval_eq(jnr.ffi.Pointer interv1, jnr.ffi.Pointer interv2)
    • pg_interval_ge

      public static boolean pg_interval_ge(jnr.ffi.Pointer interv1, jnr.ffi.Pointer interv2)
    • pg_interval_gt

      public static boolean pg_interval_gt(jnr.ffi.Pointer interv1, jnr.ffi.Pointer interv2)
    • pg_interval_hash

      public static int pg_interval_hash(jnr.ffi.Pointer interv)
    • pg_interval_hash_extended

      public static long pg_interval_hash_extended(jnr.ffi.Pointer interv, long seed)
    • pg_interval_in

      public static jnr.ffi.Pointer pg_interval_in(String str, int typmod)
    • pg_interval_larger

      public static jnr.ffi.Pointer pg_interval_larger(jnr.ffi.Pointer interv1, jnr.ffi.Pointer interv2)
    • pg_interval_le

      public static boolean pg_interval_le(jnr.ffi.Pointer interv1, jnr.ffi.Pointer interv2)
    • pg_interval_lt

      public static boolean pg_interval_lt(jnr.ffi.Pointer interv1, jnr.ffi.Pointer interv2)
    • pg_interval_ne

      public static boolean pg_interval_ne(jnr.ffi.Pointer interv1, jnr.ffi.Pointer interv2)
    • pg_interval_out

      public static String pg_interval_out(jnr.ffi.Pointer interv)
    • pg_interval_part

      public static double pg_interval_part(jnr.ffi.Pointer interv, jnr.ffi.Pointer units)
    • pg_interval_scale

      public static jnr.ffi.Pointer pg_interval_scale(jnr.ffi.Pointer interv, int typmod)
    • pg_interval_smaller

      public static jnr.ffi.Pointer pg_interval_smaller(jnr.ffi.Pointer interv1, jnr.ffi.Pointer interv2)
    • pg_interval_trunc

      public static jnr.ffi.Pointer pg_interval_trunc(jnr.ffi.Pointer interv, jnr.ffi.Pointer units)
    • pg_json_in

      public static jnr.ffi.Pointer pg_json_in(String str)
    • pg_json_out

      public static String pg_json_out(jnr.ffi.Pointer js)
    • pg_jsonb_from_text

      public static jnr.ffi.Pointer pg_jsonb_from_text(jnr.ffi.Pointer txt, boolean unique_keys)
    • pg_jsonb_to_text

      public static jnr.ffi.Pointer pg_jsonb_to_text(jnr.ffi.Pointer jb)
    • pg_jsonb_in

      public static jnr.ffi.Pointer pg_jsonb_in(String str)
    • pg_jsonb_out

      public static String pg_jsonb_out(jnr.ffi.Pointer jb)
    • pg_json_make

      public static jnr.ffi.Pointer pg_json_make(jnr.ffi.Pointer keyvalarr, int count)
    • pg_json_make_two_arg

      public static jnr.ffi.Pointer pg_json_make_two_arg(jnr.ffi.Pointer keys, jnr.ffi.Pointer values, int count)
    • pg_jsonb_copy

      public static jnr.ffi.Pointer pg_jsonb_copy(jnr.ffi.Pointer jb)
    • pg_jsonb_make

      public static jnr.ffi.Pointer pg_jsonb_make(jnr.ffi.Pointer keys_vals, int count)
    • pg_jsonb_make_two_arg

      public static jnr.ffi.Pointer pg_jsonb_make_two_arg(jnr.ffi.Pointer keys, jnr.ffi.Pointer values, int count)
    • pg_json_array_elements

      public static jnr.ffi.Pointer pg_json_array_elements(jnr.ffi.Pointer js, jnr.ffi.Pointer count)
    • pg_json_array_elements_text

      public static jnr.ffi.Pointer pg_json_array_elements_text(jnr.ffi.Pointer js, jnr.ffi.Pointer count)
    • pg_json_array_length

      public static int pg_json_array_length(jnr.ffi.Pointer js)
    • pg_json_each

      public static jnr.ffi.Pointer pg_json_each(jnr.ffi.Pointer js, jnr.ffi.Pointer values, jnr.ffi.Pointer count)
    • pg_json_each_text

      public static jnr.ffi.Pointer pg_json_each_text(jnr.ffi.Pointer js, jnr.ffi.Pointer values, jnr.ffi.Pointer count)
    • pg_json_object_keys

      public static jnr.ffi.Pointer pg_json_object_keys(jnr.ffi.Pointer js, jnr.ffi.Pointer count)
    • pg_json_typeof

      public static jnr.ffi.Pointer pg_json_typeof(jnr.ffi.Pointer js)
    • pg_jsonb_array_elements

      public static jnr.ffi.Pointer pg_jsonb_array_elements(jnr.ffi.Pointer jb, jnr.ffi.Pointer count)
    • pg_jsonb_array_elements_text

      public static jnr.ffi.Pointer pg_jsonb_array_elements_text(jnr.ffi.Pointer jb, jnr.ffi.Pointer count)
    • pg_jsonb_array_length

      public static int pg_jsonb_array_length(jnr.ffi.Pointer jb)
    • pg_jsonb_cmp

      public static int pg_jsonb_cmp(jnr.ffi.Pointer jb1, jnr.ffi.Pointer jb2)
    • pg_jsonb_contained

      public static boolean pg_jsonb_contained(jnr.ffi.Pointer jb1, jnr.ffi.Pointer jb2)
    • pg_jsonb_contains

      public static boolean pg_jsonb_contains(jnr.ffi.Pointer jb1, jnr.ffi.Pointer jb2)
    • pg_jsonb_each

      public static jnr.ffi.Pointer pg_jsonb_each(jnr.ffi.Pointer jb, jnr.ffi.Pointer values, jnr.ffi.Pointer count)
    • pg_jsonb_each_text

      public static jnr.ffi.Pointer pg_jsonb_each_text(jnr.ffi.Pointer jb, jnr.ffi.Pointer values, jnr.ffi.Pointer count)
    • pg_jsonb_eq

      public static boolean pg_jsonb_eq(jnr.ffi.Pointer jb1, jnr.ffi.Pointer jb2)
    • pg_jsonb_exists

      public static boolean pg_jsonb_exists(jnr.ffi.Pointer jb, jnr.ffi.Pointer key)
    • pg_jsonb_exists_array

      public static boolean pg_jsonb_exists_array(jnr.ffi.Pointer jb, jnr.ffi.Pointer keys_elems, int keys_len, boolean any)
    • pg_jsonb_ge

      public static boolean pg_jsonb_ge(jnr.ffi.Pointer jb1, jnr.ffi.Pointer jb2)
    • pg_jsonb_gt

      public static boolean pg_jsonb_gt(jnr.ffi.Pointer jb1, jnr.ffi.Pointer jb2)
    • pg_jsonb_hash

      public static int pg_jsonb_hash(jnr.ffi.Pointer jb)
    • pg_jsonb_hash_extended

      public static long pg_jsonb_hash_extended(jnr.ffi.Pointer jb, long seed)
    • pg_jsonb_object_keys

      public static jnr.ffi.Pointer pg_jsonb_object_keys(jnr.ffi.Pointer jb, jnr.ffi.Pointer count)
    • pg_json_array_element

      public static jnr.ffi.Pointer pg_json_array_element(jnr.ffi.Pointer js, int element)
    • pg_json_array_element_text

      public static jnr.ffi.Pointer pg_json_array_element_text(jnr.ffi.Pointer js, int element)
    • pg_json_extract_path

      public static jnr.ffi.Pointer pg_json_extract_path(jnr.ffi.Pointer js, jnr.ffi.Pointer path_elems, int path_len)
    • pg_json_extract_path_text

      public static jnr.ffi.Pointer pg_json_extract_path_text(jnr.ffi.Pointer js, jnr.ffi.Pointer path_elems, int path_len)
    • pg_json_object_field

      public static jnr.ffi.Pointer pg_json_object_field(jnr.ffi.Pointer js, jnr.ffi.Pointer key)
    • pg_json_object_field_text

      public static jnr.ffi.Pointer pg_json_object_field_text(jnr.ffi.Pointer js, jnr.ffi.Pointer key)
    • pg_json_strip_nulls

      public static jnr.ffi.Pointer pg_json_strip_nulls(jnr.ffi.Pointer js, boolean strip_in_arrays)
    • pg_jsonb_array_element

      public static jnr.ffi.Pointer pg_jsonb_array_element(jnr.ffi.Pointer jb, int element)
    • pg_jsonb_array_element_text

      public static jnr.ffi.Pointer pg_jsonb_array_element_text(jnr.ffi.Pointer jb, int element)
    • pg_jsonb_concat

      public static jnr.ffi.Pointer pg_jsonb_concat(jnr.ffi.Pointer jb1, jnr.ffi.Pointer jb2)
    • pg_jsonb_delete

      public static jnr.ffi.Pointer pg_jsonb_delete(jnr.ffi.Pointer jb, jnr.ffi.Pointer key)
    • pg_jsonb_delete_array

      public static jnr.ffi.Pointer pg_jsonb_delete_array(jnr.ffi.Pointer jb, jnr.ffi.Pointer keys_elems, int keys_len)
    • pg_jsonb_delete_index

      public static jnr.ffi.Pointer pg_jsonb_delete_index(jnr.ffi.Pointer jb, int idx)
    • pg_jsonb_delete_path

      public static jnr.ffi.Pointer pg_jsonb_delete_path(jnr.ffi.Pointer jb, jnr.ffi.Pointer path_elems, int path_len)
    • pg_jsonb_extract_path

      public static jnr.ffi.Pointer pg_jsonb_extract_path(jnr.ffi.Pointer jb, jnr.ffi.Pointer path_elems, int path_len)
    • pg_jsonb_extract_path_text

      public static jnr.ffi.Pointer pg_jsonb_extract_path_text(jnr.ffi.Pointer jb, jnr.ffi.Pointer path_elems, int path_len)
    • pg_jsonb_insert

      public static jnr.ffi.Pointer pg_jsonb_insert(jnr.ffi.Pointer jb, jnr.ffi.Pointer path_elems, int path_len, jnr.ffi.Pointer newjb, boolean after)
    • pg_jsonb_object_field

      public static jnr.ffi.Pointer pg_jsonb_object_field(jnr.ffi.Pointer jb, jnr.ffi.Pointer key)
    • pg_jsonb_object_field_text

      public static jnr.ffi.Pointer pg_jsonb_object_field_text(jnr.ffi.Pointer jb, jnr.ffi.Pointer key)
    • pg_jsonb_pretty

      public static jnr.ffi.Pointer pg_jsonb_pretty(jnr.ffi.Pointer jb)
    • pg_jsonb_set

      public static jnr.ffi.Pointer pg_jsonb_set(jnr.ffi.Pointer jb, jnr.ffi.Pointer path_elems, int path_len, jnr.ffi.Pointer newjb, boolean create)
    • pg_jsonb_set_lax

      public static jnr.ffi.Pointer pg_jsonb_set_lax(jnr.ffi.Pointer jb, jnr.ffi.Pointer path_elems, int path_len, jnr.ffi.Pointer newjb, boolean create, jnr.ffi.Pointer handle_null)
    • pg_jsonb_strip_nulls

      public static jnr.ffi.Pointer pg_jsonb_strip_nulls(jnr.ffi.Pointer jb, boolean strip_in_arrays)
    • pg_jsonb_le

      public static boolean pg_jsonb_le(jnr.ffi.Pointer jb1, jnr.ffi.Pointer jb2)
    • pg_jsonb_lt

      public static boolean pg_jsonb_lt(jnr.ffi.Pointer jb1, jnr.ffi.Pointer jb2)
    • pg_jsonb_ne

      public static boolean pg_jsonb_ne(jnr.ffi.Pointer jb1, jnr.ffi.Pointer jb2)
    • pg_jsonpath_in

      public static jnr.ffi.Pointer pg_jsonpath_in(String str)
    • pg_jsonpath_out

      public static String pg_jsonpath_out(jnr.ffi.Pointer jp)
    • pg_jsonpath_copy

      public static jnr.ffi.Pointer pg_jsonpath_copy(jnr.ffi.Pointer jp)
    • pg_jsonb_path_exists

      public static int pg_jsonb_path_exists(jnr.ffi.Pointer jb, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, boolean silent, boolean tz)
    • pg_jsonb_path_match

      public static boolean pg_jsonb_path_match(jnr.ffi.Pointer jb, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, boolean silent, boolean tz)
    • pg_jsonb_path_query_array

      public static jnr.ffi.Pointer pg_jsonb_path_query_array(jnr.ffi.Pointer jb, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, boolean silent, boolean tz)
    • pg_jsonb_path_query_first

      public static jnr.ffi.Pointer pg_jsonb_path_query_first(jnr.ffi.Pointer jb, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, boolean silent, boolean tz)
    • pg_jsonb_path_query_all

      public static jnr.ffi.Pointer pg_jsonb_path_query_all(jnr.ffi.Pointer jb, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, boolean silent, boolean tz, jnr.ffi.Pointer count)
    • json_in

      public static jnr.ffi.Pointer json_in(String str)
    • json_out

      public static String json_out(jnr.ffi.Pointer js)
    • jsonb_from_text

      public static jnr.ffi.Pointer jsonb_from_text(jnr.ffi.Pointer txt, boolean unique_keys)
    • jsonb_in

      public static jnr.ffi.Pointer jsonb_in(String str)
    • jsonb_out

      public static String jsonb_out(jnr.ffi.Pointer jb)
    • json_make

      public static jnr.ffi.Pointer json_make(jnr.ffi.Pointer keys_vals, int count)
    • json_make_two_arg

      public static jnr.ffi.Pointer json_make_two_arg(jnr.ffi.Pointer keys, jnr.ffi.Pointer values, int count)
    • jsonb_copy

      public static jnr.ffi.Pointer jsonb_copy(jnr.ffi.Pointer jb)
    • jsonb_make

      public static jnr.ffi.Pointer jsonb_make(jnr.ffi.Pointer keys_vals, int count)
    • jsonb_make_two_arg

      public static jnr.ffi.Pointer jsonb_make_two_arg(jnr.ffi.Pointer keys, jnr.ffi.Pointer values, int count)
    • jsonb_to_bool

      public static boolean jsonb_to_bool(jnr.ffi.Pointer jb)
    • jsonb_to_cstring

      public static String jsonb_to_cstring(jnr.ffi.Pointer jb)
    • jsonb_to_float4

      public static jnr.ffi.Pointer jsonb_to_float4(jnr.ffi.Pointer jb)
    • jsonb_to_float8

      public static double jsonb_to_float8(jnr.ffi.Pointer jb)
    • jsonb_to_int16

      public static short jsonb_to_int16(jnr.ffi.Pointer jb)
    • jsonb_to_int32

      public static int jsonb_to_int32(jnr.ffi.Pointer jb)
    • jsonb_to_int64

      public static long jsonb_to_int64(jnr.ffi.Pointer jb)
    • jsonb_to_numeric

      public static jnr.ffi.Pointer jsonb_to_numeric(jnr.ffi.Pointer jb)
    • jsonb_to_text

      public static jnr.ffi.Pointer jsonb_to_text(jnr.ffi.Pointer jb)
    • json_array_element

      public static jnr.ffi.Pointer json_array_element(jnr.ffi.Pointer js, int element)
    • json_array_element_text

      public static jnr.ffi.Pointer json_array_element_text(jnr.ffi.Pointer js, int element)
    • json_array_elements

      public static jnr.ffi.Pointer json_array_elements(jnr.ffi.Pointer js, jnr.ffi.Pointer count)
    • json_array_elements_text

      public static jnr.ffi.Pointer json_array_elements_text(jnr.ffi.Pointer js, jnr.ffi.Pointer count)
    • json_array_length

      public static int json_array_length(jnr.ffi.Pointer js)
    • json_each

      public static jnr.ffi.Pointer json_each(jnr.ffi.Pointer js, jnr.ffi.Pointer values, jnr.ffi.Pointer count)
    • json_each_text

      public static jnr.ffi.Pointer json_each_text(jnr.ffi.Pointer js, jnr.ffi.Pointer values, jnr.ffi.Pointer count)
    • json_extract_path

      public static jnr.ffi.Pointer json_extract_path(jnr.ffi.Pointer js, jnr.ffi.Pointer path_elems, int path_len)
    • json_extract_path_text

      public static jnr.ffi.Pointer json_extract_path_text(jnr.ffi.Pointer js, jnr.ffi.Pointer path_elems, int path_len)
    • json_object_field

      public static jnr.ffi.Pointer json_object_field(jnr.ffi.Pointer js, jnr.ffi.Pointer key)
    • json_object_field_text

      public static jnr.ffi.Pointer json_object_field_text(jnr.ffi.Pointer js, jnr.ffi.Pointer key)
    • json_object_keys

      public static jnr.ffi.Pointer json_object_keys(jnr.ffi.Pointer js, jnr.ffi.Pointer count)
    • json_typeof

      public static jnr.ffi.Pointer json_typeof(jnr.ffi.Pointer js)
    • jsonb_array_element

      public static jnr.ffi.Pointer jsonb_array_element(jnr.ffi.Pointer jb, int element)
    • jsonb_array_element_text

      public static jnr.ffi.Pointer jsonb_array_element_text(jnr.ffi.Pointer jb, int element)
    • jsonb_array_elements

      public static jnr.ffi.Pointer jsonb_array_elements(jnr.ffi.Pointer jb, jnr.ffi.Pointer count)
    • jsonb_array_elements_text

      public static jnr.ffi.Pointer jsonb_array_elements_text(jnr.ffi.Pointer jb, jnr.ffi.Pointer count)
    • jsonb_array_length

      public static int jsonb_array_length(jnr.ffi.Pointer jb)
    • jsonb_contained

      public static boolean jsonb_contained(jnr.ffi.Pointer jb1, jnr.ffi.Pointer jb2)
    • jsonb_contains

      public static boolean jsonb_contains(jnr.ffi.Pointer jb1, jnr.ffi.Pointer jb2)
    • jsonb_each

      public static jnr.ffi.Pointer jsonb_each(jnr.ffi.Pointer jb, jnr.ffi.Pointer values, jnr.ffi.Pointer count)
    • jsonb_each_text

      public static jnr.ffi.Pointer jsonb_each_text(jnr.ffi.Pointer jb, jnr.ffi.Pointer values, jnr.ffi.Pointer count)
    • jsonb_exists

      public static boolean jsonb_exists(jnr.ffi.Pointer jb, jnr.ffi.Pointer key)
    • jsonb_exists_array

      public static boolean jsonb_exists_array(jnr.ffi.Pointer jb, jnr.ffi.Pointer keys_elems, int keys_len, boolean any)
    • jsonb_extract_path

      public static jnr.ffi.Pointer jsonb_extract_path(jnr.ffi.Pointer jb, jnr.ffi.Pointer path_elems, int path_len)
    • jsonb_extract_path_text

      public static jnr.ffi.Pointer jsonb_extract_path_text(jnr.ffi.Pointer jb, jnr.ffi.Pointer path_elems, int path_len)
    • jsonb_hash

      public static int jsonb_hash(jnr.ffi.Pointer jb)
    • jsonb_hash_extended

      public static long jsonb_hash_extended(jnr.ffi.Pointer jb, long seed)
    • jsonb_object_field

      public static jnr.ffi.Pointer jsonb_object_field(jnr.ffi.Pointer jb, jnr.ffi.Pointer key)
    • jsonb_object_field_text

      public static jnr.ffi.Pointer jsonb_object_field_text(jnr.ffi.Pointer jb, jnr.ffi.Pointer key)
    • jsonb_object_keys

      public static jnr.ffi.Pointer jsonb_object_keys(jnr.ffi.Pointer jb, jnr.ffi.Pointer count)
    • json_strip_nulls

      public static jnr.ffi.Pointer json_strip_nulls(jnr.ffi.Pointer js, boolean strip_in_arrays)
    • jsonb_concat

      public static jnr.ffi.Pointer jsonb_concat(jnr.ffi.Pointer jb1, jnr.ffi.Pointer jb2)
    • jsonb_delete

      public static jnr.ffi.Pointer jsonb_delete(jnr.ffi.Pointer jb, jnr.ffi.Pointer key)
    • jsonb_delete_array

      public static jnr.ffi.Pointer jsonb_delete_array(jnr.ffi.Pointer jb, jnr.ffi.Pointer keys_elems, int keys_len)
    • jsonb_delete_index

      public static jnr.ffi.Pointer jsonb_delete_index(jnr.ffi.Pointer jb, int idx)
    • jsonb_delete_path

      public static jnr.ffi.Pointer jsonb_delete_path(jnr.ffi.Pointer jb, jnr.ffi.Pointer path_elems, int path_len)
    • jsonb_insert

      public static jnr.ffi.Pointer jsonb_insert(jnr.ffi.Pointer jb, jnr.ffi.Pointer path_elems, int path_len, jnr.ffi.Pointer newjb, boolean after)
    • jsonb_pretty

      public static jnr.ffi.Pointer jsonb_pretty(jnr.ffi.Pointer jb)
    • jsonb_set

      public static jnr.ffi.Pointer jsonb_set(jnr.ffi.Pointer jb, jnr.ffi.Pointer path_elems, int path_len, jnr.ffi.Pointer newjb, boolean create)
    • jsonb_set_lax

      public static jnr.ffi.Pointer jsonb_set_lax(jnr.ffi.Pointer jb, jnr.ffi.Pointer path_elems, int path_len, jnr.ffi.Pointer newjb, boolean create, jnr.ffi.Pointer handle_null)
    • jsonb_strip_nulls

      public static jnr.ffi.Pointer jsonb_strip_nulls(jnr.ffi.Pointer jb, boolean strip_in_arrays)
    • jsonb_cmp

      public static int jsonb_cmp(jnr.ffi.Pointer jb1, jnr.ffi.Pointer jb2)
    • jsonb_eq

      public static boolean jsonb_eq(jnr.ffi.Pointer jb1, jnr.ffi.Pointer jb2)
    • jsonb_ge

      public static boolean jsonb_ge(jnr.ffi.Pointer jb1, jnr.ffi.Pointer jb2)
    • jsonb_gt

      public static boolean jsonb_gt(jnr.ffi.Pointer jb1, jnr.ffi.Pointer jb2)
    • jsonb_le

      public static boolean jsonb_le(jnr.ffi.Pointer jb1, jnr.ffi.Pointer jb2)
    • jsonb_lt

      public static boolean jsonb_lt(jnr.ffi.Pointer jb1, jnr.ffi.Pointer jb2)
    • jsonb_ne

      public static boolean jsonb_ne(jnr.ffi.Pointer jb1, jnr.ffi.Pointer jb2)
    • jsonb_path_exists

      public static int jsonb_path_exists(jnr.ffi.Pointer jb, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, boolean silent, boolean tz)
    • jsonb_path_match

      public static boolean jsonb_path_match(jnr.ffi.Pointer jb, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, boolean silent, boolean tz)
    • jsonb_path_query_all

      public static jnr.ffi.Pointer jsonb_path_query_all(jnr.ffi.Pointer jb, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, boolean silent, boolean tz, jnr.ffi.Pointer count)
    • jsonb_path_query_array

      public static jnr.ffi.Pointer jsonb_path_query_array(jnr.ffi.Pointer jb, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, boolean silent, boolean tz)
    • jsonb_path_query_first

      public static jnr.ffi.Pointer jsonb_path_query_first(jnr.ffi.Pointer jb, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, boolean silent, boolean tz)
    • jsonpath_in

      public static jnr.ffi.Pointer jsonpath_in(String str)
    • jsonpath_copy

      public static jnr.ffi.Pointer jsonpath_copy(jnr.ffi.Pointer jp)
    • jsonpath_out

      public static String jsonpath_out(jnr.ffi.Pointer jp)
    • jsonbset_in

      public static jnr.ffi.Pointer jsonbset_in(String str)
    • jsonbset_out

      public static String jsonbset_out(jnr.ffi.Pointer s, int maxdd)
    • jsonbset_make

      public static jnr.ffi.Pointer jsonbset_make(jnr.ffi.Pointer values, int count)
    • jsonb_to_set

      public static jnr.ffi.Pointer jsonb_to_set(jnr.ffi.Pointer jb)
    • jsonbset_end_value

      public static jnr.ffi.Pointer jsonbset_end_value(jnr.ffi.Pointer s)
    • jsonbset_start_value

      public static jnr.ffi.Pointer jsonbset_start_value(jnr.ffi.Pointer s)
    • jsonbset_value_n

      public static jnr.ffi.Pointer jsonbset_value_n(jnr.ffi.Pointer s, int n)
    • jsonbset_values

      public static jnr.ffi.Pointer jsonbset_values(jnr.ffi.Pointer s, jnr.ffi.Pointer count)
    • concat_jsonbset_jsonb

      public static jnr.ffi.Pointer concat_jsonbset_jsonb(jnr.ffi.Pointer s, jnr.ffi.Pointer jb, boolean invert)
    • jsonbset_array_length

      public static jnr.ffi.Pointer jsonbset_array_length(jnr.ffi.Pointer set)
    • jsonbset_object_field

      public static jnr.ffi.Pointer jsonbset_object_field(jnr.ffi.Pointer set, jnr.ffi.Pointer key, boolean astext, int null_handle)
    • jsonbset_array_element

      public static jnr.ffi.Pointer jsonbset_array_element(jnr.ffi.Pointer set, int idx, boolean astext, int null_handle)
    • jsonbset_delete_index

      public static jnr.ffi.Pointer jsonbset_delete_index(jnr.ffi.Pointer set, int idx)
    • jsonbset_delete

      public static jnr.ffi.Pointer jsonbset_delete(jnr.ffi.Pointer set, jnr.ffi.Pointer key)
    • jsonbset_delete_array

      public static jnr.ffi.Pointer jsonbset_delete_array(jnr.ffi.Pointer set, jnr.ffi.Pointer keys, int count)
    • jsonbset_exists

      public static jnr.ffi.Pointer jsonbset_exists(jnr.ffi.Pointer set, jnr.ffi.Pointer key)
    • jsonbset_exists_array

      public static jnr.ffi.Pointer jsonbset_exists_array(jnr.ffi.Pointer set, jnr.ffi.Pointer keys, int count, boolean any)
    • jsonbset_set

      public static jnr.ffi.Pointer jsonbset_set(jnr.ffi.Pointer set, jnr.ffi.Pointer keys, int count, jnr.ffi.Pointer newjb, boolean create, jnr.ffi.Pointer null_handle, boolean lax)
    • jsonbset_to_alphanumset

      public static jnr.ffi.Pointer jsonbset_to_alphanumset(jnr.ffi.Pointer set, String key, int settype, int null_handle)
    • jsonbset_to_intset

      public static jnr.ffi.Pointer jsonbset_to_intset(jnr.ffi.Pointer set, String key, int null_handle)
    • jsonbset_to_bigintset

      public static jnr.ffi.Pointer jsonbset_to_bigintset(jnr.ffi.Pointer set, String key, int null_handle)
    • jsonbset_to_floatset

      public static jnr.ffi.Pointer jsonbset_to_floatset(jnr.ffi.Pointer set, String key, int null_handle)
    • jsonbset_to_textset_key

      public static jnr.ffi.Pointer jsonbset_to_textset_key(jnr.ffi.Pointer set, String key, int null_handle)
    • jsonbset_strip_nulls

      public static jnr.ffi.Pointer jsonbset_strip_nulls(jnr.ffi.Pointer set, boolean strip_in_arrays)
    • jsonbset_pretty

      public static jnr.ffi.Pointer jsonbset_pretty(jnr.ffi.Pointer set)
    • jsonbset_delete_path

      public static jnr.ffi.Pointer jsonbset_delete_path(jnr.ffi.Pointer set, jnr.ffi.Pointer path_elems, int path_len)
    • jsonbset_extract_path

      public static jnr.ffi.Pointer jsonbset_extract_path(jnr.ffi.Pointer set, jnr.ffi.Pointer path_elems, int path_len, boolean astext, int null_handle)
    • jsonbset_insert

      public static jnr.ffi.Pointer jsonbset_insert(jnr.ffi.Pointer set, jnr.ffi.Pointer path_elems, int path_len, jnr.ffi.Pointer newjb, boolean after)
    • jsonbset_path_exists

      public static jnr.ffi.Pointer jsonbset_path_exists(jnr.ffi.Pointer set, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, boolean silent, boolean tz)
    • jsonbset_path_match

      public static jnr.ffi.Pointer jsonbset_path_match(jnr.ffi.Pointer set, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, boolean silent, boolean tz)
    • jsonbset_path_query_array

      public static jnr.ffi.Pointer jsonbset_path_query_array(jnr.ffi.Pointer set, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, boolean silent, boolean tz)
    • jsonbset_path_query_first

      public static jnr.ffi.Pointer jsonbset_path_query_first(jnr.ffi.Pointer set, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, boolean silent, boolean tz)
    • contained_jsonb_set

      public static boolean contained_jsonb_set(jnr.ffi.Pointer jb, jnr.ffi.Pointer s)
    • contains_set_jsonb

      public static boolean contains_set_jsonb(jnr.ffi.Pointer s, jnr.ffi.Pointer jb)
    • intersection_jsonb_set

      public static jnr.ffi.Pointer intersection_jsonb_set(jnr.ffi.Pointer jb, jnr.ffi.Pointer s)
    • intersection_set_jsonb

      public static jnr.ffi.Pointer intersection_set_jsonb(jnr.ffi.Pointer s, jnr.ffi.Pointer jb)
    • jsonb_union_transfn

      public static jnr.ffi.Pointer jsonb_union_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer jb)
    • minus_jsonb_set

      public static jnr.ffi.Pointer minus_jsonb_set(jnr.ffi.Pointer jb, jnr.ffi.Pointer s)
    • minus_set_jsonb

      public static jnr.ffi.Pointer minus_set_jsonb(jnr.ffi.Pointer s, jnr.ffi.Pointer jb)
    • union_jsonb_set

      public static jnr.ffi.Pointer union_jsonb_set(jnr.ffi.Pointer jb, jnr.ffi.Pointer s)
    • union_set_jsonb

      public static jnr.ffi.Pointer union_set_jsonb(jnr.ffi.Pointer s, jnr.ffi.Pointer jb)
    • tjsonb_from_mfjson

      public static jnr.ffi.Pointer tjsonb_from_mfjson(String str)
    • tjsonb_in

      public static jnr.ffi.Pointer tjsonb_in(String str)
    • tjsonb_out

      public static String tjsonb_out(jnr.ffi.Pointer temp)
    • tjsonbinst_from_mfjson

      public static jnr.ffi.Pointer tjsonbinst_from_mfjson(jnr.ffi.Pointer mfjson)
    • tjsonbinst_in

      public static jnr.ffi.Pointer tjsonbinst_in(String str)
    • tjsonbseq_from_mfjson

      public static jnr.ffi.Pointer tjsonbseq_from_mfjson(jnr.ffi.Pointer mfjson)
    • tjsonbseq_in

      public static jnr.ffi.Pointer tjsonbseq_in(String str, int interp)
    • tjsonbseqset_from_mfjson

      public static jnr.ffi.Pointer tjsonbseqset_from_mfjson(jnr.ffi.Pointer mfjson)
    • tjsonbseqset_in

      public static jnr.ffi.Pointer tjsonbseqset_in(String str)
    • tjsonb_from_base_temp

      public static jnr.ffi.Pointer tjsonb_from_base_temp(jnr.ffi.Pointer jsonb, jnr.ffi.Pointer temp)
    • tjsonbinst_make

      public static jnr.ffi.Pointer tjsonbinst_make(jnr.ffi.Pointer jsonb, OffsetDateTime t)
    • tjsonbseq_from_base_tstzset

      public static jnr.ffi.Pointer tjsonbseq_from_base_tstzset(jnr.ffi.Pointer jsonb, jnr.ffi.Pointer s)
    • tjsonbseq_from_base_tstzspan

      public static jnr.ffi.Pointer tjsonbseq_from_base_tstzspan(jnr.ffi.Pointer jsonb, jnr.ffi.Pointer sp)
    • tjsonbseqset_from_base_tstzspanset

      public static jnr.ffi.Pointer tjsonbseqset_from_base_tstzspanset(jnr.ffi.Pointer jsonb, jnr.ffi.Pointer ss)
    • tjsonb_to_ttext

      public static jnr.ffi.Pointer tjsonb_to_ttext(jnr.ffi.Pointer temp)
    • ttext_to_tjsonb

      public static jnr.ffi.Pointer ttext_to_tjsonb(jnr.ffi.Pointer temp)
    • tjsonb_end_value

      public static jnr.ffi.Pointer tjsonb_end_value(jnr.ffi.Pointer temp)
    • tjsonb_start_value

      public static jnr.ffi.Pointer tjsonb_start_value(jnr.ffi.Pointer temp)
    • tjsonb_value_at_timestamptz

      public static jnr.ffi.Pointer tjsonb_value_at_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean strict)
    • tjsonb_value_n

      public static jnr.ffi.Pointer tjsonb_value_n(jnr.ffi.Pointer temp, int n)
    • tjsonb_values

      public static jnr.ffi.Pointer tjsonb_values(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • concat_tjsonb_jsonb

      public static jnr.ffi.Pointer concat_tjsonb_jsonb(jnr.ffi.Pointer temp, jnr.ffi.Pointer jb, boolean invert)
    • concat_tjsonb_tjsonb

      public static jnr.ffi.Pointer concat_tjsonb_tjsonb(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • contains_tjsonb_jsonb

      public static jnr.ffi.Pointer contains_tjsonb_jsonb(jnr.ffi.Pointer temp, jnr.ffi.Pointer jb, boolean invert)
    • contains_tjsonb_tjsonb

      public static jnr.ffi.Pointer contains_tjsonb_tjsonb(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • null_handle_type_from_string

      public static int null_handle_type_from_string(String str)
    • tjson_array_element

      public static jnr.ffi.Pointer tjson_array_element(jnr.ffi.Pointer temp, int idx, int null_handle)
    • tjson_array_length

      public static jnr.ffi.Pointer tjson_array_length(jnr.ffi.Pointer temp)
    • tjson_extract_path

      public static jnr.ffi.Pointer tjson_extract_path(jnr.ffi.Pointer temp, jnr.ffi.Pointer path_elems, int path_len, int null_handle)
    • tjson_object_field

      public static jnr.ffi.Pointer tjson_object_field(jnr.ffi.Pointer temp, jnr.ffi.Pointer key, boolean astext, int null_handle)
    • tjson_strip_nulls

      public static jnr.ffi.Pointer tjson_strip_nulls(jnr.ffi.Pointer temp, boolean strip_in_arrays)
    • tjsonb_array_element

      public static jnr.ffi.Pointer tjsonb_array_element(jnr.ffi.Pointer temp, int idx, boolean astext, int null_handle)
    • tjsonb_array_length

      public static jnr.ffi.Pointer tjsonb_array_length(jnr.ffi.Pointer temp)
    • tjsonb_delete

      public static jnr.ffi.Pointer tjsonb_delete(jnr.ffi.Pointer temp, jnr.ffi.Pointer key)
    • tjsonb_delete_array

      public static jnr.ffi.Pointer tjsonb_delete_array(jnr.ffi.Pointer temp, jnr.ffi.Pointer keys, int count)
    • tjsonb_delete_index

      public static jnr.ffi.Pointer tjsonb_delete_index(jnr.ffi.Pointer temp, int idx)
    • tjsonb_delete_path

      public static jnr.ffi.Pointer tjsonb_delete_path(jnr.ffi.Pointer temp, jnr.ffi.Pointer path_elems, int path_len)
    • tjsonb_exists

      public static jnr.ffi.Pointer tjsonb_exists(jnr.ffi.Pointer temp, jnr.ffi.Pointer key)
    • tjsonb_exists_array

      public static jnr.ffi.Pointer tjsonb_exists_array(jnr.ffi.Pointer temp, jnr.ffi.Pointer keys, int count, boolean any)
    • tjsonb_extract_path

      public static jnr.ffi.Pointer tjsonb_extract_path(jnr.ffi.Pointer temp, jnr.ffi.Pointer path_elems, int path_len, boolean astext, int null_handle)
    • tjsonb_insert

      public static jnr.ffi.Pointer tjsonb_insert(jnr.ffi.Pointer temp, jnr.ffi.Pointer keys, int count, jnr.ffi.Pointer newjb, boolean after)
    • tjsonb_object_field

      public static jnr.ffi.Pointer tjsonb_object_field(jnr.ffi.Pointer temp, jnr.ffi.Pointer key, boolean astext, int null_handle)
    • tjsonb_path_exists

      public static jnr.ffi.Pointer tjsonb_path_exists(jnr.ffi.Pointer temp, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, boolean silent, boolean tz)
    • tjsonb_path_match

      public static jnr.ffi.Pointer tjsonb_path_match(jnr.ffi.Pointer temp, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, boolean silent, boolean tz)
    • tjsonb_path_query_array

      public static jnr.ffi.Pointer tjsonb_path_query_array(jnr.ffi.Pointer temp, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, boolean silent, boolean tz)
    • tjsonb_path_query_first

      public static jnr.ffi.Pointer tjsonb_path_query_first(jnr.ffi.Pointer temp, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, boolean silent, boolean tz)
    • tjsonb_pretty

      public static jnr.ffi.Pointer tjsonb_pretty(jnr.ffi.Pointer temp)
    • tjsonb_set

      public static jnr.ffi.Pointer tjsonb_set(jnr.ffi.Pointer temp, jnr.ffi.Pointer keys, int count, jnr.ffi.Pointer newjb, boolean create, jnr.ffi.Pointer handle_null, boolean lax)
    • tjsonb_strip_nulls

      public static jnr.ffi.Pointer tjsonb_strip_nulls(jnr.ffi.Pointer temp, boolean strip_in_arrays)
    • tjsonb_to_tbool

      public static jnr.ffi.Pointer tjsonb_to_tbool(jnr.ffi.Pointer temp, String key, int null_handle)
    • tjsonb_to_tfloat

      public static jnr.ffi.Pointer tjsonb_to_tfloat(jnr.ffi.Pointer temp, String key, int interp, int null_handle)
    • tjsonb_to_tint

      public static jnr.ffi.Pointer tjsonb_to_tint(jnr.ffi.Pointer temp, String key, int null_handle)
    • tjsonb_to_ttext_key

      public static jnr.ffi.Pointer tjsonb_to_ttext_key(jnr.ffi.Pointer temp, String key, int null_handle)
    • tjsonb_at_value

      public static jnr.ffi.Pointer tjsonb_at_value(jnr.ffi.Pointer temp, jnr.ffi.Pointer jsb)
    • tjsonb_minus_value

      public static jnr.ffi.Pointer tjsonb_minus_value(jnr.ffi.Pointer temp, jnr.ffi.Pointer jsb)
    • always_eq_jsonb_tjsonb

      public static int always_eq_jsonb_tjsonb(jnr.ffi.Pointer jb, jnr.ffi.Pointer temp)
    • always_eq_tjsonb_jsonb

      public static int always_eq_tjsonb_jsonb(jnr.ffi.Pointer temp, jnr.ffi.Pointer jb)
    • always_eq_tjsonb_tjsonb

      public static int always_eq_tjsonb_tjsonb(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • always_ne_jsonb_tjsonb

      public static int always_ne_jsonb_tjsonb(jnr.ffi.Pointer jb, jnr.ffi.Pointer temp)
    • always_ne_tjsonb_jsonb

      public static int always_ne_tjsonb_jsonb(jnr.ffi.Pointer temp, jnr.ffi.Pointer jb)
    • always_ne_tjsonb_tjsonb

      public static int always_ne_tjsonb_tjsonb(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ever_eq_jsonb_tjsonb

      public static int ever_eq_jsonb_tjsonb(jnr.ffi.Pointer jb, jnr.ffi.Pointer temp)
    • ever_eq_tjsonb_jsonb

      public static int ever_eq_tjsonb_jsonb(jnr.ffi.Pointer temp, jnr.ffi.Pointer jb)
    • ever_eq_tjsonb_tjsonb

      public static int ever_eq_tjsonb_tjsonb(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ever_ne_jsonb_tjsonb

      public static int ever_ne_jsonb_tjsonb(jnr.ffi.Pointer jb, jnr.ffi.Pointer temp)
    • ever_ne_tjsonb_jsonb

      public static int ever_ne_tjsonb_jsonb(jnr.ffi.Pointer temp, jnr.ffi.Pointer jb)
    • ever_ne_tjsonb_tjsonb

      public static int ever_ne_tjsonb_tjsonb(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • teq_jsonb_tjsonb

      public static jnr.ffi.Pointer teq_jsonb_tjsonb(jnr.ffi.Pointer jb, jnr.ffi.Pointer temp)
    • teq_tjsonb_jsonb

      public static jnr.ffi.Pointer teq_tjsonb_jsonb(jnr.ffi.Pointer temp, jnr.ffi.Pointer jb)
    • tne_jsonb_tjsonb

      public static jnr.ffi.Pointer tne_jsonb_tjsonb(jnr.ffi.Pointer jb, jnr.ffi.Pointer temp)
    • tne_tjsonb_jsonb

      public static jnr.ffi.Pointer tne_tjsonb_jsonb(jnr.ffi.Pointer temp, jnr.ffi.Pointer jb)
    • setPath

      public static jnr.ffi.Pointer setPath(jnr.ffi.Pointer it, jnr.ffi.Pointer path_elems, jnr.ffi.Pointer path_nulls, int path_len, jnr.ffi.Pointer st, int level, jnr.ffi.Pointer newval, int op_type)
    • setPathObject

      public static void setPathObject(jnr.ffi.Pointer it, jnr.ffi.Pointer path_elems, jnr.ffi.Pointer path_nulls, int path_len, jnr.ffi.Pointer st, int level, jnr.ffi.Pointer newval, int npairs, int op_type)
    • setPathArray

      public static void setPathArray(jnr.ffi.Pointer it, jnr.ffi.Pointer path_elems, jnr.ffi.Pointer path_nulls, int path_len, jnr.ffi.Pointer st, int level, jnr.ffi.Pointer newval, int nelems, int op_type)
    • datum_jsonb_concat

      public static jnr.ffi.Pointer datum_jsonb_concat(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • datum_jsonb_contained

      public static jnr.ffi.Pointer datum_jsonb_contained(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • datum_jsonb_contains

      public static jnr.ffi.Pointer datum_jsonb_contains(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • datum_jsonb_delete

      public static jnr.ffi.Pointer datum_jsonb_delete(jnr.ffi.Pointer jb, jnr.ffi.Pointer key)
    • datum_jsonb_delete_array

      public static jnr.ffi.Pointer datum_jsonb_delete_array(jnr.ffi.Pointer jb, jnr.ffi.Pointer array, jnr.ffi.Pointer count)
    • datum_jsonb_delete_index

      public static jnr.ffi.Pointer datum_jsonb_delete_index(jnr.ffi.Pointer jb, jnr.ffi.Pointer idx)
    • datum_json_array_element

      public static jnr.ffi.Pointer datum_json_array_element(jnr.ffi.Pointer txt, jnr.ffi.Pointer element)
    • datum_jsonb_array_element

      public static jnr.ffi.Pointer datum_jsonb_array_element(jnr.ffi.Pointer jb, jnr.ffi.Pointer element)
    • datum_json_array_element_text

      public static jnr.ffi.Pointer datum_json_array_element_text(jnr.ffi.Pointer txt, jnr.ffi.Pointer element)
    • datum_jsonb_array_element_text

      public static jnr.ffi.Pointer datum_jsonb_array_element_text(jnr.ffi.Pointer jb, jnr.ffi.Pointer element)
    • datum_jsonb_exists

      public static jnr.ffi.Pointer datum_jsonb_exists(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • datum_jsonb_exists_array

      public static jnr.ffi.Pointer datum_jsonb_exists_array(jnr.ffi.Pointer value, jnr.ffi.Pointer array, jnr.ffi.Pointer count, jnr.ffi.Pointer any)
    • datum_json_array_length

      public static jnr.ffi.Pointer datum_json_array_length(jnr.ffi.Pointer txt)
    • datum_jsonb_array_length

      public static jnr.ffi.Pointer datum_jsonb_array_length(jnr.ffi.Pointer txt)
    • datum_json_object_field

      public static jnr.ffi.Pointer datum_json_object_field(jnr.ffi.Pointer txt, jnr.ffi.Pointer key)
    • datum_jsonb_object_field

      public static jnr.ffi.Pointer datum_jsonb_object_field(jnr.ffi.Pointer jb, jnr.ffi.Pointer key)
    • datum_json_object_field_text

      public static jnr.ffi.Pointer datum_json_object_field_text(jnr.ffi.Pointer txt, jnr.ffi.Pointer key)
    • datum_jsonb_object_field_text

      public static jnr.ffi.Pointer datum_jsonb_object_field_text(jnr.ffi.Pointer jb, jnr.ffi.Pointer key)
    • datum_json_strip_nulls

      public static jnr.ffi.Pointer datum_json_strip_nulls(jnr.ffi.Pointer txt, jnr.ffi.Pointer strip_in_arrays)
    • datum_jsonb_strip_nulls

      public static jnr.ffi.Pointer datum_jsonb_strip_nulls(jnr.ffi.Pointer jb, jnr.ffi.Pointer strip_in_arrays)
    • datum_jsonb_pretty

      public static jnr.ffi.Pointer datum_jsonb_pretty(jnr.ffi.Pointer jb)
    • datum_json_extract_path

      public static jnr.ffi.Pointer datum_json_extract_path(jnr.ffi.Pointer txt, jnr.ffi.Pointer path_elems, jnr.ffi.Pointer path_len)
    • datum_jsonb_extract_path

      public static jnr.ffi.Pointer datum_jsonb_extract_path(jnr.ffi.Pointer jb, jnr.ffi.Pointer path_elems, jnr.ffi.Pointer path_len)
    • datum_json_extract_path_text

      public static jnr.ffi.Pointer datum_json_extract_path_text(jnr.ffi.Pointer txt, jnr.ffi.Pointer path_elems, jnr.ffi.Pointer path_len)
    • datum_jsonb_extract_path_text

      public static jnr.ffi.Pointer datum_jsonb_extract_path_text(jnr.ffi.Pointer jb, jnr.ffi.Pointer path_elems, jnr.ffi.Pointer path_len)
    • datum_jsonb_set

      public static jnr.ffi.Pointer datum_jsonb_set(jnr.ffi.Pointer jb, jnr.ffi.Pointer keys, jnr.ffi.Pointer count, jnr.ffi.Pointer newjb, jnr.ffi.Pointer create)
    • datum_jsonb_set_lax

      public static jnr.ffi.Pointer datum_jsonb_set_lax(jnr.ffi.Pointer jb, jnr.ffi.Pointer keys, jnr.ffi.Pointer count, jnr.ffi.Pointer newjb, jnr.ffi.Pointer create, jnr.ffi.Pointer null_handle)
    • datum_jsonb_delete_path

      public static jnr.ffi.Pointer datum_jsonb_delete_path(jnr.ffi.Pointer jb, jnr.ffi.Pointer keys, jnr.ffi.Pointer count)
    • datum_jsonb_insert

      public static jnr.ffi.Pointer datum_jsonb_insert(jnr.ffi.Pointer jb, jnr.ffi.Pointer keys, jnr.ffi.Pointer count, jnr.ffi.Pointer newjb, jnr.ffi.Pointer after)
    • datum_jsonb_path_exists

      public static jnr.ffi.Pointer datum_jsonb_path_exists(jnr.ffi.Pointer jb, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, jnr.ffi.Pointer silent, jnr.ffi.Pointer tz)
    • datum_jsonb_path_match

      public static jnr.ffi.Pointer datum_jsonb_path_match(jnr.ffi.Pointer jb, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, jnr.ffi.Pointer silent, jnr.ffi.Pointer tz)
    • datum_jsonb_path_query_array

      public static jnr.ffi.Pointer datum_jsonb_path_query_array(jnr.ffi.Pointer jb, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, jnr.ffi.Pointer silent, jnr.ffi.Pointer tz)
    • datum_jsonb_path_query_first

      public static jnr.ffi.Pointer datum_jsonb_path_query_first(jnr.ffi.Pointer jb, jnr.ffi.Pointer jp, jnr.ffi.Pointer vars, jnr.ffi.Pointer silent, jnr.ffi.Pointer tz)
    • datum_jsonb_to_text

      public static jnr.ffi.Pointer datum_jsonb_to_text(jnr.ffi.Pointer jb)
    • datum_text_to_jsonb

      public static jnr.ffi.Pointer datum_text_to_jsonb(jnr.ffi.Pointer txt)
    • datum_jsonb_to_alphanum

      public static jnr.ffi.Pointer datum_jsonb_to_alphanum(jnr.ffi.Pointer jb, jnr.ffi.Pointer key, jnr.ffi.Pointer temptype, jnr.ffi.Pointer null_handle)
    • tjsonb_to_talphanum

      public static jnr.ffi.Pointer tjsonb_to_talphanum(jnr.ffi.Pointer temp, String key, int resbasetype, int interp, int null_handle)
    • jsonbfunc_jsonbset

      public static jnr.ffi.Pointer jsonbfunc_jsonbset(jnr.ffi.Pointer s, jnr.ffi.Pointer func, int intype, int restype)
    • jsonbfunc_jsonbset_jsonb

      public static jnr.ffi.Pointer jsonbfunc_jsonbset_jsonb(jnr.ffi.Pointer s, jnr.ffi.Pointer jb, jnr.ffi.Pointer func, boolean invert)
    • jsonbfunc_jsonbset_text

      public static jnr.ffi.Pointer jsonbfunc_jsonbset_text(jnr.ffi.Pointer s, jnr.ffi.Pointer txt, jnr.ffi.Pointer func)
    • tcellindex_get_resolution

      public static jnr.ffi.Pointer tcellindex_get_resolution(jnr.ffi.Pointer temp)
    • tcellindex_is_valid_cell

      public static jnr.ffi.Pointer tcellindex_is_valid_cell(jnr.ffi.Pointer temp)
    • tcellindex_cell_to_parent

      public static jnr.ffi.Pointer tcellindex_cell_to_parent(jnr.ffi.Pointer temp, int resolution)
    • tcellindex_cell_to_point

      public static jnr.ffi.Pointer tcellindex_cell_to_point(jnr.ffi.Pointer temp)
    • tcellindex_cell_to_boundary

      public static jnr.ffi.Pointer tcellindex_cell_to_boundary(jnr.ffi.Pointer temp)
    • tcellindex_cell_area

      public static jnr.ffi.Pointer tcellindex_cell_area(jnr.ffi.Pointer temp)
    • proj_get_context

      public static jnr.ffi.Pointer proj_get_context()
    • geos_get_context

      public static jnr.ffi.Pointer geos_get_context()
    • datum_geo_round

      public static jnr.ffi.Pointer datum_geo_round(jnr.ffi.Pointer value, jnr.ffi.Pointer size)
    • point_round

      public static jnr.ffi.Pointer point_round(jnr.ffi.Pointer gs, int maxdd)
    • stbox_set

      public static void stbox_set(boolean hasx, boolean hasz, boolean geodetic, int srid, double xmin, double xmax, double ymin, double ymax, double zmin, double zmax, jnr.ffi.Pointer s, jnr.ffi.Pointer result)
    • gbox_set_stbox

      public static void gbox_set_stbox(jnr.ffi.Pointer box, int srid, jnr.ffi.Pointer result)
    • geo_set_stbox

      public static jnr.ffi.Pointer geo_set_stbox(jnr.ffi.Pointer gs)
    • geoarr_set_stbox

      public static void geoarr_set_stbox(jnr.ffi.Pointer values, int count, jnr.ffi.Pointer result)
    • spatial_set_stbox

      public static jnr.ffi.Pointer spatial_set_stbox(jnr.ffi.Pointer d, int basetype)
    • spatialset_set_stbox

      public static void spatialset_set_stbox(jnr.ffi.Pointer set, jnr.ffi.Pointer result)
    • stbox_set_box3d

      public static void stbox_set_box3d(jnr.ffi.Pointer box, jnr.ffi.Pointer result)
    • stbox_set_gbox

      public static void stbox_set_gbox(jnr.ffi.Pointer box, jnr.ffi.Pointer result)
    • tstzset_set_stbox

      public static void tstzset_set_stbox(jnr.ffi.Pointer s, jnr.ffi.Pointer result)
    • timestamptz_set_stbox

      public static void timestamptz_set_stbox(OffsetDateTime t, jnr.ffi.Pointer result)
    • tstzspan_set_stbox

      public static void tstzspan_set_stbox(jnr.ffi.Pointer s, jnr.ffi.Pointer result)
    • tstzspanset_set_stbox

      public static void tstzspanset_set_stbox(jnr.ffi.Pointer s, jnr.ffi.Pointer result)
    • stbox_expand

      public static void stbox_expand(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • stbox_expand_space_set

      public static jnr.ffi.Pointer stbox_expand_space_set(jnr.ffi.Pointer box, double d)
    • inter_stbox_stbox

      public static jnr.ffi.Pointer inter_stbox_stbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tgeogpointinst_from_mfjson

      public static jnr.ffi.Pointer tgeogpointinst_from_mfjson(jnr.ffi.Pointer mfjson, int srid)
    • tgeogpointinst_in

      public static jnr.ffi.Pointer tgeogpointinst_in(String str)
    • tgeogpointseq_from_mfjson

      public static jnr.ffi.Pointer tgeogpointseq_from_mfjson(jnr.ffi.Pointer mfjson, int srid, int interp)
    • tgeogpointseq_in

      public static jnr.ffi.Pointer tgeogpointseq_in(String str, int interp)
    • tgeogpointseqset_from_mfjson

      public static jnr.ffi.Pointer tgeogpointseqset_from_mfjson(jnr.ffi.Pointer mfjson, int srid, int interp)
    • tgeogpointseqset_in

      public static jnr.ffi.Pointer tgeogpointseqset_in(String str)
    • tgeompointinst_from_mfjson

      public static jnr.ffi.Pointer tgeompointinst_from_mfjson(jnr.ffi.Pointer mfjson, int srid)
    • tgeompointinst_in

      public static jnr.ffi.Pointer tgeompointinst_in(String str)
    • tgeompointseq_from_mfjson

      public static jnr.ffi.Pointer tgeompointseq_from_mfjson(jnr.ffi.Pointer mfjson, int srid, int interp)
    • tgeompointseq_in

      public static jnr.ffi.Pointer tgeompointseq_in(String str, int interp)
    • tgeompointseqset_from_mfjson

      public static jnr.ffi.Pointer tgeompointseqset_from_mfjson(jnr.ffi.Pointer mfjson, int srid, int interp)
    • tgeompointseqset_in

      public static jnr.ffi.Pointer tgeompointseqset_in(String str)
    • tgeographyinst_from_mfjson

      public static jnr.ffi.Pointer tgeographyinst_from_mfjson(jnr.ffi.Pointer mfjson, int srid)
    • tgeographyinst_in

      public static jnr.ffi.Pointer tgeographyinst_in(String str)
    • tgeographyseq_from_mfjson

      public static jnr.ffi.Pointer tgeographyseq_from_mfjson(jnr.ffi.Pointer mfjson, int srid, int interp)
    • tgeographyseq_in

      public static jnr.ffi.Pointer tgeographyseq_in(String str, int interp)
    • tgeographyseqset_from_mfjson

      public static jnr.ffi.Pointer tgeographyseqset_from_mfjson(jnr.ffi.Pointer mfjson, int srid, int interp)
    • tgeographyseqset_in

      public static jnr.ffi.Pointer tgeographyseqset_in(String str)
    • tgeometryinst_from_mfjson

      public static jnr.ffi.Pointer tgeometryinst_from_mfjson(jnr.ffi.Pointer mfjson, int srid)
    • tgeometryinst_in

      public static jnr.ffi.Pointer tgeometryinst_in(String str)
    • tgeometryseq_from_mfjson

      public static jnr.ffi.Pointer tgeometryseq_from_mfjson(jnr.ffi.Pointer mfjson, int srid, int interp)
    • tgeometryseq_in

      public static jnr.ffi.Pointer tgeometryseq_in(String str, int interp)
    • tgeometryseqset_from_mfjson

      public static jnr.ffi.Pointer tgeometryseqset_from_mfjson(jnr.ffi.Pointer mfjson, int srid, int interp)
    • tgeometryseqset_in

      public static jnr.ffi.Pointer tgeometryseqset_in(String str)
    • tspatial_set_stbox

      public static void tspatial_set_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer result)
    • tspatialseq_set_stbox

      public static void tspatialseq_set_stbox(jnr.ffi.Pointer seq, jnr.ffi.Pointer box)
    • tspatialseqset_set_stbox

      public static void tspatialseqset_set_stbox(jnr.ffi.Pointer ss, jnr.ffi.Pointer box)
    • tgeo_restrict_elevation

      public static jnr.ffi.Pointer tgeo_restrict_elevation(jnr.ffi.Pointer temp, jnr.ffi.Pointer s, boolean atfunc)
    • tgeo_restrict_geom

      public static jnr.ffi.Pointer tgeo_restrict_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean atfunc)
    • tgeo_restrict_stbox

      public static jnr.ffi.Pointer tgeo_restrict_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box, boolean border_inc, boolean atfunc)
    • tgeoinst_restrict_geom

      public static jnr.ffi.Pointer tgeoinst_restrict_geom(jnr.ffi.Pointer inst, jnr.ffi.Pointer gs, boolean atfunc)
    • tgeoinst_restrict_stbox

      public static jnr.ffi.Pointer tgeoinst_restrict_stbox(jnr.ffi.Pointer inst, jnr.ffi.Pointer box, boolean border_inc, boolean atfunc)
    • tgeoseq_restrict_geom

      public static jnr.ffi.Pointer tgeoseq_restrict_geom(jnr.ffi.Pointer seq, jnr.ffi.Pointer gs, boolean atfunc)
    • tgeoseq_restrict_stbox

      public static jnr.ffi.Pointer tgeoseq_restrict_stbox(jnr.ffi.Pointer seq, jnr.ffi.Pointer box, boolean border_inc, boolean atfunc)
    • tgeoseqset_restrict_geom

      public static jnr.ffi.Pointer tgeoseqset_restrict_geom(jnr.ffi.Pointer ss, jnr.ffi.Pointer gs, boolean atfunc)
    • tgeoseqset_restrict_stbox

      public static jnr.ffi.Pointer tgeoseqset_restrict_stbox(jnr.ffi.Pointer ss, jnr.ffi.Pointer box, boolean border_inc, boolean atfunc)
    • geo_intersects2d

      public static boolean geo_intersects2d(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • geo_covers2d

      public static boolean geo_covers2d(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • tpoint_linear_inter_geom

      public static jnr.ffi.Pointer tpoint_linear_inter_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean clip)
    • tpoint_linear_dwithin_geom

      public static jnr.ffi.Pointer tpoint_linear_dwithin_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, double dist)
    • tpoint_linear_distance_geom

      public static jnr.ffi.Pointer tpoint_linear_distance_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tpoint_linear_restrict_geom

      public static jnr.ffi.Pointer tpoint_linear_restrict_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean atfunc)
    • geom_clip_supported

      public static boolean geom_clip_supported(jnr.ffi.Pointer geom)
    • spatial_srid

      public static int spatial_srid(jnr.ffi.Pointer d, int basetype)
    • spatial_set_srid

      public static boolean spatial_set_srid(jnr.ffi.Pointer d, int basetype, int srid)
    • tspatialinst_srid

      public static int tspatialinst_srid(jnr.ffi.Pointer inst)
    • tpointseq_azimuth

      public static jnr.ffi.Pointer tpointseq_azimuth(jnr.ffi.Pointer seq)
    • tpointseq_cumulative_length

      public static jnr.ffi.Pointer tpointseq_cumulative_length(jnr.ffi.Pointer seq, double prevlength)
    • tpointseq_is_simple

      public static boolean tpointseq_is_simple(jnr.ffi.Pointer seq)
    • tpointseq_length

      public static double tpointseq_length(jnr.ffi.Pointer seq)
    • tpointseq_linear_trajectory

      public static jnr.ffi.Pointer tpointseq_linear_trajectory(jnr.ffi.Pointer seq, boolean unary_union)
    • tgeoseq_stboxes

      public static jnr.ffi.Pointer tgeoseq_stboxes(jnr.ffi.Pointer seq, jnr.ffi.Pointer count)
    • tgeoseq_split_n_stboxes

      public static jnr.ffi.Pointer tgeoseq_split_n_stboxes(jnr.ffi.Pointer seq, int max_count, jnr.ffi.Pointer count)
    • tpointseqset_azimuth

      public static jnr.ffi.Pointer tpointseqset_azimuth(jnr.ffi.Pointer ss)
    • tpointseqset_cumulative_length

      public static jnr.ffi.Pointer tpointseqset_cumulative_length(jnr.ffi.Pointer ss)
    • tpointseqset_is_simple

      public static boolean tpointseqset_is_simple(jnr.ffi.Pointer ss)
    • tpointseqset_length

      public static double tpointseqset_length(jnr.ffi.Pointer ss)
    • tgeoseqset_stboxes

      public static jnr.ffi.Pointer tgeoseqset_stboxes(jnr.ffi.Pointer ss, jnr.ffi.Pointer count)
    • tgeoseqset_split_n_stboxes

      public static jnr.ffi.Pointer tgeoseqset_split_n_stboxes(jnr.ffi.Pointer ss, int max_count, jnr.ffi.Pointer count)
    • tgeominst_tgeoginst

      public static jnr.ffi.Pointer tgeominst_tgeoginst(jnr.ffi.Pointer inst, boolean oper)
    • tgeomseq_tgeogseq

      public static jnr.ffi.Pointer tgeomseq_tgeogseq(jnr.ffi.Pointer seq, boolean oper)
    • tgeomseqset_tgeogseqset

      public static jnr.ffi.Pointer tgeomseqset_tgeogseqset(jnr.ffi.Pointer ss, boolean oper)
    • tgeom_tgeog

      public static jnr.ffi.Pointer tgeom_tgeog(jnr.ffi.Pointer temp, boolean oper)
    • tgeo_tpoint

      public static jnr.ffi.Pointer tgeo_tpoint(jnr.ffi.Pointer temp, boolean oper)
    • tspatialinst_set_srid

      public static void tspatialinst_set_srid(jnr.ffi.Pointer inst, int srid)
    • tpointseq_make_simple

      public static jnr.ffi.Pointer tpointseq_make_simple(jnr.ffi.Pointer seq, jnr.ffi.Pointer count)
    • tspatialseq_set_srid

      public static void tspatialseq_set_srid(jnr.ffi.Pointer seq, int srid)
    • tpointseqset_make_simple

      public static jnr.ffi.Pointer tpointseqset_make_simple(jnr.ffi.Pointer ss, jnr.ffi.Pointer count)
    • tspatialseqset_set_srid

      public static void tspatialseqset_set_srid(jnr.ffi.Pointer ss, int srid)
    • tpointseq_twcentroid

      public static jnr.ffi.Pointer tpointseq_twcentroid(jnr.ffi.Pointer seq)
    • tpointseqset_twcentroid

      public static jnr.ffi.Pointer tpointseqset_twcentroid(jnr.ffi.Pointer ss)
    • npoint_as_ewkt

      public static String npoint_as_ewkt(jnr.ffi.Pointer np, int maxdd)
    • npoint_as_hexwkb

      public static String npoint_as_hexwkb(jnr.ffi.Pointer np, byte variant)
    • npoint_as_text

      public static String npoint_as_text(jnr.ffi.Pointer np, int maxdd)
    • npoint_as_wkb

      public static jnr.ffi.Pointer npoint_as_wkb(jnr.ffi.Pointer np, byte variant)
    • npoint_from_hexwkb

      public static jnr.ffi.Pointer npoint_from_hexwkb(String hexwkb)
    • npoint_from_wkb

      public static jnr.ffi.Pointer npoint_from_wkb(jnr.ffi.Pointer wkb, long size)
    • npoint_in

      public static jnr.ffi.Pointer npoint_in(String str)
    • npoint_out

      public static String npoint_out(jnr.ffi.Pointer np, int maxdd)
    • nsegment_in

      public static jnr.ffi.Pointer nsegment_in(String str)
    • nsegment_out

      public static String nsegment_out(jnr.ffi.Pointer ns, int maxdd)
    • npoint_make

      public static jnr.ffi.Pointer npoint_make(long rid, double pos)
    • nsegment_make

      public static jnr.ffi.Pointer nsegment_make(long rid, double pos1, double pos2)
    • geompoint_to_npoint

      public static jnr.ffi.Pointer geompoint_to_npoint(jnr.ffi.Pointer gs)
    • geom_to_nsegment

      public static jnr.ffi.Pointer geom_to_nsegment(jnr.ffi.Pointer gs)
    • npoint_to_geompoint

      public static jnr.ffi.Pointer npoint_to_geompoint(jnr.ffi.Pointer np)
    • npoint_to_nsegment

      public static jnr.ffi.Pointer npoint_to_nsegment(jnr.ffi.Pointer np)
    • npoint_to_stbox

      public static jnr.ffi.Pointer npoint_to_stbox(jnr.ffi.Pointer np)
    • nsegment_to_geom

      public static jnr.ffi.Pointer nsegment_to_geom(jnr.ffi.Pointer ns)
    • nsegment_to_stbox

      public static jnr.ffi.Pointer nsegment_to_stbox(jnr.ffi.Pointer ns)
    • npoint_hash

      public static int npoint_hash(jnr.ffi.Pointer np)
    • npoint_hash_extended

      public static long npoint_hash_extended(jnr.ffi.Pointer np, long seed)
    • npoint_position

      public static double npoint_position(jnr.ffi.Pointer np)
    • npoint_route

      public static long npoint_route(jnr.ffi.Pointer np)
    • nsegment_end_position

      public static double nsegment_end_position(jnr.ffi.Pointer ns)
    • nsegment_route

      public static long nsegment_route(jnr.ffi.Pointer ns)
    • nsegment_start_position

      public static double nsegment_start_position(jnr.ffi.Pointer ns)
    • route_exists

      public static boolean route_exists(long rid)
    • route_geom

      public static jnr.ffi.Pointer route_geom(long rid)
    • route_length

      public static double route_length(long rid)
    • npoint_round

      public static jnr.ffi.Pointer npoint_round(jnr.ffi.Pointer np, int maxdd)
    • nsegment_round

      public static jnr.ffi.Pointer nsegment_round(jnr.ffi.Pointer ns, int maxdd)
    • get_srid_ways

      public static int get_srid_ways()
    • npoint_srid

      public static int npoint_srid(jnr.ffi.Pointer np)
    • nsegment_srid

      public static int nsegment_srid(jnr.ffi.Pointer ns)
    • npoint_timestamptz_to_stbox

      public static jnr.ffi.Pointer npoint_timestamptz_to_stbox(jnr.ffi.Pointer np, OffsetDateTime t)
    • npoint_tstzspan_to_stbox

      public static jnr.ffi.Pointer npoint_tstzspan_to_stbox(jnr.ffi.Pointer np, jnr.ffi.Pointer s)
    • npoint_cmp

      public static int npoint_cmp(jnr.ffi.Pointer np1, jnr.ffi.Pointer np2)
    • npoint_eq

      public static boolean npoint_eq(jnr.ffi.Pointer np1, jnr.ffi.Pointer np2)
    • npoint_ge

      public static boolean npoint_ge(jnr.ffi.Pointer np1, jnr.ffi.Pointer np2)
    • npoint_gt

      public static boolean npoint_gt(jnr.ffi.Pointer np1, jnr.ffi.Pointer np2)
    • npoint_le

      public static boolean npoint_le(jnr.ffi.Pointer np1, jnr.ffi.Pointer np2)
    • npoint_lt

      public static boolean npoint_lt(jnr.ffi.Pointer np1, jnr.ffi.Pointer np2)
    • npoint_ne

      public static boolean npoint_ne(jnr.ffi.Pointer np1, jnr.ffi.Pointer np2)
    • npoint_same

      public static boolean npoint_same(jnr.ffi.Pointer np1, jnr.ffi.Pointer np2)
    • nsegment_cmp

      public static int nsegment_cmp(jnr.ffi.Pointer ns1, jnr.ffi.Pointer ns2)
    • nsegment_eq

      public static boolean nsegment_eq(jnr.ffi.Pointer ns1, jnr.ffi.Pointer ns2)
    • nsegment_ge

      public static boolean nsegment_ge(jnr.ffi.Pointer ns1, jnr.ffi.Pointer ns2)
    • nsegment_gt

      public static boolean nsegment_gt(jnr.ffi.Pointer ns1, jnr.ffi.Pointer ns2)
    • nsegment_le

      public static boolean nsegment_le(jnr.ffi.Pointer ns1, jnr.ffi.Pointer ns2)
    • nsegment_lt

      public static boolean nsegment_lt(jnr.ffi.Pointer ns1, jnr.ffi.Pointer ns2)
    • nsegment_ne

      public static boolean nsegment_ne(jnr.ffi.Pointer ns1, jnr.ffi.Pointer ns2)
    • npointset_in

      public static jnr.ffi.Pointer npointset_in(String str)
    • npointset_out

      public static String npointset_out(jnr.ffi.Pointer s, int maxdd)
    • npointset_make

      public static jnr.ffi.Pointer npointset_make(jnr.ffi.Pointer values, int count)
    • npoint_to_set

      public static jnr.ffi.Pointer npoint_to_set(jnr.ffi.Pointer np)
    • npointset_end_value

      public static jnr.ffi.Pointer npointset_end_value(jnr.ffi.Pointer s)
    • npointset_routes

      public static jnr.ffi.Pointer npointset_routes(jnr.ffi.Pointer s)
    • npointset_start_value

      public static jnr.ffi.Pointer npointset_start_value(jnr.ffi.Pointer s)
    • npointset_value_n

      public static jnr.ffi.Pointer npointset_value_n(jnr.ffi.Pointer s, int n)
    • npointset_values

      public static jnr.ffi.Pointer npointset_values(jnr.ffi.Pointer s, jnr.ffi.Pointer count)
    • contained_npoint_set

      public static boolean contained_npoint_set(jnr.ffi.Pointer np, jnr.ffi.Pointer s)
    • contains_set_npoint

      public static boolean contains_set_npoint(jnr.ffi.Pointer s, jnr.ffi.Pointer np)
    • intersection_npoint_set

      public static jnr.ffi.Pointer intersection_npoint_set(jnr.ffi.Pointer np, jnr.ffi.Pointer s)
    • intersection_set_npoint

      public static jnr.ffi.Pointer intersection_set_npoint(jnr.ffi.Pointer s, jnr.ffi.Pointer np)
    • minus_npoint_set

      public static jnr.ffi.Pointer minus_npoint_set(jnr.ffi.Pointer np, jnr.ffi.Pointer s)
    • minus_set_npoint

      public static jnr.ffi.Pointer minus_set_npoint(jnr.ffi.Pointer s, jnr.ffi.Pointer np)
    • npoint_union_transfn

      public static jnr.ffi.Pointer npoint_union_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer np)
    • union_npoint_set

      public static jnr.ffi.Pointer union_npoint_set(jnr.ffi.Pointer np, jnr.ffi.Pointer s)
    • union_set_npoint

      public static jnr.ffi.Pointer union_set_npoint(jnr.ffi.Pointer s, jnr.ffi.Pointer np)
    • tnpoint_in

      public static jnr.ffi.Pointer tnpoint_in(String str)
    • tnpoint_from_mfjson

      public static jnr.ffi.Pointer tnpoint_from_mfjson(String mfjson)
    • tnpoint_out

      public static String tnpoint_out(jnr.ffi.Pointer temp, int maxdd)
    • tnpointinst_make

      public static jnr.ffi.Pointer tnpointinst_make(jnr.ffi.Pointer np, OffsetDateTime t)
    • tnpoint_from_base_temp

      public static jnr.ffi.Pointer tnpoint_from_base_temp(jnr.ffi.Pointer np, jnr.ffi.Pointer temp)
    • tnpointseq_from_base_tstzset

      public static jnr.ffi.Pointer tnpointseq_from_base_tstzset(jnr.ffi.Pointer np, jnr.ffi.Pointer s)
    • tnpointseq_from_base_tstzspan

      public static jnr.ffi.Pointer tnpointseq_from_base_tstzspan(jnr.ffi.Pointer np, jnr.ffi.Pointer s, int interp)
    • tnpointseqset_from_base_tstzspanset

      public static jnr.ffi.Pointer tnpointseqset_from_base_tstzspanset(jnr.ffi.Pointer np, jnr.ffi.Pointer ss, int interp)
    • tgeompoint_to_tnpoint

      public static jnr.ffi.Pointer tgeompoint_to_tnpoint(jnr.ffi.Pointer temp)
    • tnpoint_to_tgeompoint

      public static jnr.ffi.Pointer tnpoint_to_tgeompoint(jnr.ffi.Pointer temp)
    • tnpoint_cumulative_length

      public static jnr.ffi.Pointer tnpoint_cumulative_length(jnr.ffi.Pointer temp)
    • tnpoint_end_value

      public static jnr.ffi.Pointer tnpoint_end_value(jnr.ffi.Pointer temp)
    • tnpoint_length

      public static double tnpoint_length(jnr.ffi.Pointer temp)
    • tnpoint_positions

      public static jnr.ffi.Pointer tnpoint_positions(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • tnpoint_route

      public static long tnpoint_route(jnr.ffi.Pointer temp)
    • tnpoint_routes

      public static jnr.ffi.Pointer tnpoint_routes(jnr.ffi.Pointer temp)
    • tnpoint_speed

      public static jnr.ffi.Pointer tnpoint_speed(jnr.ffi.Pointer temp)
    • tnpoint_start_value

      public static jnr.ffi.Pointer tnpoint_start_value(jnr.ffi.Pointer temp)
    • tnpoint_trajectory

      public static jnr.ffi.Pointer tnpoint_trajectory(jnr.ffi.Pointer temp)
    • tnpoint_value_at_timestamptz

      public static jnr.ffi.Pointer tnpoint_value_at_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean strict)
    • tnpoint_value_n

      public static jnr.ffi.Pointer tnpoint_value_n(jnr.ffi.Pointer temp, int n)
    • tnpoint_values

      public static jnr.ffi.Pointer tnpoint_values(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • tnpoint_twcentroid

      public static jnr.ffi.Pointer tnpoint_twcentroid(jnr.ffi.Pointer temp)
    • tnpoint_at_geom

      public static jnr.ffi.Pointer tnpoint_at_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tnpoint_at_npoint

      public static jnr.ffi.Pointer tnpoint_at_npoint(jnr.ffi.Pointer temp, jnr.ffi.Pointer np)
    • tnpoint_at_npointset

      public static jnr.ffi.Pointer tnpoint_at_npointset(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • tnpoint_at_stbox

      public static jnr.ffi.Pointer tnpoint_at_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box, boolean border_inc)
    • tnpoint_minus_geom

      public static jnr.ffi.Pointer tnpoint_minus_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tnpoint_minus_npoint

      public static jnr.ffi.Pointer tnpoint_minus_npoint(jnr.ffi.Pointer temp, jnr.ffi.Pointer np)
    • tnpoint_minus_npointset

      public static jnr.ffi.Pointer tnpoint_minus_npointset(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • tnpoint_minus_stbox

      public static jnr.ffi.Pointer tnpoint_minus_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box, boolean border_inc)
    • tdistance_tnpoint_npoint

      public static jnr.ffi.Pointer tdistance_tnpoint_npoint(jnr.ffi.Pointer temp, jnr.ffi.Pointer np)
    • tdistance_tnpoint_geo

      public static jnr.ffi.Pointer tdistance_tnpoint_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tdistance_tnpoint_tnpoint

      public static jnr.ffi.Pointer tdistance_tnpoint_tnpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • nad_tnpoint_geo

      public static double nad_tnpoint_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • nad_tnpoint_npoint

      public static double nad_tnpoint_npoint(jnr.ffi.Pointer temp, jnr.ffi.Pointer np)
    • nad_tnpoint_stbox

      public static double nad_tnpoint_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • nad_tnpoint_tnpoint

      public static double nad_tnpoint_tnpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • nai_tnpoint_geo

      public static jnr.ffi.Pointer nai_tnpoint_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • nai_tnpoint_npoint

      public static jnr.ffi.Pointer nai_tnpoint_npoint(jnr.ffi.Pointer temp, jnr.ffi.Pointer np)
    • nai_tnpoint_tnpoint

      public static jnr.ffi.Pointer nai_tnpoint_tnpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • shortestline_tnpoint_geo

      public static jnr.ffi.Pointer shortestline_tnpoint_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • shortestline_tnpoint_npoint

      public static jnr.ffi.Pointer shortestline_tnpoint_npoint(jnr.ffi.Pointer temp, jnr.ffi.Pointer np)
    • shortestline_tnpoint_tnpoint

      public static jnr.ffi.Pointer shortestline_tnpoint_tnpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tnpoint_tcentroid_transfn

      public static jnr.ffi.Pointer tnpoint_tcentroid_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp)
    • always_eq_npoint_tnpoint

      public static int always_eq_npoint_tnpoint(jnr.ffi.Pointer np, jnr.ffi.Pointer temp)
    • always_eq_tnpoint_npoint

      public static int always_eq_tnpoint_npoint(jnr.ffi.Pointer temp, jnr.ffi.Pointer np)
    • always_eq_tnpoint_tnpoint

      public static int always_eq_tnpoint_tnpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • always_ne_npoint_tnpoint

      public static int always_ne_npoint_tnpoint(jnr.ffi.Pointer np, jnr.ffi.Pointer temp)
    • always_ne_tnpoint_npoint

      public static int always_ne_tnpoint_npoint(jnr.ffi.Pointer temp, jnr.ffi.Pointer np)
    • always_ne_tnpoint_tnpoint

      public static int always_ne_tnpoint_tnpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ever_eq_npoint_tnpoint

      public static int ever_eq_npoint_tnpoint(jnr.ffi.Pointer np, jnr.ffi.Pointer temp)
    • ever_eq_tnpoint_npoint

      public static int ever_eq_tnpoint_npoint(jnr.ffi.Pointer temp, jnr.ffi.Pointer np)
    • ever_eq_tnpoint_tnpoint

      public static int ever_eq_tnpoint_tnpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ever_ne_npoint_tnpoint

      public static int ever_ne_npoint_tnpoint(jnr.ffi.Pointer np, jnr.ffi.Pointer temp)
    • ever_ne_tnpoint_npoint

      public static int ever_ne_tnpoint_npoint(jnr.ffi.Pointer temp, jnr.ffi.Pointer np)
    • ever_ne_tnpoint_tnpoint

      public static int ever_ne_tnpoint_tnpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • teq_tnpoint_npoint

      public static jnr.ffi.Pointer teq_tnpoint_npoint(jnr.ffi.Pointer temp, jnr.ffi.Pointer np)
    • tne_tnpoint_npoint

      public static jnr.ffi.Pointer tne_tnpoint_npoint(jnr.ffi.Pointer temp, jnr.ffi.Pointer np)
    • pcpoint_hex_in

      public static jnr.ffi.Pointer pcpoint_hex_in(String str)
    • pcpoint_hex_out

      public static String pcpoint_hex_out(jnr.ffi.Pointer pt, int maxdd)
    • pcpoint_from_hexwkb

      public static jnr.ffi.Pointer pcpoint_from_hexwkb(String hexwkb)
    • pcpoint_as_hexwkb

      public static String pcpoint_as_hexwkb(jnr.ffi.Pointer pt)
    • pcpoint_copy

      public static jnr.ffi.Pointer pcpoint_copy(jnr.ffi.Pointer pt)
    • pcpoint_get_pcid

      public static int pcpoint_get_pcid(jnr.ffi.Pointer pt)
    • pcpoint_hash

      public static int pcpoint_hash(jnr.ffi.Pointer pt)
    • pcpoint_hash_extended

      public static long pcpoint_hash_extended(jnr.ffi.Pointer pt, long seed)
    • pcpoint_get_x

      public static jnr.ffi.Pointer pcpoint_get_x(jnr.ffi.Pointer pt, jnr.ffi.Pointer schema)
    • pcpoint_get_y

      public static jnr.ffi.Pointer pcpoint_get_y(jnr.ffi.Pointer pt, jnr.ffi.Pointer schema)
    • pcpoint_get_z

      public static jnr.ffi.Pointer pcpoint_get_z(jnr.ffi.Pointer pt, jnr.ffi.Pointer schema)
    • pcpoint_get_dim

      public static jnr.ffi.Pointer pcpoint_get_dim(jnr.ffi.Pointer pt, jnr.ffi.Pointer schema, String name)
    • pcpoint_to_tpcbox

      public static jnr.ffi.Pointer pcpoint_to_tpcbox(jnr.ffi.Pointer pt, jnr.ffi.Pointer schema)
    • meos_pc_schema

      public static jnr.ffi.Pointer meos_pc_schema(int pcid)
    • meos_pc_schema_register

      public static void meos_pc_schema_register(int pcid, jnr.ffi.Pointer schema)
    • meos_pc_schema_register_xml

      public static void meos_pc_schema_register_xml(int pcid, jnr.ffi.Pointer schema, String xml_text)
    • meos_pc_schema_xml

      public static String meos_pc_schema_xml(int pcid)
    • meos_pc_schema_clear

      public static void meos_pc_schema_clear()
    • pcpoint_cmp

      public static int pcpoint_cmp(jnr.ffi.Pointer pt1, jnr.ffi.Pointer pt2)
    • pcpoint_eq

      public static boolean pcpoint_eq(jnr.ffi.Pointer pt1, jnr.ffi.Pointer pt2)
    • pcpoint_ne

      public static boolean pcpoint_ne(jnr.ffi.Pointer pt1, jnr.ffi.Pointer pt2)
    • pcpoint_lt

      public static boolean pcpoint_lt(jnr.ffi.Pointer pt1, jnr.ffi.Pointer pt2)
    • pcpoint_le

      public static boolean pcpoint_le(jnr.ffi.Pointer pt1, jnr.ffi.Pointer pt2)
    • pcpoint_gt

      public static boolean pcpoint_gt(jnr.ffi.Pointer pt1, jnr.ffi.Pointer pt2)
    • pcpoint_ge

      public static boolean pcpoint_ge(jnr.ffi.Pointer pt1, jnr.ffi.Pointer pt2)
    • pcpatch_hex_in

      public static jnr.ffi.Pointer pcpatch_hex_in(String str)
    • pcpatch_hex_out

      public static String pcpatch_hex_out(jnr.ffi.Pointer pa, int maxdd)
    • pcpatch_from_hexwkb

      public static jnr.ffi.Pointer pcpatch_from_hexwkb(String hexwkb)
    • pcpatch_as_hexwkb

      public static String pcpatch_as_hexwkb(jnr.ffi.Pointer pa)
    • pcpatch_copy

      public static jnr.ffi.Pointer pcpatch_copy(jnr.ffi.Pointer pa)
    • pcpatch_get_pcid

      public static int pcpatch_get_pcid(jnr.ffi.Pointer pa)
    • pcpatch_npoints

      public static int pcpatch_npoints(jnr.ffi.Pointer pa)
    • pcpatch_hash

      public static int pcpatch_hash(jnr.ffi.Pointer pa)
    • pcpatch_hash_extended

      public static long pcpatch_hash_extended(jnr.ffi.Pointer pa, long seed)
    • pcpatch_cmp

      public static int pcpatch_cmp(jnr.ffi.Pointer pa1, jnr.ffi.Pointer pa2)
    • pcpatch_eq

      public static boolean pcpatch_eq(jnr.ffi.Pointer pa1, jnr.ffi.Pointer pa2)
    • pcpatch_ne

      public static boolean pcpatch_ne(jnr.ffi.Pointer pa1, jnr.ffi.Pointer pa2)
    • pcpatch_lt

      public static boolean pcpatch_lt(jnr.ffi.Pointer pa1, jnr.ffi.Pointer pa2)
    • pcpatch_le

      public static boolean pcpatch_le(jnr.ffi.Pointer pa1, jnr.ffi.Pointer pa2)
    • pcpatch_gt

      public static boolean pcpatch_gt(jnr.ffi.Pointer pa1, jnr.ffi.Pointer pa2)
    • pcpatch_ge

      public static boolean pcpatch_ge(jnr.ffi.Pointer pa1, jnr.ffi.Pointer pa2)
    • pcpointset_in

      public static jnr.ffi.Pointer pcpointset_in(String str)
    • pcpointset_out

      public static String pcpointset_out(jnr.ffi.Pointer s, int maxdd)
    • pcpointset_make

      public static jnr.ffi.Pointer pcpointset_make(jnr.ffi.Pointer values, int count)
    • pcpoint_to_set

      public static jnr.ffi.Pointer pcpoint_to_set(jnr.ffi.Pointer pt)
    • pcpointset_start_value

      public static jnr.ffi.Pointer pcpointset_start_value(jnr.ffi.Pointer s)
    • pcpointset_end_value

      public static jnr.ffi.Pointer pcpointset_end_value(jnr.ffi.Pointer s)
    • pcpointset_value_n

      public static jnr.ffi.Pointer pcpointset_value_n(jnr.ffi.Pointer s, int n)
    • pcpointset_values

      public static jnr.ffi.Pointer pcpointset_values(jnr.ffi.Pointer s, jnr.ffi.Pointer count)
    • contains_set_pcpoint

      public static boolean contains_set_pcpoint(jnr.ffi.Pointer s, jnr.ffi.Pointer pt)
    • contained_pcpoint_set

      public static boolean contained_pcpoint_set(jnr.ffi.Pointer pt, jnr.ffi.Pointer s)
    • intersection_pcpoint_set

      public static jnr.ffi.Pointer intersection_pcpoint_set(jnr.ffi.Pointer pt, jnr.ffi.Pointer s)
    • intersection_set_pcpoint

      public static jnr.ffi.Pointer intersection_set_pcpoint(jnr.ffi.Pointer s, jnr.ffi.Pointer pt)
    • minus_pcpoint_set

      public static jnr.ffi.Pointer minus_pcpoint_set(jnr.ffi.Pointer pt, jnr.ffi.Pointer s)
    • minus_set_pcpoint

      public static jnr.ffi.Pointer minus_set_pcpoint(jnr.ffi.Pointer s, jnr.ffi.Pointer pt)
    • union_pcpoint_set

      public static jnr.ffi.Pointer union_pcpoint_set(jnr.ffi.Pointer pt, jnr.ffi.Pointer s)
    • union_set_pcpoint

      public static jnr.ffi.Pointer union_set_pcpoint(jnr.ffi.Pointer s, jnr.ffi.Pointer pt)
    • pcpoint_union_transfn

      public static jnr.ffi.Pointer pcpoint_union_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer pt)
    • pcpatchset_in

      public static jnr.ffi.Pointer pcpatchset_in(String str)
    • pcpatchset_out

      public static String pcpatchset_out(jnr.ffi.Pointer s, int maxdd)
    • pcpatchset_make

      public static jnr.ffi.Pointer pcpatchset_make(jnr.ffi.Pointer values, int count)
    • pcpatch_to_set

      public static jnr.ffi.Pointer pcpatch_to_set(jnr.ffi.Pointer pa)
    • pcpatchset_start_value

      public static jnr.ffi.Pointer pcpatchset_start_value(jnr.ffi.Pointer s)
    • pcpatchset_end_value

      public static jnr.ffi.Pointer pcpatchset_end_value(jnr.ffi.Pointer s)
    • pcpatchset_value_n

      public static jnr.ffi.Pointer pcpatchset_value_n(jnr.ffi.Pointer s, int n)
    • pcpatchset_values

      public static jnr.ffi.Pointer pcpatchset_values(jnr.ffi.Pointer s, jnr.ffi.Pointer count)
    • contains_set_pcpatch

      public static boolean contains_set_pcpatch(jnr.ffi.Pointer s, jnr.ffi.Pointer pa)
    • contained_pcpatch_set

      public static boolean contained_pcpatch_set(jnr.ffi.Pointer pa, jnr.ffi.Pointer s)
    • intersection_pcpatch_set

      public static jnr.ffi.Pointer intersection_pcpatch_set(jnr.ffi.Pointer pa, jnr.ffi.Pointer s)
    • intersection_set_pcpatch

      public static jnr.ffi.Pointer intersection_set_pcpatch(jnr.ffi.Pointer s, jnr.ffi.Pointer pa)
    • minus_pcpatch_set

      public static jnr.ffi.Pointer minus_pcpatch_set(jnr.ffi.Pointer pa, jnr.ffi.Pointer s)
    • minus_set_pcpatch

      public static jnr.ffi.Pointer minus_set_pcpatch(jnr.ffi.Pointer s, jnr.ffi.Pointer pa)
    • union_pcpatch_set

      public static jnr.ffi.Pointer union_pcpatch_set(jnr.ffi.Pointer pa, jnr.ffi.Pointer s)
    • union_set_pcpatch

      public static jnr.ffi.Pointer union_set_pcpatch(jnr.ffi.Pointer s, jnr.ffi.Pointer pa)
    • pcpatch_union_transfn

      public static jnr.ffi.Pointer pcpatch_union_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer pa)
    • tpcbox_in

      public static jnr.ffi.Pointer tpcbox_in(String str)
    • tpcbox_out

      public static String tpcbox_out(jnr.ffi.Pointer box, int maxdd)
    • tpcbox_make

      public static jnr.ffi.Pointer tpcbox_make(boolean hasx, boolean hasz, boolean hast, boolean geodetic, int srid, int pcid, double xmin, double xmax, double ymin, double ymax, double zmin, double zmax, jnr.ffi.Pointer period)
    • tpcbox_copy

      public static jnr.ffi.Pointer tpcbox_copy(jnr.ffi.Pointer box)
    • pcpatch_to_tpcbox

      public static jnr.ffi.Pointer pcpatch_to_tpcbox(jnr.ffi.Pointer pa, int srid)
    • tpcbox_hasx

      public static boolean tpcbox_hasx(jnr.ffi.Pointer box)
    • tpcbox_hasz

      public static boolean tpcbox_hasz(jnr.ffi.Pointer box)
    • tpcbox_hast

      public static boolean tpcbox_hast(jnr.ffi.Pointer box)
    • tpcbox_geodetic

      public static boolean tpcbox_geodetic(jnr.ffi.Pointer box)
    • tpcbox_xmin

      public static jnr.ffi.Pointer tpcbox_xmin(jnr.ffi.Pointer box)
    • tpcbox_xmax

      public static jnr.ffi.Pointer tpcbox_xmax(jnr.ffi.Pointer box)
    • tpcbox_ymin

      public static jnr.ffi.Pointer tpcbox_ymin(jnr.ffi.Pointer box)
    • tpcbox_ymax

      public static jnr.ffi.Pointer tpcbox_ymax(jnr.ffi.Pointer box)
    • tpcbox_zmin

      public static jnr.ffi.Pointer tpcbox_zmin(jnr.ffi.Pointer box)
    • tpcbox_zmax

      public static jnr.ffi.Pointer tpcbox_zmax(jnr.ffi.Pointer box)
    • tpcbox_tmin

      public static jnr.ffi.Pointer tpcbox_tmin(jnr.ffi.Pointer box)
    • tpcbox_tmin_inc

      public static jnr.ffi.Pointer tpcbox_tmin_inc(jnr.ffi.Pointer box)
    • tpcbox_tmax

      public static jnr.ffi.Pointer tpcbox_tmax(jnr.ffi.Pointer box)
    • tpcbox_tmax_inc

      public static jnr.ffi.Pointer tpcbox_tmax_inc(jnr.ffi.Pointer box)
    • tpcbox_srid

      public static int tpcbox_srid(jnr.ffi.Pointer box)
    • tpcbox_pcid

      public static int tpcbox_pcid(jnr.ffi.Pointer box)
    • tpcbox_to_stbox

      public static jnr.ffi.Pointer tpcbox_to_stbox(jnr.ffi.Pointer box)
    • tpcbox_expand

      public static void tpcbox_expand(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tpcbox_round

      public static jnr.ffi.Pointer tpcbox_round(jnr.ffi.Pointer box, int maxdd)
    • tpcbox_set_srid

      public static jnr.ffi.Pointer tpcbox_set_srid(jnr.ffi.Pointer box, int srid)
    • union_tpcbox_tpcbox

      public static jnr.ffi.Pointer union_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2, boolean strict)
    • inter_tpcbox_tpcbox

      public static boolean inter_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2, jnr.ffi.Pointer result)
    • intersection_tpcbox_tpcbox

      public static jnr.ffi.Pointer intersection_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • contains_tpcbox_tpcbox

      public static boolean contains_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • contained_tpcbox_tpcbox

      public static boolean contained_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overlaps_tpcbox_tpcbox

      public static boolean overlaps_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • same_tpcbox_tpcbox

      public static boolean same_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • adjacent_tpcbox_tpcbox

      public static boolean adjacent_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tpcbox_cmp

      public static int tpcbox_cmp(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tpcbox_eq

      public static boolean tpcbox_eq(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tpcbox_ne

      public static boolean tpcbox_ne(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tpcbox_lt

      public static boolean tpcbox_lt(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tpcbox_le

      public static boolean tpcbox_le(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tpcbox_gt

      public static boolean tpcbox_gt(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tpcbox_ge

      public static boolean tpcbox_ge(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • left_tpcbox_tpcbox

      public static boolean left_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overleft_tpcbox_tpcbox

      public static boolean overleft_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • right_tpcbox_tpcbox

      public static boolean right_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overright_tpcbox_tpcbox

      public static boolean overright_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • below_tpcbox_tpcbox

      public static boolean below_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overbelow_tpcbox_tpcbox

      public static boolean overbelow_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • above_tpcbox_tpcbox

      public static boolean above_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overabove_tpcbox_tpcbox

      public static boolean overabove_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • front_tpcbox_tpcbox

      public static boolean front_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overfront_tpcbox_tpcbox

      public static boolean overfront_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • back_tpcbox_tpcbox

      public static boolean back_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overback_tpcbox_tpcbox

      public static boolean overback_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • before_tpcbox_tpcbox

      public static boolean before_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overbefore_tpcbox_tpcbox

      public static boolean overbefore_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • after_tpcbox_tpcbox

      public static boolean after_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • overafter_tpcbox_tpcbox

      public static boolean overafter_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • ensure_same_pcid_tpcbox

      public static boolean ensure_same_pcid_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tpointcloudinst_make

      public static jnr.ffi.Pointer tpointcloudinst_make(jnr.ffi.Pointer pt, OffsetDateTime t)
    • eintersects_tpcpoint_geo

      public static boolean eintersects_tpcpoint_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • nad_tpcpoint_geo

      public static double nad_tpcpoint_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • pose_as_ewkt

      public static String pose_as_ewkt(jnr.ffi.Pointer pose, int maxdd)
    • pose_as_hexwkb

      public static String pose_as_hexwkb(jnr.ffi.Pointer pose, byte variant)
    • pose_as_text

      public static String pose_as_text(jnr.ffi.Pointer pose, int maxdd)
    • pose_as_wkb

      public static jnr.ffi.Pointer pose_as_wkb(jnr.ffi.Pointer pose, byte variant)
    • pose_from_wkb

      public static jnr.ffi.Pointer pose_from_wkb(jnr.ffi.Pointer wkb, long size)
    • pose_from_hexwkb

      public static jnr.ffi.Pointer pose_from_hexwkb(String hexwkb)
    • pose_in

      public static jnr.ffi.Pointer pose_in(String str)
    • pose_out

      public static String pose_out(jnr.ffi.Pointer pose, int maxdd)
    • pose_from_geopose

      public static jnr.ffi.Pointer pose_from_geopose(String json)
    • pose_as_geopose

      public static String pose_as_geopose(jnr.ffi.Pointer pose, int conformance, int precision)
    • tpose_from_geopose

      public static jnr.ffi.Pointer tpose_from_geopose(String json)
    • tpose_as_geopose

      public static String tpose_as_geopose(jnr.ffi.Pointer temp, int conformance, int precision)
    • pose_apply_geo

      public static jnr.ffi.Pointer pose_apply_geo(jnr.ffi.Pointer pose, jnr.ffi.Pointer body)
    • tpose_apply_geo

      public static jnr.ffi.Pointer tpose_apply_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer body)
    • pose_copy

      public static jnr.ffi.Pointer pose_copy(jnr.ffi.Pointer pose)
    • pose_make_2d

      public static jnr.ffi.Pointer pose_make_2d(double x, double y, double theta, boolean geodetic, int srid)
    • pose_make_3d

      public static jnr.ffi.Pointer pose_make_3d(double x, double y, double z, double W, double X, double Y, double Z, boolean geodetic, int srid)
    • pose_make_point2d

      public static jnr.ffi.Pointer pose_make_point2d(jnr.ffi.Pointer gs, double theta)
    • pose_make_point3d

      public static jnr.ffi.Pointer pose_make_point3d(jnr.ffi.Pointer gs, double W, double X, double Y, double Z)
    • pose_to_point

      public static jnr.ffi.Pointer pose_to_point(jnr.ffi.Pointer pose)
    • pose_to_stbox

      public static jnr.ffi.Pointer pose_to_stbox(jnr.ffi.Pointer pose)
    • pose_hash

      public static int pose_hash(jnr.ffi.Pointer pose)
    • pose_hash_extended

      public static long pose_hash_extended(jnr.ffi.Pointer pose, long seed)
    • pose_orientation

      public static jnr.ffi.Pointer pose_orientation(jnr.ffi.Pointer pose, jnr.ffi.Pointer count)
    • pose_rotation

      public static double pose_rotation(jnr.ffi.Pointer pose)
    • pose_yaw

      public static double pose_yaw(jnr.ffi.Pointer pose)
    • pose_pitch

      public static double pose_pitch(jnr.ffi.Pointer pose)
    • pose_roll

      public static double pose_roll(jnr.ffi.Pointer pose)
    • pose_angular_distance

      public static double pose_angular_distance(jnr.ffi.Pointer pose1, jnr.ffi.Pointer pose2)
    • pose_normalize

      public static jnr.ffi.Pointer pose_normalize(jnr.ffi.Pointer pose)
    • pose_round

      public static jnr.ffi.Pointer pose_round(jnr.ffi.Pointer pose, int maxdd)
    • posearr_round

      public static jnr.ffi.Pointer posearr_round(jnr.ffi.Pointer posearr, int count, int maxdd)
    • pose_set_srid

      public static void pose_set_srid(jnr.ffi.Pointer pose, int srid)
    • pose_srid

      public static int pose_srid(jnr.ffi.Pointer pose)
    • pose_transform

      public static jnr.ffi.Pointer pose_transform(jnr.ffi.Pointer pose, int srid)
    • pose_transform_pipeline

      public static jnr.ffi.Pointer pose_transform_pipeline(jnr.ffi.Pointer pose, String pipelinestr, int srid, boolean is_forward)
    • pose_tstzspan_to_stbox

      public static jnr.ffi.Pointer pose_tstzspan_to_stbox(jnr.ffi.Pointer pose, jnr.ffi.Pointer s)
    • pose_timestamptz_to_stbox

      public static jnr.ffi.Pointer pose_timestamptz_to_stbox(jnr.ffi.Pointer pose, OffsetDateTime t)
    • distance_pose_geo

      public static double distance_pose_geo(jnr.ffi.Pointer pose, jnr.ffi.Pointer gs)
    • distance_pose_pose

      public static double distance_pose_pose(jnr.ffi.Pointer pose1, jnr.ffi.Pointer pose2)
    • distance_pose_stbox

      public static double distance_pose_stbox(jnr.ffi.Pointer pose, jnr.ffi.Pointer box)
    • pose_cmp

      public static int pose_cmp(jnr.ffi.Pointer pose1, jnr.ffi.Pointer pose2)
    • pose_eq

      public static boolean pose_eq(jnr.ffi.Pointer pose1, jnr.ffi.Pointer pose2)
    • pose_ge

      public static boolean pose_ge(jnr.ffi.Pointer pose1, jnr.ffi.Pointer pose2)
    • pose_gt

      public static boolean pose_gt(jnr.ffi.Pointer pose1, jnr.ffi.Pointer pose2)
    • pose_le

      public static boolean pose_le(jnr.ffi.Pointer pose1, jnr.ffi.Pointer pose2)
    • pose_lt

      public static boolean pose_lt(jnr.ffi.Pointer pose1, jnr.ffi.Pointer pose2)
    • pose_ne

      public static boolean pose_ne(jnr.ffi.Pointer pose1, jnr.ffi.Pointer pose2)
    • pose_nsame

      public static boolean pose_nsame(jnr.ffi.Pointer pose1, jnr.ffi.Pointer pose2)
    • pose_same

      public static boolean pose_same(jnr.ffi.Pointer pose1, jnr.ffi.Pointer pose2)
    • poseset_in

      public static jnr.ffi.Pointer poseset_in(String str)
    • poseset_out

      public static String poseset_out(jnr.ffi.Pointer s, int maxdd)
    • poseset_make

      public static jnr.ffi.Pointer poseset_make(jnr.ffi.Pointer values, int count)
    • pose_to_set

      public static jnr.ffi.Pointer pose_to_set(jnr.ffi.Pointer pose)
    • poseset_end_value

      public static jnr.ffi.Pointer poseset_end_value(jnr.ffi.Pointer s)
    • poseset_start_value

      public static jnr.ffi.Pointer poseset_start_value(jnr.ffi.Pointer s)
    • poseset_value_n

      public static jnr.ffi.Pointer poseset_value_n(jnr.ffi.Pointer s, int n)
    • poseset_values

      public static jnr.ffi.Pointer poseset_values(jnr.ffi.Pointer s, jnr.ffi.Pointer count)
    • contained_pose_set

      public static boolean contained_pose_set(jnr.ffi.Pointer pose, jnr.ffi.Pointer s)
    • contains_set_pose

      public static boolean contains_set_pose(jnr.ffi.Pointer s, jnr.ffi.Pointer pose)
    • intersection_pose_set

      public static jnr.ffi.Pointer intersection_pose_set(jnr.ffi.Pointer pose, jnr.ffi.Pointer s)
    • intersection_set_pose

      public static jnr.ffi.Pointer intersection_set_pose(jnr.ffi.Pointer s, jnr.ffi.Pointer pose)
    • minus_pose_set

      public static jnr.ffi.Pointer minus_pose_set(jnr.ffi.Pointer pose, jnr.ffi.Pointer s)
    • minus_set_pose

      public static jnr.ffi.Pointer minus_set_pose(jnr.ffi.Pointer s, jnr.ffi.Pointer pose)
    • pose_union_transfn

      public static jnr.ffi.Pointer pose_union_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer pose)
    • union_pose_set

      public static jnr.ffi.Pointer union_pose_set(jnr.ffi.Pointer pose, jnr.ffi.Pointer s)
    • union_set_pose

      public static jnr.ffi.Pointer union_set_pose(jnr.ffi.Pointer s, jnr.ffi.Pointer pose)
    • tpose_from_mfjson

      public static jnr.ffi.Pointer tpose_from_mfjson(String str)
    • tpose_in

      public static jnr.ffi.Pointer tpose_in(String str)
    • tposeinst_make

      public static jnr.ffi.Pointer tposeinst_make(jnr.ffi.Pointer pose, OffsetDateTime t)
    • tpose_from_base_temp

      public static jnr.ffi.Pointer tpose_from_base_temp(jnr.ffi.Pointer pose, jnr.ffi.Pointer temp)
    • tposeseq_from_base_tstzset

      public static jnr.ffi.Pointer tposeseq_from_base_tstzset(jnr.ffi.Pointer pose, jnr.ffi.Pointer s)
    • tposeseq_from_base_tstzspan

      public static jnr.ffi.Pointer tposeseq_from_base_tstzspan(jnr.ffi.Pointer pose, jnr.ffi.Pointer s, int interp)
    • tposeseqset_from_base_tstzspanset

      public static jnr.ffi.Pointer tposeseqset_from_base_tstzspanset(jnr.ffi.Pointer pose, jnr.ffi.Pointer ss, int interp)
    • tpose_make

      public static jnr.ffi.Pointer tpose_make(jnr.ffi.Pointer tpoint, jnr.ffi.Pointer tradius)
    • tpose_to_tpoint

      public static jnr.ffi.Pointer tpose_to_tpoint(jnr.ffi.Pointer temp)
    • tpose_end_value

      public static jnr.ffi.Pointer tpose_end_value(jnr.ffi.Pointer temp)
    • tpose_points

      public static jnr.ffi.Pointer tpose_points(jnr.ffi.Pointer temp)
    • tpose_rotation

      public static jnr.ffi.Pointer tpose_rotation(jnr.ffi.Pointer temp)
    • tpose_yaw

      public static jnr.ffi.Pointer tpose_yaw(jnr.ffi.Pointer temp)
    • tpose_pitch

      public static jnr.ffi.Pointer tpose_pitch(jnr.ffi.Pointer temp)
    • tpose_roll

      public static jnr.ffi.Pointer tpose_roll(jnr.ffi.Pointer temp)
    • tpose_speed

      public static jnr.ffi.Pointer tpose_speed(jnr.ffi.Pointer temp)
    • tpose_angular_speed

      public static jnr.ffi.Pointer tpose_angular_speed(jnr.ffi.Pointer temp)
    • tpose_start_value

      public static jnr.ffi.Pointer tpose_start_value(jnr.ffi.Pointer temp)
    • tpose_trajectory

      public static jnr.ffi.Pointer tpose_trajectory(jnr.ffi.Pointer temp)
    • tpose_value_at_timestamptz

      public static jnr.ffi.Pointer tpose_value_at_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean strict)
    • tpose_value_n

      public static jnr.ffi.Pointer tpose_value_n(jnr.ffi.Pointer temp, int n)
    • tpose_values

      public static jnr.ffi.Pointer tpose_values(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • tpose_at_geom

      public static jnr.ffi.Pointer tpose_at_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tpose_at_stbox

      public static jnr.ffi.Pointer tpose_at_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box, boolean border_inc)
    • tpose_at_pose

      public static jnr.ffi.Pointer tpose_at_pose(jnr.ffi.Pointer temp, jnr.ffi.Pointer pose)
    • tpose_minus_geom

      public static jnr.ffi.Pointer tpose_minus_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tpose_minus_pose

      public static jnr.ffi.Pointer tpose_minus_pose(jnr.ffi.Pointer temp, jnr.ffi.Pointer pose)
    • tpose_minus_stbox

      public static jnr.ffi.Pointer tpose_minus_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box, boolean border_inc)
    • tdistance_tpose_pose

      public static jnr.ffi.Pointer tdistance_tpose_pose(jnr.ffi.Pointer temp, jnr.ffi.Pointer pose)
    • tdistance_tpose_geo

      public static jnr.ffi.Pointer tdistance_tpose_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tdistance_tpose_tpose

      public static jnr.ffi.Pointer tdistance_tpose_tpose(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • nad_tpose_geo

      public static double nad_tpose_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • nad_tpose_pose

      public static double nad_tpose_pose(jnr.ffi.Pointer temp, jnr.ffi.Pointer pose)
    • nad_tpose_stbox

      public static double nad_tpose_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • nad_tpose_tpose

      public static double nad_tpose_tpose(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • nai_tpose_geo

      public static jnr.ffi.Pointer nai_tpose_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • nai_tpose_pose

      public static jnr.ffi.Pointer nai_tpose_pose(jnr.ffi.Pointer temp, jnr.ffi.Pointer pose)
    • nai_tpose_tpose

      public static jnr.ffi.Pointer nai_tpose_tpose(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • shortestline_tpose_geo

      public static jnr.ffi.Pointer shortestline_tpose_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • shortestline_tpose_pose

      public static jnr.ffi.Pointer shortestline_tpose_pose(jnr.ffi.Pointer temp, jnr.ffi.Pointer pose)
    • shortestline_tpose_tpose

      public static jnr.ffi.Pointer shortestline_tpose_tpose(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • always_eq_pose_tpose

      public static int always_eq_pose_tpose(jnr.ffi.Pointer pose, jnr.ffi.Pointer temp)
    • always_eq_tpose_pose

      public static int always_eq_tpose_pose(jnr.ffi.Pointer temp, jnr.ffi.Pointer pose)
    • always_eq_tpose_tpose

      public static int always_eq_tpose_tpose(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • always_ne_pose_tpose

      public static int always_ne_pose_tpose(jnr.ffi.Pointer pose, jnr.ffi.Pointer temp)
    • always_ne_tpose_pose

      public static int always_ne_tpose_pose(jnr.ffi.Pointer temp, jnr.ffi.Pointer pose)
    • always_ne_tpose_tpose

      public static int always_ne_tpose_tpose(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ever_eq_pose_tpose

      public static int ever_eq_pose_tpose(jnr.ffi.Pointer pose, jnr.ffi.Pointer temp)
    • ever_eq_tpose_pose

      public static int ever_eq_tpose_pose(jnr.ffi.Pointer temp, jnr.ffi.Pointer pose)
    • ever_eq_tpose_tpose

      public static int ever_eq_tpose_tpose(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ever_ne_pose_tpose

      public static int ever_ne_pose_tpose(jnr.ffi.Pointer pose, jnr.ffi.Pointer temp)
    • ever_ne_tpose_pose

      public static int ever_ne_tpose_pose(jnr.ffi.Pointer temp, jnr.ffi.Pointer pose)
    • ever_ne_tpose_tpose

      public static int ever_ne_tpose_tpose(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • teq_pose_tpose

      public static jnr.ffi.Pointer teq_pose_tpose(jnr.ffi.Pointer pose, jnr.ffi.Pointer temp)
    • teq_tpose_pose

      public static jnr.ffi.Pointer teq_tpose_pose(jnr.ffi.Pointer temp, jnr.ffi.Pointer pose)
    • tne_pose_tpose

      public static jnr.ffi.Pointer tne_pose_tpose(jnr.ffi.Pointer pose, jnr.ffi.Pointer temp)
    • tne_tpose_pose

      public static jnr.ffi.Pointer tne_tpose_pose(jnr.ffi.Pointer temp, jnr.ffi.Pointer pose)
    • quadbin_is_valid_index

      public static boolean quadbin_is_valid_index(long index)
    • quadbin_is_valid_cell

      public static boolean quadbin_is_valid_cell(long cell)
    • quadbin_tile_to_cell

      public static long quadbin_tile_to_cell(int x, int y, int z)
    • quadbin_cell_to_tile

      public static void quadbin_cell_to_tile(long cell, jnr.ffi.Pointer x, jnr.ffi.Pointer y, jnr.ffi.Pointer z)
    • quadbin_get_resolution

      public static int quadbin_get_resolution(long cell)
    • quadbin_cell_to_parent

      public static long quadbin_cell_to_parent(long cell, int parent_resolution)
    • quadbin_cell_to_children

      public static jnr.ffi.Pointer quadbin_cell_to_children(long cell, int children_resolution, jnr.ffi.Pointer count)
    • quadbin_cell_sibling

      public static long quadbin_cell_sibling(long cell, String direction)
    • quadbin_k_ring

      public static jnr.ffi.Pointer quadbin_k_ring(long cell, int k, jnr.ffi.Pointer count)
    • quadbin_point_to_cell

      public static long quadbin_point_to_cell(double longitude, double latitude, int resolution)
    • quadbin_cell_to_point

      public static void quadbin_cell_to_point(long cell, jnr.ffi.Pointer longitude, jnr.ffi.Pointer latitude)
    • quadbin_cell_to_bounding_box

      public static void quadbin_cell_to_bounding_box(long cell, jnr.ffi.Pointer xmin, jnr.ffi.Pointer ymin, jnr.ffi.Pointer xmax, jnr.ffi.Pointer ymax)
    • geo_to_quadbin_cell

      public static long geo_to_quadbin_cell(jnr.ffi.Pointer point, int resolution)
    • quadbin_cell_to_geompoint

      public static jnr.ffi.Pointer quadbin_cell_to_geompoint(long cell)
    • quadbin_cell_to_geom

      public static jnr.ffi.Pointer quadbin_cell_to_geom(long cell)
    • quadbin_to_stbox

      public static jnr.ffi.Pointer quadbin_to_stbox(long cell)
    • quadbin_timestamptz_to_stbox

      public static jnr.ffi.Pointer quadbin_timestamptz_to_stbox(long cell, OffsetDateTime t)
    • quadbin_tstzspan_to_stbox

      public static jnr.ffi.Pointer quadbin_tstzspan_to_stbox(long cell, jnr.ffi.Pointer s)
    • quadbin_cell_area

      public static double quadbin_cell_area(long cell)
    • quadbin_index_to_string

      public static String quadbin_index_to_string(long index)
    • quadbin_string_to_index

      public static long quadbin_string_to_index(String str)
    • quadbin_cell_to_quadkey

      public static String quadbin_cell_to_quadkey(long cell)
    • quadbin_parse

      public static long quadbin_parse(String str)
    • quadbin_eq

      public static boolean quadbin_eq(long a, long b)
    • quadbin_ne

      public static boolean quadbin_ne(long a, long b)
    • quadbin_lt

      public static boolean quadbin_lt(long a, long b)
    • quadbin_le

      public static boolean quadbin_le(long a, long b)
    • quadbin_gt

      public static boolean quadbin_gt(long a, long b)
    • quadbin_ge

      public static boolean quadbin_ge(long a, long b)
    • quadbin_cmp

      public static int quadbin_cmp(long a, long b)
    • quadbin_hash

      public static int quadbin_hash(long cell)
    • quadbin_grid_disk

      public static jnr.ffi.Pointer quadbin_grid_disk(long origin, int k)
    • quadbin_cell_to_children_set

      public static jnr.ffi.Pointer quadbin_cell_to_children_set(long origin, int children_resolution)
    • tquadbin_in

      public static jnr.ffi.Pointer tquadbin_in(String str)
    • tquadbininst_in

      public static jnr.ffi.Pointer tquadbininst_in(String str)
    • tquadbinseq_in

      public static jnr.ffi.Pointer tquadbinseq_in(String str, int interp)
    • tquadbinseqset_in

      public static jnr.ffi.Pointer tquadbinseqset_in(String str)
    • tquadbin_make

      public static jnr.ffi.Pointer tquadbin_make(long value, OffsetDateTime t)
    • tquadbininst_make

      public static jnr.ffi.Pointer tquadbininst_make(long value, OffsetDateTime t)
    • tquadbinseq_make

      public static jnr.ffi.Pointer tquadbinseq_make(jnr.ffi.Pointer values, jnr.ffi.Pointer times, int count, boolean lower_inc, boolean upper_inc)
    • tquadbinseqset_make

      public static jnr.ffi.Pointer tquadbinseqset_make(jnr.ffi.Pointer sequences, int count)
    • tquadbin_start_value

      public static long tquadbin_start_value(jnr.ffi.Pointer temp)
    • tquadbin_end_value

      public static long tquadbin_end_value(jnr.ffi.Pointer temp)
    • tquadbin_value_n

      public static jnr.ffi.Pointer tquadbin_value_n(jnr.ffi.Pointer temp, int n)
    • tquadbin_values

      public static jnr.ffi.Pointer tquadbin_values(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • tquadbin_value_at_timestamptz

      public static jnr.ffi.Pointer tquadbin_value_at_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean strict)
    • tbigint_to_tquadbin

      public static jnr.ffi.Pointer tbigint_to_tquadbin(jnr.ffi.Pointer temp)
    • tquadbin_to_tbigint

      public static jnr.ffi.Pointer tquadbin_to_tbigint(jnr.ffi.Pointer temp)
    • ever_eq_quadbin_tquadbin

      public static int ever_eq_quadbin_tquadbin(long cell, jnr.ffi.Pointer temp)
    • ever_eq_tquadbin_quadbin

      public static int ever_eq_tquadbin_quadbin(jnr.ffi.Pointer temp, long cell)
    • ever_ne_quadbin_tquadbin

      public static int ever_ne_quadbin_tquadbin(long cell, jnr.ffi.Pointer temp)
    • ever_ne_tquadbin_quadbin

      public static int ever_ne_tquadbin_quadbin(jnr.ffi.Pointer temp, long cell)
    • always_eq_quadbin_tquadbin

      public static int always_eq_quadbin_tquadbin(long cell, jnr.ffi.Pointer temp)
    • always_eq_tquadbin_quadbin

      public static int always_eq_tquadbin_quadbin(jnr.ffi.Pointer temp, long cell)
    • always_ne_quadbin_tquadbin

      public static int always_ne_quadbin_tquadbin(long cell, jnr.ffi.Pointer temp)
    • always_ne_tquadbin_quadbin

      public static int always_ne_tquadbin_quadbin(jnr.ffi.Pointer temp, long cell)
    • ever_eq_tquadbin_tquadbin

      public static int ever_eq_tquadbin_tquadbin(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ever_ne_tquadbin_tquadbin

      public static int ever_ne_tquadbin_tquadbin(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • always_eq_tquadbin_tquadbin

      public static int always_eq_tquadbin_tquadbin(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • always_ne_tquadbin_tquadbin

      public static int always_ne_tquadbin_tquadbin(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • teq_quadbin_tquadbin

      public static jnr.ffi.Pointer teq_quadbin_tquadbin(long cell, jnr.ffi.Pointer temp)
    • teq_tquadbin_quadbin

      public static jnr.ffi.Pointer teq_tquadbin_quadbin(jnr.ffi.Pointer temp, long cell)
    • teq_tquadbin_tquadbin

      public static jnr.ffi.Pointer teq_tquadbin_tquadbin(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tne_quadbin_tquadbin

      public static jnr.ffi.Pointer tne_quadbin_tquadbin(long cell, jnr.ffi.Pointer temp)
    • tne_tquadbin_quadbin

      public static jnr.ffi.Pointer tne_tquadbin_quadbin(jnr.ffi.Pointer temp, long cell)
    • tne_tquadbin_tquadbin

      public static jnr.ffi.Pointer tne_tquadbin_tquadbin(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tquadbin_cell_to_quadkey

      public static jnr.ffi.Pointer tquadbin_cell_to_quadkey(jnr.ffi.Pointer temp)
    • raquet_in

      public static jnr.ffi.Pointer raquet_in(String str)
    • raquet_out

      public static String raquet_out(jnr.ffi.Pointer rq)
    • raquet_from_wkb

      public static jnr.ffi.Pointer raquet_from_wkb(jnr.ffi.Pointer wkb, long size)
    • raquet_from_hexwkb

      public static jnr.ffi.Pointer raquet_from_hexwkb(String hexwkb)
    • raquet_as_wkb

      public static jnr.ffi.Pointer raquet_as_wkb(jnr.ffi.Pointer rq, byte variant)
    • raquet_as_hexwkb

      public static String raquet_as_hexwkb(jnr.ffi.Pointer rq, byte variant)
    • raquet_make

      public static jnr.ffi.Pointer raquet_make(long quadbin, short width, short height, int pixtype, double nodata, boolean has_nodata, jnr.ffi.Pointer pixels)
    • raquet_copy

      public static jnr.ffi.Pointer raquet_copy(jnr.ffi.Pointer rq)
    • raquet_read

      public static jnr.ffi.Pointer raquet_read(String path, long quadbin)
    • raquet_read_bytes

      public static jnr.ffi.Pointer raquet_read_bytes(jnr.ffi.Pointer data, long size, long quadbin)
    • raquet_quadbin

      public static long raquet_quadbin(jnr.ffi.Pointer rq)
    • raquet_width

      public static int raquet_width(jnr.ffi.Pointer rq)
    • raquet_height

      public static int raquet_height(jnr.ffi.Pointer rq)
    • raquet_nodata

      public static double raquet_nodata(jnr.ffi.Pointer rq)
    • raquet_cmp

      public static int raquet_cmp(jnr.ffi.Pointer rq1, jnr.ffi.Pointer rq2)
    • raquet_eq

      public static boolean raquet_eq(jnr.ffi.Pointer rq1, jnr.ffi.Pointer rq2)
    • raster_tile_value_quadbin

      public static jnr.ffi.Pointer raster_tile_value_quadbin(jnr.ffi.Pointer pixels, short width, short height, long quadbin, int pixtype, double nodata, boolean has_nodata, jnr.ffi.Pointer traj)
    • raster_tile_value

      public static jnr.ffi.Pointer raster_tile_value(jnr.ffi.Pointer rq, jnr.ffi.Pointer traj)
    • trajectory_quadbins

      public static jnr.ffi.Pointer trajectory_quadbins(jnr.ffi.Pointer traj, int zoom, jnr.ffi.Pointer count)
    • trgeometry_out

      public static String trgeometry_out(jnr.ffi.Pointer temp)
    • trgeometryinst_make

      public static jnr.ffi.Pointer trgeometryinst_make(jnr.ffi.Pointer geom, jnr.ffi.Pointer pose, OffsetDateTime t)
    • trgeometryseq_make

      public static jnr.ffi.Pointer trgeometryseq_make(jnr.ffi.Pointer geom, jnr.ffi.Pointer instants, int count, boolean lower_inc, boolean upper_inc, int interp, boolean normalize)
    • trgeometryseqset_make

      public static jnr.ffi.Pointer trgeometryseqset_make(jnr.ffi.Pointer geom, jnr.ffi.Pointer sequences, int count, boolean normalize)
    • trgeometryseqset_make_gaps

      public static jnr.ffi.Pointer trgeometryseqset_make_gaps(jnr.ffi.Pointer geom, jnr.ffi.Pointer instants, int count, int interp, jnr.ffi.Pointer maxt, double maxdist)
    • geo_tpose_to_trgeometry

      public static jnr.ffi.Pointer geo_tpose_to_trgeometry(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • trgeometry_to_tpose

      public static jnr.ffi.Pointer trgeometry_to_tpose(jnr.ffi.Pointer temp)
    • trgeometry_to_tpoint

      public static jnr.ffi.Pointer trgeometry_to_tpoint(jnr.ffi.Pointer temp)
    • trgeometry_to_tgeometry

      public static jnr.ffi.Pointer trgeometry_to_tgeometry(jnr.ffi.Pointer temp)
    • trgeometry_end_instant

      public static jnr.ffi.Pointer trgeometry_end_instant(jnr.ffi.Pointer temp)
    • trgeometry_end_sequence

      public static jnr.ffi.Pointer trgeometry_end_sequence(jnr.ffi.Pointer temp)
    • trgeometry_end_value

      public static jnr.ffi.Pointer trgeometry_end_value(jnr.ffi.Pointer temp)
    • trgeometry_geom

      public static jnr.ffi.Pointer trgeometry_geom(jnr.ffi.Pointer temp)
    • trgeometry_instant_n

      public static jnr.ffi.Pointer trgeometry_instant_n(jnr.ffi.Pointer temp, int n)
    • trgeometry_instants

      public static jnr.ffi.Pointer trgeometry_instants(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • trgeometry_points

      public static jnr.ffi.Pointer trgeometry_points(jnr.ffi.Pointer temp)
    • trgeometry_rotation

      public static jnr.ffi.Pointer trgeometry_rotation(jnr.ffi.Pointer temp)
    • trgeometry_segments

      public static jnr.ffi.Pointer trgeometry_segments(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • trgeometry_sequence_n

      public static jnr.ffi.Pointer trgeometry_sequence_n(jnr.ffi.Pointer temp, int i)
    • trgeometry_sequences

      public static jnr.ffi.Pointer trgeometry_sequences(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • trgeometry_start_instant

      public static jnr.ffi.Pointer trgeometry_start_instant(jnr.ffi.Pointer temp)
    • trgeometry_start_sequence

      public static jnr.ffi.Pointer trgeometry_start_sequence(jnr.ffi.Pointer temp)
    • trgeometry_start_value

      public static jnr.ffi.Pointer trgeometry_start_value(jnr.ffi.Pointer temp)
    • trgeometry_value_n

      public static jnr.ffi.Pointer trgeometry_value_n(jnr.ffi.Pointer temp, int n)
    • trgeometry_traversed_area

      public static jnr.ffi.Pointer trgeometry_traversed_area(jnr.ffi.Pointer temp, boolean unary_union)
    • trgeometry_centroid

      public static jnr.ffi.Pointer trgeometry_centroid(jnr.ffi.Pointer temp)
    • trgeometry_convex_hull

      public static jnr.ffi.Pointer trgeometry_convex_hull(jnr.ffi.Pointer temp)
    • trgeometry_body_point_trajectory

      public static jnr.ffi.Pointer trgeometry_body_point_trajectory(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • trgeometry_space_boxes

      public static jnr.ffi.Pointer trgeometry_space_boxes(jnr.ffi.Pointer temp, double xsize, double ysize, double zsize, jnr.ffi.Pointer sorigin, boolean bitmatrix, boolean border_inc, jnr.ffi.Pointer count)
    • trgeometry_space_time_boxes

      public static jnr.ffi.Pointer trgeometry_space_time_boxes(jnr.ffi.Pointer temp, double xsize, double ysize, double zsize, jnr.ffi.Pointer duration, jnr.ffi.Pointer sorigin, OffsetDateTime torigin, boolean bitmatrix, boolean border_inc, jnr.ffi.Pointer count)
    • trgeometry_stboxes

      public static jnr.ffi.Pointer trgeometry_stboxes(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • trgeometry_split_n_stboxes

      public static jnr.ffi.Pointer trgeometry_split_n_stboxes(jnr.ffi.Pointer temp, int box_count, jnr.ffi.Pointer count)
    • trgeometry_split_each_n_stboxes

      public static jnr.ffi.Pointer trgeometry_split_each_n_stboxes(jnr.ffi.Pointer temp, int elem_count, jnr.ffi.Pointer count)
    • trgeometry_hausdorff_distance

      public static double trgeometry_hausdorff_distance(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • trgeometry_frechet_distance

      public static double trgeometry_frechet_distance(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • trgeometry_dyntimewarp_distance

      public static double trgeometry_dyntimewarp_distance(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • trgeometry_frechet_path

      public static jnr.ffi.Pointer trgeometry_frechet_path(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, jnr.ffi.Pointer count)
    • trgeometry_dyntimewarp_path

      public static jnr.ffi.Pointer trgeometry_dyntimewarp_path(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, jnr.ffi.Pointer count)
    • trgeometry_length

      public static double trgeometry_length(jnr.ffi.Pointer temp)
    • trgeometry_cumulative_length

      public static jnr.ffi.Pointer trgeometry_cumulative_length(jnr.ffi.Pointer temp)
    • trgeometry_speed

      public static jnr.ffi.Pointer trgeometry_speed(jnr.ffi.Pointer temp)
    • trgeometry_twcentroid

      public static jnr.ffi.Pointer trgeometry_twcentroid(jnr.ffi.Pointer temp)
    • trgeometry_append_tinstant

      public static jnr.ffi.Pointer trgeometry_append_tinstant(jnr.ffi.Pointer temp, jnr.ffi.Pointer inst, int interp, double maxdist, jnr.ffi.Pointer maxt, boolean expand)
    • trgeometry_append_tsequence

      public static jnr.ffi.Pointer trgeometry_append_tsequence(jnr.ffi.Pointer temp, jnr.ffi.Pointer seq, boolean expand)
    • trgeometry_delete_timestamptz

      public static jnr.ffi.Pointer trgeometry_delete_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean connect)
    • trgeometry_delete_tstzset

      public static jnr.ffi.Pointer trgeometry_delete_tstzset(jnr.ffi.Pointer temp, jnr.ffi.Pointer s, boolean connect)
    • trgeometry_delete_tstzspan

      public static jnr.ffi.Pointer trgeometry_delete_tstzspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s, boolean connect)
    • trgeometry_delete_tstzspanset

      public static jnr.ffi.Pointer trgeometry_delete_tstzspanset(jnr.ffi.Pointer temp, jnr.ffi.Pointer ss, boolean connect)
    • trgeometry_round

      public static jnr.ffi.Pointer trgeometry_round(jnr.ffi.Pointer temp, int maxdd)
    • trgeometry_set_interp

      public static jnr.ffi.Pointer trgeometry_set_interp(jnr.ffi.Pointer temp, int interp)
    • trgeometry_as_tinstant

      public static jnr.ffi.Pointer trgeometry_as_tinstant(jnr.ffi.Pointer temp)
    • trgeometry_as_tsequence

      public static jnr.ffi.Pointer trgeometry_as_tsequence(jnr.ffi.Pointer temp, String interp_str)
    • trgeometry_as_tsequenceset

      public static jnr.ffi.Pointer trgeometry_as_tsequenceset(jnr.ffi.Pointer temp, String interp_str)
    • trgeometry_after_timestamptz

      public static jnr.ffi.Pointer trgeometry_after_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean strict)
    • trgeometry_before_timestamptz

      public static jnr.ffi.Pointer trgeometry_before_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean strict)
    • trgeometry_restrict_values

      public static jnr.ffi.Pointer trgeometry_restrict_values(jnr.ffi.Pointer temp, jnr.ffi.Pointer s, boolean atfunc)
    • trgeometry_restrict_timestamptz

      public static jnr.ffi.Pointer trgeometry_restrict_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean atfunc)
    • trgeometry_restrict_tstzset

      public static jnr.ffi.Pointer trgeometry_restrict_tstzset(jnr.ffi.Pointer temp, jnr.ffi.Pointer s, boolean atfunc)
    • trgeometry_restrict_tstzspan

      public static jnr.ffi.Pointer trgeometry_restrict_tstzspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s, boolean atfunc)
    • trgeometry_restrict_tstzspanset

      public static jnr.ffi.Pointer trgeometry_restrict_tstzspanset(jnr.ffi.Pointer temp, jnr.ffi.Pointer ss, boolean atfunc)
    • trgeometry_at_geom

      public static jnr.ffi.Pointer trgeometry_at_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • trgeometry_minus_geom

      public static jnr.ffi.Pointer trgeometry_minus_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • trgeometry_at_stbox

      public static jnr.ffi.Pointer trgeometry_at_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box, boolean border_inc)
    • trgeometry_minus_stbox

      public static jnr.ffi.Pointer trgeometry_minus_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box, boolean border_inc)
    • tdistance_trgeometry_geo

      public static jnr.ffi.Pointer tdistance_trgeometry_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tdistance_trgeometry_tpoint

      public static jnr.ffi.Pointer tdistance_trgeometry_tpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tdistance_trgeometry_trgeometry

      public static jnr.ffi.Pointer tdistance_trgeometry_trgeometry(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • nad_stbox_trgeometry

      public static double nad_stbox_trgeometry(jnr.ffi.Pointer box, jnr.ffi.Pointer temp)
    • nad_trgeometry_geo

      public static double nad_trgeometry_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • nad_trgeometry_stbox

      public static double nad_trgeometry_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • nad_trgeometry_tpoint

      public static double nad_trgeometry_tpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • nad_trgeometry_trgeometry

      public static double nad_trgeometry_trgeometry(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • nai_trgeometry_geo

      public static jnr.ffi.Pointer nai_trgeometry_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • nai_trgeometry_tpoint

      public static jnr.ffi.Pointer nai_trgeometry_tpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • nai_trgeometry_trgeometry

      public static jnr.ffi.Pointer nai_trgeometry_trgeometry(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • shortestline_trgeometry_geo

      public static jnr.ffi.Pointer shortestline_trgeometry_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • shortestline_trgeometry_tpoint

      public static jnr.ffi.Pointer shortestline_trgeometry_tpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • shortestline_trgeometry_trgeometry

      public static jnr.ffi.Pointer shortestline_trgeometry_trgeometry(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • always_eq_geo_trgeometry

      public static int always_eq_geo_trgeometry(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • always_eq_trgeometry_geo

      public static int always_eq_trgeometry_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • always_eq_trgeometry_trgeometry

      public static int always_eq_trgeometry_trgeometry(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • always_ne_geo_trgeometry

      public static int always_ne_geo_trgeometry(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • always_ne_trgeometry_geo

      public static int always_ne_trgeometry_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • always_ne_trgeometry_trgeometry

      public static int always_ne_trgeometry_trgeometry(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ever_eq_geo_trgeometry

      public static int ever_eq_geo_trgeometry(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • ever_eq_trgeometry_geo

      public static int ever_eq_trgeometry_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • ever_eq_trgeometry_trgeometry

      public static int ever_eq_trgeometry_trgeometry(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ever_ne_geo_trgeometry

      public static int ever_ne_geo_trgeometry(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • ever_ne_trgeometry_geo

      public static int ever_ne_trgeometry_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • ever_ne_trgeometry_trgeometry

      public static int ever_ne_trgeometry_trgeometry(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • teq_geo_trgeometry

      public static jnr.ffi.Pointer teq_geo_trgeometry(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • teq_trgeometry_geo

      public static jnr.ffi.Pointer teq_trgeometry_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • tne_geo_trgeometry

      public static jnr.ffi.Pointer tne_geo_trgeometry(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • tne_trgeometry_geo

      public static jnr.ffi.Pointer tne_trgeometry_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • econtains_geo_trgeometry

      public static int econtains_geo_trgeometry(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • acontains_geo_trgeometry

      public static int acontains_geo_trgeometry(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • ecovers_geo_trgeometry

      public static int ecovers_geo_trgeometry(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • acovers_geo_trgeometry

      public static int acovers_geo_trgeometry(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp)
    • ecovers_trgeometry_geo

      public static int ecovers_trgeometry_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • acovers_trgeometry_geo

      public static int acovers_trgeometry_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • edisjoint_trgeometry_geo

      public static int edisjoint_trgeometry_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • adisjoint_trgeometry_geo

      public static int adisjoint_trgeometry_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • eintersects_trgeometry_geo

      public static int eintersects_trgeometry_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • aintersects_trgeometry_geo

      public static int aintersects_trgeometry_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • etouches_trgeometry_geo

      public static int etouches_trgeometry_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • atouches_trgeometry_geo

      public static int atouches_trgeometry_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • edwithin_trgeometry_geo

      public static int edwithin_trgeometry_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, double dist)
    • adwithin_trgeometry_geo

      public static int adwithin_trgeometry_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, double dist)
    • edisjoint_trgeometry_trgeometry

      public static int edisjoint_trgeometry_trgeometry(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • adisjoint_trgeometry_trgeometry

      public static int adisjoint_trgeometry_trgeometry(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • eintersects_trgeometry_trgeometry

      public static int eintersects_trgeometry_trgeometry(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • aintersects_trgeometry_trgeometry

      public static int aintersects_trgeometry_trgeometry(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • edwithin_trgeometry_trgeometry

      public static int edwithin_trgeometry_trgeometry(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, double dist)
    • adwithin_trgeometry_trgeometry

      public static int adwithin_trgeometry_trgeometry(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, double dist)
    • ensure_valid_tnpoint_npoint

      public static boolean ensure_valid_tnpoint_npoint(jnr.ffi.Pointer temp, jnr.ffi.Pointer np)
    • ensure_valid_tnpoint_npointset

      public static boolean ensure_valid_tnpoint_npointset(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • ensure_valid_tnpoint_geo

      public static boolean ensure_valid_tnpoint_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • ensure_valid_tnpoint_stbox

      public static boolean ensure_valid_tnpoint_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • ensure_valid_tnpoint_tnpoint

      public static boolean ensure_valid_tnpoint_tnpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tnpointsegm_intersection

      public static int tnpointsegm_intersection(jnr.ffi.Pointer start1, jnr.ffi.Pointer end1, jnr.ffi.Pointer start2, jnr.ffi.Pointer end2, OffsetDateTime lower, OffsetDateTime upper, jnr.ffi.Pointer t1, jnr.ffi.Pointer t2)
    • common_rid_tnpoint_npoint

      public static boolean common_rid_tnpoint_npoint(jnr.ffi.Pointer temp, jnr.ffi.Pointer np)
    • common_rid_tnpoint_npointset

      public static boolean common_rid_tnpoint_npointset(jnr.ffi.Pointer temp, jnr.ffi.Pointer s)
    • common_rid_tnpoint_tnpoint

      public static boolean common_rid_tnpoint_tnpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • npoint_collinear

      public static boolean npoint_collinear(jnr.ffi.Pointer np1, jnr.ffi.Pointer np2, jnr.ffi.Pointer np3, double ratio)
    • npointsegm_interpolate

      public static jnr.ffi.Pointer npointsegm_interpolate(jnr.ffi.Pointer start, jnr.ffi.Pointer end, jnr.ffi.Pointer ratio)
    • npointsegm_locate

      public static jnr.ffi.Pointer npointsegm_locate(jnr.ffi.Pointer start, jnr.ffi.Pointer end, jnr.ffi.Pointer value)
    • npointarr_geom

      public static jnr.ffi.Pointer npointarr_geom(jnr.ffi.Pointer points, int count)
    • nsegmentarr_geom

      public static jnr.ffi.Pointer nsegmentarr_geom(jnr.ffi.Pointer segments, int count)
    • nsegmentarr_normalize

      public static jnr.ffi.Pointer nsegmentarr_normalize(jnr.ffi.Pointer segments, jnr.ffi.Pointer count)
    • npoint_wkt_out

      public static String npoint_wkt_out(jnr.ffi.Pointer value, int maxdd)
    • npoint_set

      public static void npoint_set(long rid, double pos, jnr.ffi.Pointer np)
    • nsegment_set

      public static void nsegment_set(long rid, double pos1, double pos2, jnr.ffi.Pointer ns)
    • datum_npoint_round

      public static jnr.ffi.Pointer datum_npoint_round(jnr.ffi.Pointer npoint, jnr.ffi.Pointer size)
    • tnpointinst_tgeompointinst

      public static jnr.ffi.Pointer tnpointinst_tgeompointinst(jnr.ffi.Pointer inst)
    • tnpointseq_tgeompointseq_disc

      public static jnr.ffi.Pointer tnpointseq_tgeompointseq_disc(jnr.ffi.Pointer is)
    • tnpointseq_tgeompointseq_cont

      public static jnr.ffi.Pointer tnpointseq_tgeompointseq_cont(jnr.ffi.Pointer seq)
    • tnpointseqset_tgeompointseqset

      public static jnr.ffi.Pointer tnpointseqset_tgeompointseqset(jnr.ffi.Pointer ss)
    • tgeompointinst_tnpointinst

      public static jnr.ffi.Pointer tgeompointinst_tnpointinst(jnr.ffi.Pointer inst)
    • tgeompointseq_tnpointseq

      public static jnr.ffi.Pointer tgeompointseq_tnpointseq(jnr.ffi.Pointer seq)
    • tgeompointseqset_tnpointseqset

      public static jnr.ffi.Pointer tgeompointseqset_tnpointseqset(jnr.ffi.Pointer ss)
    • tnpointinst_positions

      public static jnr.ffi.Pointer tnpointinst_positions(jnr.ffi.Pointer inst)
    • tnpointseq_positions

      public static jnr.ffi.Pointer tnpointseq_positions(jnr.ffi.Pointer seq, jnr.ffi.Pointer count)
    • tnpointseqset_positions

      public static jnr.ffi.Pointer tnpointseqset_positions(jnr.ffi.Pointer ss, jnr.ffi.Pointer count)
    • tnpointinst_route

      public static long tnpointinst_route(jnr.ffi.Pointer inst)
    • tnpointinst_routes

      public static jnr.ffi.Pointer tnpointinst_routes(jnr.ffi.Pointer inst)
    • tnpointseq_disc_routes

      public static jnr.ffi.Pointer tnpointseq_disc_routes(jnr.ffi.Pointer is)
    • tnpointseq_cont_routes

      public static jnr.ffi.Pointer tnpointseq_cont_routes(jnr.ffi.Pointer seq)
    • tnpointseqset_routes

      public static jnr.ffi.Pointer tnpointseqset_routes(jnr.ffi.Pointer ss)
    • tnpointseq_linear_positions

      public static jnr.ffi.Pointer tnpointseq_linear_positions(jnr.ffi.Pointer seq)
    • tnpoint_restrict_stbox

      public static jnr.ffi.Pointer tnpoint_restrict_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box, boolean border_inc, boolean atfunc)
    • tnpoint_restrict_npoint

      public static jnr.ffi.Pointer tnpoint_restrict_npoint(jnr.ffi.Pointer temp, jnr.ffi.Pointer np, boolean atfunc)
    • tnpoint_restrict_npointset

      public static jnr.ffi.Pointer tnpoint_restrict_npointset(jnr.ffi.Pointer temp, jnr.ffi.Pointer s, boolean atfunc)
    • npoint_set_stbox

      public static jnr.ffi.Pointer npoint_set_stbox(jnr.ffi.Pointer np)
    • npointarr_set_stbox

      public static void npointarr_set_stbox(jnr.ffi.Pointer values, int count, jnr.ffi.Pointer box)
    • nsegment_set_stbox

      public static jnr.ffi.Pointer nsegment_set_stbox(jnr.ffi.Pointer ns)
    • npoint_timestamptz_set_stbox

      public static jnr.ffi.Pointer npoint_timestamptz_set_stbox(jnr.ffi.Pointer np, OffsetDateTime t)
    • npoint_tstzspan_set_stbox

      public static jnr.ffi.Pointer npoint_tstzspan_set_stbox(jnr.ffi.Pointer np, jnr.ffi.Pointer s)
    • tnpointinst_set_stbox

      public static void tnpointinst_set_stbox(jnr.ffi.Pointer inst, jnr.ffi.Pointer box)
    • tnpointinstarr_set_stbox

      public static void tnpointinstarr_set_stbox(jnr.ffi.Pointer inst, int count, int interp, jnr.ffi.Pointer box)
    • tnpointseq_expand_stbox

      public static void tnpointseq_expand_stbox(jnr.ffi.Pointer seq, jnr.ffi.Pointer inst)
    • datum_npoint_distance

      public static jnr.ffi.Pointer datum_npoint_distance(jnr.ffi.Pointer np1, jnr.ffi.Pointer np2)
    • npoint_parse

      public static jnr.ffi.Pointer npoint_parse(jnr.ffi.Pointer str, boolean end)
    • nsegment_parse

      public static jnr.ffi.Pointer nsegment_parse(jnr.ffi.Pointer str)
    • contains_rid_tnpoint_bigint

      public static boolean contains_rid_tnpoint_bigint(jnr.ffi.Pointer temp, long rid, boolean invert)
    • contained_rid_tnpoint_bigint

      public static boolean contained_rid_tnpoint_bigint(jnr.ffi.Pointer temp, long rid, boolean invert)
    • same_rid_tnpoint_bigint

      public static boolean same_rid_tnpoint_bigint(jnr.ffi.Pointer temp, long rid, boolean invert)
    • overlaps_rid_tnpoint_bigintset

      public static boolean overlaps_rid_tnpoint_bigintset(jnr.ffi.Pointer temp, jnr.ffi.Pointer s, boolean invert)
    • contains_rid_tnpoint_bigintset

      public static boolean contains_rid_tnpoint_bigintset(jnr.ffi.Pointer temp, jnr.ffi.Pointer s, boolean invert)
    • contained_rid_tnpoint_bigintset

      public static boolean contained_rid_tnpoint_bigintset(jnr.ffi.Pointer temp, jnr.ffi.Pointer s, boolean invert)
    • same_rid_tnpoint_bigintset

      public static boolean same_rid_tnpoint_bigintset(jnr.ffi.Pointer temp, jnr.ffi.Pointer s, boolean invert)
    • contains_rid_tnpoint_npoint

      public static boolean contains_rid_tnpoint_npoint(jnr.ffi.Pointer temp, jnr.ffi.Pointer np, boolean invert)
    • contained_rid_npoint_tnpoint

      public static boolean contained_rid_npoint_tnpoint(jnr.ffi.Pointer temp, jnr.ffi.Pointer np, boolean invert)
    • same_rid_tnpoint_npoint

      public static boolean same_rid_tnpoint_npoint(jnr.ffi.Pointer temp, jnr.ffi.Pointer np, boolean invert)
    • overlaps_rid_tnpoint_tnpoint

      public static boolean overlaps_rid_tnpoint_tnpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • contains_rid_tnpoint_tnpoint

      public static boolean contains_rid_tnpoint_tnpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • contained_rid_tnpoint_tnpoint

      public static boolean contained_rid_tnpoint_tnpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • same_rid_tnpoint_tnpoint

      public static boolean same_rid_tnpoint_tnpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ensure_same_rid_tnpointinst

      public static boolean ensure_same_rid_tnpointinst(jnr.ffi.Pointer inst1, jnr.ffi.Pointer inst2)
    • tnpoint_restrict_geom

      public static jnr.ffi.Pointer tnpoint_restrict_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean atfunc)
    • meos_pc_schema_get_srid

      public static int meos_pc_schema_get_srid(int pcid)
    • ensure_same_pcid_pcpatch

      public static boolean ensure_same_pcid_pcpatch(jnr.ffi.Pointer pa1, jnr.ffi.Pointer pa2)
    • ensure_valid_pcpatchset_pcpatch

      public static boolean ensure_valid_pcpatchset_pcpatch(jnr.ffi.Pointer s, jnr.ffi.Pointer pa)
    • pcpatch_parse

      public static jnr.ffi.Pointer pcpatch_parse(jnr.ffi.Pointer str, boolean end)
    • pcpatch_filter_per_point

      public static jnr.ffi.Pointer pcpatch_filter_per_point(jnr.ffi.Pointer pa, jnr.ffi.Pointer pred, jnr.ffi.Pointer extra, boolean keep_when_true)
    • pcpatch_any_point_matches

      public static boolean pcpatch_any_point_matches(jnr.ffi.Pointer pa, jnr.ffi.Pointer pred, jnr.ffi.Pointer extra)
    • pcpoint_in_tpcbox

      public static boolean pcpoint_in_tpcbox(jnr.ffi.Pointer pt, jnr.ffi.Pointer extra)
    • pcpoint_intersects_geometry

      public static boolean pcpoint_intersects_geometry(jnr.ffi.Pointer pt, jnr.ffi.Pointer extra)
    • ensure_same_pcid_pcpoint

      public static boolean ensure_same_pcid_pcpoint(jnr.ffi.Pointer pt1, jnr.ffi.Pointer pt2)
    • ensure_valid_pcpointset_pcpoint

      public static boolean ensure_valid_pcpointset_pcpoint(jnr.ffi.Pointer s, jnr.ffi.Pointer pt)
    • pcpoint_parse

      public static jnr.ffi.Pointer pcpoint_parse(jnr.ffi.Pointer str, boolean end)
    • meos_pc_point_serialize

      public static jnr.ffi.Pointer meos_pc_point_serialize(jnr.ffi.Pointer pcpt)
    • meos_pc_point_deserialize

      public static jnr.ffi.Pointer meos_pc_point_deserialize(jnr.ffi.Pointer serpt, jnr.ffi.Pointer schema)
    • meos_pc_patch_serialized_size

      public static long meos_pc_patch_serialized_size(jnr.ffi.Pointer patch)
    • meos_pc_patch_serialize

      public static jnr.ffi.Pointer meos_pc_patch_serialize(jnr.ffi.Pointer patch_in, jnr.ffi.Pointer userdata)
    • meos_pc_patch_serialize_to_uncompressed

      public static jnr.ffi.Pointer meos_pc_patch_serialize_to_uncompressed(jnr.ffi.Pointer patch_in)
    • meos_pc_patch_deserialize

      public static jnr.ffi.Pointer meos_pc_patch_deserialize(jnr.ffi.Pointer serpatch, jnr.ffi.Pointer schema)
    • tpointcloudinst_set_tpcbox

      public static void tpointcloudinst_set_tpcbox(jnr.ffi.Pointer inst, jnr.ffi.Pointer box)
    • tpointcloudinstarr_set_tpcbox

      public static void tpointcloudinstarr_set_tpcbox(jnr.ffi.Pointer instants, int count, boolean lower_inc, boolean upper_inc, int interp, jnr.ffi.Pointer box)
    • tpointcloudseq_expand_tpcbox

      public static void tpointcloudseq_expand_tpcbox(jnr.ffi.Pointer seq, jnr.ffi.Pointer inst)
    • tpointcloudseqarr_set_tpcbox

      public static void tpointcloudseqarr_set_tpcbox(jnr.ffi.Pointer sequences, int count, jnr.ffi.Pointer box)
    • tpcbox_extent_transfn

      public static jnr.ffi.Pointer tpcbox_extent_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp)
    • boxop_tpointcloud_tpcbox

      public static boolean boxop_tpointcloud_tpcbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box, jnr.ffi.Pointer func, boolean inverted)
    • boxop_tpointcloud_tpointcloud

      public static boolean boxop_tpointcloud_tpointcloud(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, jnr.ffi.Pointer func)
    • tpcbox_set_stbox

      public static void tpcbox_set_stbox(jnr.ffi.Pointer src, jnr.ffi.Pointer dst)
    • nad_tpcbox_tpcbox

      public static double nad_tpcbox_tpcbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • nad_tpointcloud_tpcbox

      public static double nad_tpointcloud_tpcbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • nad_tpointcloud_tpointcloud

      public static double nad_tpointcloud_tpointcloud(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tpcbox_parse

      public static jnr.ffi.Pointer tpcbox_parse(jnr.ffi.Pointer str)
    • tpcbox_index_leaf_consistent

      public static boolean tpcbox_index_leaf_consistent(jnr.ffi.Pointer key, jnr.ffi.Pointer query, jnr.ffi.Pointer strategy)
    • tpcbox_gist_inner_consistent

      public static boolean tpcbox_gist_inner_consistent(jnr.ffi.Pointer key, jnr.ffi.Pointer query, jnr.ffi.Pointer strategy)
    • tpcbox_index_recheck

      public static boolean tpcbox_index_recheck(jnr.ffi.Pointer strategy)
    • ensure_valid_pose_geo

      public static boolean ensure_valid_pose_geo(jnr.ffi.Pointer pose, jnr.ffi.Pointer gs)
    • ensure_valid_pose_stbox

      public static boolean ensure_valid_pose_stbox(jnr.ffi.Pointer pose, jnr.ffi.Pointer box)
    • ensure_valid_pose_pose

      public static boolean ensure_valid_pose_pose(jnr.ffi.Pointer pose1, jnr.ffi.Pointer pose2)
    • ensure_valid_poseset_pose

      public static boolean ensure_valid_poseset_pose(jnr.ffi.Pointer s, jnr.ffi.Pointer pose)
    • pose_collinear

      public static boolean pose_collinear(jnr.ffi.Pointer pose1, jnr.ffi.Pointer pose2, jnr.ffi.Pointer pose3, double ratio)
    • posesegm_interpolate

      public static jnr.ffi.Pointer posesegm_interpolate(jnr.ffi.Pointer start, jnr.ffi.Pointer end, double ratio)
    • posesegm_locate

      public static jnr.ffi.Pointer posesegm_locate(jnr.ffi.Pointer start, jnr.ffi.Pointer end, jnr.ffi.Pointer value)
    • pose_wkt_out

      public static String pose_wkt_out(jnr.ffi.Pointer pose, boolean extended, int maxdd)
    • pose_parse

      public static jnr.ffi.Pointer pose_parse(jnr.ffi.Pointer str, boolean end)
    • datum_pose_point

      public static jnr.ffi.Pointer datum_pose_point(jnr.ffi.Pointer pose)
    • datum_pose_geopoint

      public static jnr.ffi.Pointer datum_pose_geopoint(jnr.ffi.Pointer pose)
    • datum_pose_rotation

      public static jnr.ffi.Pointer datum_pose_rotation(jnr.ffi.Pointer pose)
    • datum_pose_yaw

      public static jnr.ffi.Pointer datum_pose_yaw(jnr.ffi.Pointer pose)
    • datum_pose_pitch

      public static jnr.ffi.Pointer datum_pose_pitch(jnr.ffi.Pointer pose)
    • datum_pose_roll

      public static jnr.ffi.Pointer datum_pose_roll(jnr.ffi.Pointer pose)
    • datum_pose_apply_geo

      public static jnr.ffi.Pointer datum_pose_apply_geo(jnr.ffi.Pointer pose, jnr.ffi.Pointer body)
    • datum_pose_round

      public static jnr.ffi.Pointer datum_pose_round(jnr.ffi.Pointer pose, jnr.ffi.Pointer size)
    • pose_distance

      public static jnr.ffi.Pointer pose_distance(jnr.ffi.Pointer pose1, jnr.ffi.Pointer pose2)
    • pose_set_stbox

      public static jnr.ffi.Pointer pose_set_stbox(jnr.ffi.Pointer pose)
    • posearr_set_stbox

      public static void posearr_set_stbox(jnr.ffi.Pointer values, int count, jnr.ffi.Pointer box)
    • pose_timestamptz_set_stbox

      public static jnr.ffi.Pointer pose_timestamptz_set_stbox(jnr.ffi.Pointer pose, OffsetDateTime t)
    • pose_tstzspan_set_stbox

      public static jnr.ffi.Pointer pose_tstzspan_set_stbox(jnr.ffi.Pointer pose, jnr.ffi.Pointer p)
    • ensure_valid_tpose_geo

      public static boolean ensure_valid_tpose_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • ensure_valid_tpose_pose

      public static boolean ensure_valid_tpose_pose(jnr.ffi.Pointer temp, jnr.ffi.Pointer pose)
    • ensure_valid_tpose_stbox

      public static boolean ensure_valid_tpose_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • ensure_valid_tpose_tpose

      public static boolean ensure_valid_tpose_tpose(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • tposesegm_intersection_value

      public static int tposesegm_intersection_value(jnr.ffi.Pointer start, jnr.ffi.Pointer end, jnr.ffi.Pointer value, OffsetDateTime lower, OffsetDateTime upper, jnr.ffi.Pointer t1, jnr.ffi.Pointer t2)
    • tposesegm_intersection

      public static int tposesegm_intersection(jnr.ffi.Pointer start1, jnr.ffi.Pointer end1, jnr.ffi.Pointer start2, jnr.ffi.Pointer end2, OffsetDateTime lower, OffsetDateTime upper, jnr.ffi.Pointer t1, jnr.ffi.Pointer t2)
    • tposeinst_set_stbox

      public static void tposeinst_set_stbox(jnr.ffi.Pointer inst, jnr.ffi.Pointer box)
    • tposeinstarr_set_stbox

      public static void tposeinstarr_set_stbox(jnr.ffi.Pointer instants, int count, jnr.ffi.Pointer box)
    • tposeseq_expand_stbox

      public static void tposeseq_expand_stbox(jnr.ffi.Pointer seq, jnr.ffi.Pointer inst)
    • tpose_restrict_geom

      public static jnr.ffi.Pointer tpose_restrict_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean atfunc)
    • tpose_restrict_stbox

      public static jnr.ffi.Pointer tpose_restrict_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box, boolean border_inc, boolean atfunc)
    • tpose_restrict_elevation

      public static jnr.ffi.Pointer tpose_restrict_elevation(jnr.ffi.Pointer temp, jnr.ffi.Pointer s, boolean atfunc)
    • ensure_valid_tquadbin_tquadbin

      public static boolean ensure_valid_tquadbin_tquadbin(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ensure_valid_tquadbin_quadbin

      public static boolean ensure_valid_tquadbin_quadbin(jnr.ffi.Pointer temp, long cell)
    • ensure_valid_tquadbin_tgeompoint

      public static boolean ensure_valid_tquadbin_tgeompoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • datum2_quadbin_eq

      public static jnr.ffi.Pointer datum2_quadbin_eq(jnr.ffi.Pointer d1, jnr.ffi.Pointer d2, int type)
    • datum2_quadbin_ne

      public static jnr.ffi.Pointer datum2_quadbin_ne(jnr.ffi.Pointer d1, jnr.ffi.Pointer d2, int type)
    • quadbin_set_stbox

      public static jnr.ffi.Pointer quadbin_set_stbox(long cell)
    • quadbinarr_set_stbox

      public static void quadbinarr_set_stbox(jnr.ffi.Pointer values, int count, jnr.ffi.Pointer box)
    • tquadbininst_set_stbox

      public static void tquadbininst_set_stbox(jnr.ffi.Pointer inst, jnr.ffi.Pointer box)
    • tquadbininstarr_set_stbox

      public static void tquadbininstarr_set_stbox(jnr.ffi.Pointer instants, int count, jnr.ffi.Pointer box)
    • tquadbinseq_expand_stbox

      public static void tquadbinseq_expand_stbox(jnr.ffi.Pointer seq, jnr.ffi.Pointer inst)
    • raquet_pixtype_size

      public static long raquet_pixtype_size(int pixtype)
    • raquet_pixels_size

      public static long raquet_pixels_size(jnr.ffi.Pointer rq)
    • raster_quadbin_from_bounds

      public static jnr.ffi.Pointer raster_quadbin_from_bounds(double origin_x, double origin_y, double pixel_w, double pixel_h, int xsize, int ysize)
    • ensure_has_geom

      public static boolean ensure_has_geom(short flags)
    • ensure_valid_trgeo_geo

      public static boolean ensure_valid_trgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs)
    • ensure_valid_trgeo_stbox

      public static boolean ensure_valid_trgeo_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box)
    • ensure_valid_trgeo_trgeo

      public static boolean ensure_valid_trgeo_trgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • ensure_valid_trgeo_tpoint

      public static boolean ensure_valid_trgeo_tpoint(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2)
    • trgeo_geom_p

      public static jnr.ffi.Pointer trgeo_geom_p(jnr.ffi.Pointer temp)
    • trgeo_wkt_out

      public static String trgeo_wkt_out(jnr.ffi.Pointer temp, int maxdd, boolean extended)
    • geo_tposeinst_to_trgeo

      public static jnr.ffi.Pointer geo_tposeinst_to_trgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer inst)
    • geo_tposeseq_to_trgeo

      public static jnr.ffi.Pointer geo_tposeseq_to_trgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer seq)
    • geo_tposeseqset_to_trgeo

      public static jnr.ffi.Pointer geo_tposeseqset_to_trgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer ss)
    • trgeo_value_at_timestamptz

      public static boolean trgeo_value_at_timestamptz(jnr.ffi.Pointer temp, OffsetDateTime t, boolean strict, jnr.ffi.Pointer result)
    • trgeometry_restrict_value

      public static jnr.ffi.Pointer trgeometry_restrict_value(jnr.ffi.Pointer temp, jnr.ffi.Pointer value, boolean atfunc)
    • trgeoinst_geom_p

      public static jnr.ffi.Pointer trgeoinst_geom_p(jnr.ffi.Pointer inst)
    • trgeoinst_pose_varsize

      public static long trgeoinst_pose_varsize(jnr.ffi.Pointer inst)
    • trgeoinst_set_pose

      public static void trgeoinst_set_pose(jnr.ffi.Pointer inst)
    • trgeoinst_tposeinst

      public static jnr.ffi.Pointer trgeoinst_tposeinst(jnr.ffi.Pointer inst)
    • trgeoinst_make1

      public static jnr.ffi.Pointer trgeoinst_make1(jnr.ffi.Pointer geom, jnr.ffi.Pointer pose, OffsetDateTime t)
    • trgeoseq_as_tinstant

      public static jnr.ffi.Pointer trgeoseq_as_tinstant(jnr.ffi.Pointer seq)
    • trgeoseqset_as_tinstant

      public static jnr.ffi.Pointer trgeoseqset_as_tinstant(jnr.ffi.Pointer ts)
    • trgeo_restrict_geom

      public static jnr.ffi.Pointer trgeo_restrict_geom(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean atfunc)
    • trgeo_restrict_stbox

      public static jnr.ffi.Pointer trgeo_restrict_stbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box, boolean border_inc, boolean atfunc)
    • spatialrel_trgeo_trav_geo

      public static int spatialrel_trgeo_trav_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, jnr.ffi.Pointer param, jnr.ffi.Pointer func, int numparam, boolean invert)
    • ea_contains_geo_trgeo

      public static int ea_contains_geo_trgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp, boolean ever)
    • ea_contains_trgeo_geo

      public static int ea_contains_trgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean ever)
    • ea_contains_trgeo_trgeo

      public static int ea_contains_trgeo_trgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, boolean ever)
    • ea_covers_geo_trgeo

      public static int ea_covers_geo_trgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp, boolean ever)
    • ea_covers_trgeo_geo

      public static int ea_covers_trgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean ever)
    • ea_covers_trgeo_trgeo

      public static int ea_covers_trgeo_trgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, boolean ever)
    • ea_disjoint_geo_trgeo

      public static int ea_disjoint_geo_trgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp, boolean ever)
    • ea_disjoint_trgeo_geo

      public static int ea_disjoint_trgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean ever)
    • ea_disjoint_trgeo_trgeo

      public static int ea_disjoint_trgeo_trgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, boolean ever)
    • ea_intersects_geo_trgeo

      public static int ea_intersects_geo_trgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp, boolean ever)
    • ea_intersects_trgeo_geo

      public static int ea_intersects_trgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean ever)
    • ea_intersects_trgeo_trgeo

      public static int ea_intersects_trgeo_trgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, boolean ever)
    • ea_touches_geo_trgeo

      public static int ea_touches_geo_trgeo(jnr.ffi.Pointer gs, jnr.ffi.Pointer temp, boolean ever)
    • ea_touches_trgeo_geo

      public static int ea_touches_trgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, boolean ever)
    • ea_touches_trgeo_trgeo

      public static int ea_touches_trgeo_trgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, boolean ever)
    • ea_dwithin_trgeo_geo

      public static int ea_dwithin_trgeo_geo(jnr.ffi.Pointer temp, jnr.ffi.Pointer gs, double dist, boolean ever)
    • ea_dwithin_trgeo_trgeo

      public static int ea_dwithin_trgeo_trgeo(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, double dist, boolean ever)
    • trgeoseq_geom_p

      public static jnr.ffi.Pointer trgeoseq_geom_p(jnr.ffi.Pointer seq)
    • trgeoseq_pose_varsize

      public static long trgeoseq_pose_varsize(jnr.ffi.Pointer seq)
    • trgeoseq_set_pose

      public static void trgeoseq_set_pose(jnr.ffi.Pointer seq)
    • trgeoseq_tposeseq

      public static jnr.ffi.Pointer trgeoseq_tposeseq(jnr.ffi.Pointer seq)
    • trgeoseq_make_valid

      public static boolean trgeoseq_make_valid(jnr.ffi.Pointer geom, jnr.ffi.Pointer instants, int count, boolean lower_inc, boolean upper_inc, boolean linear)
    • trgeoseq_make1_exp

      public static jnr.ffi.Pointer trgeoseq_make1_exp(jnr.ffi.Pointer geom, jnr.ffi.Pointer instants, int count, int maxcount, boolean lower_inc, boolean upper_inc, int interp, boolean normalize)
    • trgeoseq_make1

      public static jnr.ffi.Pointer trgeoseq_make1(jnr.ffi.Pointer geom, jnr.ffi.Pointer instants, int count, boolean lower_inc, boolean upper_inc, int interp, boolean normalize)
    • trgeoseq_make_exp

      public static jnr.ffi.Pointer trgeoseq_make_exp(jnr.ffi.Pointer geom, jnr.ffi.Pointer instants, int count, int maxcount, boolean lower_inc, boolean upper_inc, int interp, boolean normalize)
    • trgeoseq_make_free_exp

      public static jnr.ffi.Pointer trgeoseq_make_free_exp(jnr.ffi.Pointer geom, jnr.ffi.Pointer instants, int count, int maxcount, boolean lower_inc, boolean upper_inc, int interp, boolean normalize)
    • trgeoseq_make_free

      public static jnr.ffi.Pointer trgeoseq_make_free(jnr.ffi.Pointer geom, jnr.ffi.Pointer instants, int count, boolean lower_inc, boolean upper_inc, int interp, boolean normalize)
    • trgeoinst_as_tsequence

      public static jnr.ffi.Pointer trgeoinst_as_tsequence(jnr.ffi.Pointer inst, int interp)
    • trgeoseqset_geom_p

      public static jnr.ffi.Pointer trgeoseqset_geom_p(jnr.ffi.Pointer ts)
    • trgeoseqset_tposeseqset

      public static jnr.ffi.Pointer trgeoseqset_tposeseqset(jnr.ffi.Pointer ss)
    • trgeoseqset_make1_exp

      public static jnr.ffi.Pointer trgeoseqset_make1_exp(jnr.ffi.Pointer geom, jnr.ffi.Pointer sequences, int count, int maxcount, boolean normalize)
    • trgeoseqset_make_exp

      public static jnr.ffi.Pointer trgeoseqset_make_exp(jnr.ffi.Pointer geom, jnr.ffi.Pointer sequences, int count, int maxcount, boolean normalize)
    • trgeoseqset_make_free

      public static jnr.ffi.Pointer trgeoseqset_make_free(jnr.ffi.Pointer geom, jnr.ffi.Pointer sequences, int count, boolean normalize)
    • trgeoseqset_as_tsequence

      public static jnr.ffi.Pointer trgeoseqset_as_tsequence(jnr.ffi.Pointer ss)
    • trgeoinst_set_stbox

      public static void trgeoinst_set_stbox(jnr.ffi.Pointer geom, jnr.ffi.Pointer inst, jnr.ffi.Pointer box)
    • trgeoinstarr_static_stbox

      public static void trgeoinstarr_static_stbox(jnr.ffi.Pointer geom, jnr.ffi.Pointer instants, int count, jnr.ffi.Pointer box)
    • trgeoinstarr_rotating_stbox

      public static void trgeoinstarr_rotating_stbox(jnr.ffi.Pointer geom, jnr.ffi.Pointer instants, int count, jnr.ffi.Pointer box)
    • trgeoinstarr_compute_bbox

      public static void trgeoinstarr_compute_bbox(jnr.ffi.Pointer geom, jnr.ffi.Pointer instants, int count, int interp, jnr.ffi.Pointer box)
    • ensure_span_isof_type

      public static boolean ensure_span_isof_type(jnr.ffi.Pointer s, int spantype)
    • ensure_span_isof_basetype

      public static boolean ensure_span_isof_basetype(jnr.ffi.Pointer s, int basetype)
    • ensure_same_span_type

      public static boolean ensure_same_span_type(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • ensure_valid_span_span

      public static boolean ensure_valid_span_span(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • span_deserialize

      public static void span_deserialize(jnr.ffi.Pointer s, jnr.ffi.Pointer lower, jnr.ffi.Pointer upper)
    • span_bound_cmp

      public static int span_bound_cmp(jnr.ffi.Pointer b1, jnr.ffi.Pointer b2)
    • span_bound_qsort_cmp

      public static int span_bound_qsort_cmp(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • span_lower_cmp

      public static int span_lower_cmp(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • span_upper_cmp

      public static int span_upper_cmp(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • span_decr_bound

      public static jnr.ffi.Pointer span_decr_bound(jnr.ffi.Pointer upper, int basetype)
    • span_incr_bound

      public static jnr.ffi.Pointer span_incr_bound(jnr.ffi.Pointer upper, int basetype)
    • spanarr_normalize

      public static jnr.ffi.Pointer spanarr_normalize(jnr.ffi.Pointer spans, int count, boolean sort, jnr.ffi.Pointer newcount)
    • span_bounds_shift_scale_value

      public static void span_bounds_shift_scale_value(jnr.ffi.Pointer shift, jnr.ffi.Pointer width, int type, boolean hasshift, boolean haswidth, jnr.ffi.Pointer lower, jnr.ffi.Pointer upper)
    • span_bounds_shift_scale_time

      public static void span_bounds_shift_scale_time(jnr.ffi.Pointer shift, jnr.ffi.Pointer duration, jnr.ffi.Pointer lower, jnr.ffi.Pointer upper)
    • floatspan_floor_ceil_iter

      public static void floatspan_floor_ceil_iter(jnr.ffi.Pointer s, jnr.ffi.Pointer func)
    • numspan_delta_scale_iter

      public static void numspan_delta_scale_iter(jnr.ffi.Pointer s, jnr.ffi.Pointer origin, jnr.ffi.Pointer delta, boolean hasdelta, double scale)
    • tstzspan_delta_scale_iter

      public static void tstzspan_delta_scale_iter(jnr.ffi.Pointer s, OffsetDateTime origin, OffsetDateTime delta, double scale)
    • numspan_shift_scale_iter

      public static void numspan_shift_scale_iter(jnr.ffi.Pointer s, jnr.ffi.Pointer shift, jnr.ffi.Pointer width, boolean hasshift, boolean haswidth, jnr.ffi.Pointer delta, jnr.ffi.Pointer scale)
    • tstzspan_shift_scale1

      public static void tstzspan_shift_scale1(jnr.ffi.Pointer s, jnr.ffi.Pointer shift, jnr.ffi.Pointer duration, jnr.ffi.Pointer delta, jnr.ffi.Pointer scale)
    • mi_span_value

      public static int mi_span_value(jnr.ffi.Pointer s, jnr.ffi.Pointer value, jnr.ffi.Pointer result)
    • dist_double_value_value

      public static double dist_double_value_value(jnr.ffi.Pointer l, jnr.ffi.Pointer r, int type)
    • trgeo_geom_clip_polygon

      public static int trgeo_geom_clip_polygon(jnr.ffi.Pointer a1, jnr.ffi.Pointer b1, jnr.ffi.Pointer a2, jnr.ffi.Pointer b2, jnr.ffi.Pointer pa, jnr.ffi.Pointer intervals_out)
    • trgeo_geom_clip_lwpoly

      public static int trgeo_geom_clip_lwpoly(jnr.ffi.Pointer a1, jnr.ffi.Pointer b1, jnr.ffi.Pointer a2, jnr.ffi.Pointer b2, jnr.ffi.Pointer poly, jnr.ffi.Pointer intervals_out)
    • trgeo_geom_clip_box

      public static int trgeo_geom_clip_box(jnr.ffi.Pointer a1, jnr.ffi.Pointer b1, jnr.ffi.Pointer a2, jnr.ffi.Pointer b2, double xmin, double ymin, double xmax, double ymax, jnr.ffi.Pointer intervals_out)
    • trgeo_geom_clip_polygon_posed

      public static int trgeo_geom_clip_polygon_posed(jnr.ffi.Pointer p_a_local, jnr.ffi.Pointer p_b_local, jnr.ffi.Pointer pose1, jnr.ffi.Pointer pose2, jnr.ffi.Pointer pa, jnr.ffi.Pointer intervals_out)
    • trgeo_geom_clip_lwpoly_posed

      public static int trgeo_geom_clip_lwpoly_posed(jnr.ffi.Pointer p_a_local, jnr.ffi.Pointer p_b_local, jnr.ffi.Pointer pose1, jnr.ffi.Pointer pose2, jnr.ffi.Pointer poly, jnr.ffi.Pointer intervals_out)
    • trgeo_geom_clip_box_posed

      public static int trgeo_geom_clip_box_posed(jnr.ffi.Pointer p_a_local, jnr.ffi.Pointer p_b_local, jnr.ffi.Pointer pose1, jnr.ffi.Pointer pose2, double xmin, double ymin, double xmax, double ymax, jnr.ffi.Pointer intervals_out)
    • trgeo_geom_clip_lwgeom

      public static int trgeo_geom_clip_lwgeom(jnr.ffi.Pointer a1, jnr.ffi.Pointer b1, jnr.ffi.Pointer a2, jnr.ffi.Pointer b2, jnr.ffi.Pointer geom, jnr.ffi.Pointer intervals_out)
    • trgeo_geom_clip_lwgeom_posed

      public static int trgeo_geom_clip_lwgeom_posed(jnr.ffi.Pointer p_a_local, jnr.ffi.Pointer p_b_local, jnr.ffi.Pointer pose1, jnr.ffi.Pointer pose2, jnr.ffi.Pointer geom, jnr.ffi.Pointer intervals_out)
    • trgeo_parse

      public static jnr.ffi.Pointer trgeo_parse(jnr.ffi.Pointer str, int temptype)
    • ensure_same_geom

      public static boolean ensure_same_geom(jnr.ffi.Pointer gs1, jnr.ffi.Pointer gs2)
    • lwgeom_apply_pose

      public static void lwgeom_apply_pose(jnr.ffi.Pointer pose, jnr.ffi.Pointer geom)
    • geom_apply_pose

      public static jnr.ffi.Pointer geom_apply_pose(jnr.ffi.Pointer gs, jnr.ffi.Pointer pose)
    • geom_radius

      public static double geom_radius(jnr.ffi.Pointer gs)
    • v_clip_tpoly_point

      public static int v_clip_tpoly_point(jnr.ffi.Pointer poly, jnr.ffi.Pointer point, jnr.ffi.Pointer pose, jnr.ffi.Pointer poly_feature, jnr.ffi.Pointer dist)
    • v_clip_tpoly_tpoly

      public static int v_clip_tpoly_tpoly(jnr.ffi.Pointer poly1, jnr.ffi.Pointer poly2, jnr.ffi.Pointer pose1, jnr.ffi.Pointer pose2, jnr.ffi.Pointer poly1_feature, jnr.ffi.Pointer poly2_feature, jnr.ffi.Pointer dist)
    • apply_pose_point4d

      public static void apply_pose_point4d(jnr.ffi.Pointer p, jnr.ffi.Pointer pose)
    • tfunc_tinstant

      public static jnr.ffi.Pointer tfunc_tinstant(jnr.ffi.Pointer inst, jnr.ffi.Pointer lfinfo)
    • tfunc_tsequence

      public static jnr.ffi.Pointer tfunc_tsequence(jnr.ffi.Pointer seq, jnr.ffi.Pointer lfinfo)
    • tfunc_tsequenceset

      public static jnr.ffi.Pointer tfunc_tsequenceset(jnr.ffi.Pointer ss, jnr.ffi.Pointer lfinfo)
    • tfunc_temporal

      public static jnr.ffi.Pointer tfunc_temporal(jnr.ffi.Pointer temp, jnr.ffi.Pointer lfinfo)
    • tfunc_tinstant_base

      public static jnr.ffi.Pointer tfunc_tinstant_base(jnr.ffi.Pointer inst, jnr.ffi.Pointer value, jnr.ffi.Pointer lfinfo)
    • tfunc_tsequence_base

      public static jnr.ffi.Pointer tfunc_tsequence_base(jnr.ffi.Pointer seq, jnr.ffi.Pointer value, jnr.ffi.Pointer lfinfo)
    • tfunc_tsequenceset_base

      public static jnr.ffi.Pointer tfunc_tsequenceset_base(jnr.ffi.Pointer ss, jnr.ffi.Pointer value, jnr.ffi.Pointer lfinfo)
    • tfunc_temporal_base

      public static jnr.ffi.Pointer tfunc_temporal_base(jnr.ffi.Pointer temp, jnr.ffi.Pointer value, jnr.ffi.Pointer lfinfo)
    • tfunc_tinstant_tinstant

      public static jnr.ffi.Pointer tfunc_tinstant_tinstant(jnr.ffi.Pointer inst1, jnr.ffi.Pointer inst2, jnr.ffi.Pointer lfinfo)
    • tfunc_tdiscseq_tdiscseq

      public static jnr.ffi.Pointer tfunc_tdiscseq_tdiscseq(jnr.ffi.Pointer seq1, jnr.ffi.Pointer seq2, jnr.ffi.Pointer lfinfo)
    • tfunc_tcontseq_tcontseq

      public static jnr.ffi.Pointer tfunc_tcontseq_tcontseq(jnr.ffi.Pointer seq1, jnr.ffi.Pointer seq2, jnr.ffi.Pointer lfinfo)
    • tfunc_tsequenceset_tsequenceset

      public static jnr.ffi.Pointer tfunc_tsequenceset_tsequenceset(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2, jnr.ffi.Pointer lfinfo)
    • tfunc_temporal_temporal

      public static jnr.ffi.Pointer tfunc_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, jnr.ffi.Pointer lfinfo)
    • eafunc_temporal_base

      public static int eafunc_temporal_base(jnr.ffi.Pointer temp, jnr.ffi.Pointer value, jnr.ffi.Pointer lfinfo)
    • eafunc_temporal_temporal

      public static int eafunc_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, jnr.ffi.Pointer lfinfo)
    • lfunc_set

      public static jnr.ffi.Pointer lfunc_set(jnr.ffi.Pointer set, jnr.ffi.Pointer lfinfo)
    • set_out_fn

      public static String set_out_fn(jnr.ffi.Pointer s, int maxdd, jnr.ffi.Pointer value_out)
    • ensure_set_isof_type

      public static boolean ensure_set_isof_type(jnr.ffi.Pointer s, int settype)
    • ensure_valid_set_set

      public static boolean ensure_valid_set_set(jnr.ffi.Pointer s1, jnr.ffi.Pointer s2)
    • set_find_value

      public static jnr.ffi.Pointer set_find_value(jnr.ffi.Pointer s, jnr.ffi.Pointer arg1)
    • set_unnest_state_make

      public static jnr.ffi.Pointer set_unnest_state_make(jnr.ffi.Pointer set)
    • set_unnest_state_next

      public static void set_unnest_state_next(jnr.ffi.Pointer state)
    • ensure_same_skiplist_subtype

      public static boolean ensure_same_skiplist_subtype(jnr.ffi.Pointer state, byte subtype)
    • skiplist_set_extra

      public static void skiplist_set_extra(jnr.ffi.Pointer state, jnr.ffi.Pointer data, long size)
    • skiplist_headval

      public static jnr.ffi.Pointer skiplist_headval(jnr.ffi.Pointer list)
    • common_entry_cmp

      public static int common_entry_cmp(jnr.ffi.Pointer i1, jnr.ffi.Pointer i2)
    • span_index_leaf_consistent

      public static boolean span_index_leaf_consistent(jnr.ffi.Pointer key, jnr.ffi.Pointer query, jnr.ffi.Pointer strategy)
    • span_gist_inner_consistent

      public static boolean span_gist_inner_consistent(jnr.ffi.Pointer key, jnr.ffi.Pointer query, jnr.ffi.Pointer strategy)
    • span_index_recheck

      public static boolean span_index_recheck(jnr.ffi.Pointer strategy)
    • span_lower_qsort_cmp

      public static int span_lower_qsort_cmp(jnr.ffi.Pointer a, jnr.ffi.Pointer b)
    • span_upper_qsort_cmp

      public static int span_upper_qsort_cmp(jnr.ffi.Pointer a, jnr.ffi.Pointer b)
    • getQuadrant2D

      public static byte getQuadrant2D(jnr.ffi.Pointer centroid, jnr.ffi.Pointer query)
    • overlap2D

      public static boolean overlap2D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • contain2D

      public static boolean contain2D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • left2D

      public static boolean left2D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • overLeft2D

      public static boolean overLeft2D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • right2D

      public static boolean right2D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • overRight2D

      public static boolean overRight2D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • adjacent2D

      public static boolean adjacent2D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • distance_span_nodespan

      public static double distance_span_nodespan(jnr.ffi.Pointer query, jnr.ffi.Pointer nodebox)
    • span_spgist_get_span

      public static boolean span_spgist_get_span(jnr.ffi.Pointer value, int type, jnr.ffi.Pointer result)
    • spannode_init

      public static void spannode_init(jnr.ffi.Pointer nodebox, int spantype, int basetype)
    • spannode_copy

      public static jnr.ffi.Pointer spannode_copy(jnr.ffi.Pointer orig)
    • spannode_quadtree_next

      public static void spannode_quadtree_next(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer centroid, byte quadrant, jnr.ffi.Pointer next_nodespan)
    • spannode_kdtree_next

      public static void spannode_kdtree_next(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer centroid, byte node, int level, jnr.ffi.Pointer next_nodespan)
    • ensure_spanset_isof_type

      public static boolean ensure_spanset_isof_type(jnr.ffi.Pointer ss, int spansettype)
    • ensure_same_spanset_type

      public static boolean ensure_same_spanset_type(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • ensure_same_spanset_span_type

      public static boolean ensure_same_spanset_span_type(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • ensure_valid_spanset_span

      public static boolean ensure_valid_spanset_span(jnr.ffi.Pointer ss, jnr.ffi.Pointer s)
    • ensure_valid_spanset_spanset

      public static boolean ensure_valid_spanset_spanset(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2)
    • spanset_find_value

      public static jnr.ffi.Pointer spanset_find_value(jnr.ffi.Pointer ss, jnr.ffi.Pointer v)
    • datum_and

      public static jnr.ffi.Pointer datum_and(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • datum_or

      public static jnr.ffi.Pointer datum_or(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • boolop_tbool_bool

      public static jnr.ffi.Pointer boolop_tbool_bool(jnr.ffi.Pointer temp, jnr.ffi.Pointer b, jnr.ffi.Pointer func, boolean invert)
    • boolop_tbool_tbool

      public static jnr.ffi.Pointer boolop_tbool_tbool(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, jnr.ffi.Pointer func)
    • ensure_same_dimensionality_tbox

      public static boolean ensure_same_dimensionality_tbox(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • set_tbox

      public static jnr.ffi.Pointer set_tbox(jnr.ffi.Pointer s)
    • span_tbox

      public static jnr.ffi.Pointer span_tbox(jnr.ffi.Pointer s)
    • tbox_tstzspan

      public static jnr.ffi.Pointer tbox_tstzspan(jnr.ffi.Pointer box)
    • tbox_intspan

      public static jnr.ffi.Pointer tbox_intspan(jnr.ffi.Pointer box)
    • tbox_floatspan

      public static jnr.ffi.Pointer tbox_floatspan(jnr.ffi.Pointer box)
    • tbox_index_leaf_consistent

      public static boolean tbox_index_leaf_consistent(jnr.ffi.Pointer key, jnr.ffi.Pointer query, jnr.ffi.Pointer strategy)
    • tbox_gist_inner_consistent

      public static boolean tbox_gist_inner_consistent(jnr.ffi.Pointer key, jnr.ffi.Pointer query, jnr.ffi.Pointer strategy)
    • tbox_index_recheck

      public static boolean tbox_index_recheck(jnr.ffi.Pointer strategy)
    • tboxnode_init

      public static void tboxnode_init(jnr.ffi.Pointer centroid, jnr.ffi.Pointer nodebox)
    • tboxnode_copy

      public static jnr.ffi.Pointer tboxnode_copy(jnr.ffi.Pointer box)
    • getQuadrant4D

      public static byte getQuadrant4D(jnr.ffi.Pointer centroid, jnr.ffi.Pointer inBox)
    • tboxnode_quadtree_next

      public static void tboxnode_quadtree_next(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer centroid, byte quadrant, jnr.ffi.Pointer next_nodebox)
    • tboxnode_kdtree_next

      public static void tboxnode_kdtree_next(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer centroid, byte node, int level, jnr.ffi.Pointer next_nodebox)
    • overlap4D

      public static boolean overlap4D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • contain4D

      public static boolean contain4D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • left4D

      public static boolean left4D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • overLeft4D

      public static boolean overLeft4D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • right4D

      public static boolean right4D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • overRight4D

      public static boolean overRight4D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • before4D

      public static boolean before4D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • overBefore4D

      public static boolean overBefore4D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • after4D

      public static boolean after4D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • overAfter4D

      public static boolean overAfter4D(jnr.ffi.Pointer nodebox, jnr.ffi.Pointer query)
    • distance_tbox_nodebox

      public static double distance_tbox_nodebox(jnr.ffi.Pointer query, jnr.ffi.Pointer nodebox)
    • tnumber_spgist_get_tbox

      public static void tnumber_spgist_get_tbox(jnr.ffi.Pointer value, int type, jnr.ffi.Pointer result)
    • tbox_xmin_cmp

      public static int tbox_xmin_cmp(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tbox_xmax_cmp

      public static int tbox_xmax_cmp(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tbox_tmin_cmp

      public static int tbox_tmin_cmp(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tbox_tmax_cmp

      public static int tbox_tmax_cmp(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2)
    • tbox_level_cmp

      public static int tbox_level_cmp(jnr.ffi.Pointer centroid, jnr.ffi.Pointer query, int level)
    • tcellindex_type

      public static boolean tcellindex_type(int type)
    • dggs_cellops

      public static jnr.ffi.Pointer dggs_cellops(int temptype)
    • datum_min_int32

      public static jnr.ffi.Pointer datum_min_int32(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • datum_max_int32

      public static jnr.ffi.Pointer datum_max_int32(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • datum_min_int64

      public static jnr.ffi.Pointer datum_min_int64(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • datum_max_int64

      public static jnr.ffi.Pointer datum_max_int64(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • datum_min_float8

      public static jnr.ffi.Pointer datum_min_float8(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • datum_max_float8

      public static jnr.ffi.Pointer datum_max_float8(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • datum_sum_int32

      public static jnr.ffi.Pointer datum_sum_int32(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • datum_sum_int64

      public static jnr.ffi.Pointer datum_sum_int64(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • datum_sum_float8

      public static jnr.ffi.Pointer datum_sum_float8(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • datum_min_text

      public static jnr.ffi.Pointer datum_min_text(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • datum_max_text

      public static jnr.ffi.Pointer datum_max_text(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • datum_sum_double2

      public static jnr.ffi.Pointer datum_sum_double2(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • datum_sum_double3

      public static jnr.ffi.Pointer datum_sum_double3(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • datum_sum_double4

      public static jnr.ffi.Pointer datum_sum_double4(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • temporal_skiplist_common

      public static int temporal_skiplist_common(jnr.ffi.Pointer list, jnr.ffi.Pointer values, int count, jnr.ffi.Pointer lower, jnr.ffi.Pointer upper, jnr.ffi.Pointer update)
    • temporal_skiplist_merge

      public static jnr.ffi.Pointer temporal_skiplist_merge(jnr.ffi.Pointer spliced, int spliced_count, jnr.ffi.Pointer values, int count, jnr.ffi.Pointer func, boolean crossings, jnr.ffi.Pointer newcount, jnr.ffi.Pointer tofree, jnr.ffi.Pointer nfree)
    • tinstant_tagg

      public static jnr.ffi.Pointer tinstant_tagg(jnr.ffi.Pointer instants1, int count1, jnr.ffi.Pointer instants2, int count2, jnr.ffi.Pointer func, jnr.ffi.Pointer newcount, jnr.ffi.Pointer tofree, jnr.ffi.Pointer nfree)
    • tsequence_tagg

      public static jnr.ffi.Pointer tsequence_tagg(jnr.ffi.Pointer sequences1, int count1, jnr.ffi.Pointer sequences2, int count2, jnr.ffi.Pointer func, boolean crossings, jnr.ffi.Pointer newcount)
    • tcontseq_tagg_transfn

      public static jnr.ffi.Pointer tcontseq_tagg_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer seq, jnr.ffi.Pointer func, boolean interpoint)
    • temporal_tagg_combinefn

      public static jnr.ffi.Pointer temporal_tagg_combinefn(jnr.ffi.Pointer state1, jnr.ffi.Pointer state2, jnr.ffi.Pointer func, boolean crossings)
    • tinstant_tagg_transfn

      public static jnr.ffi.Pointer tinstant_tagg_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer inst, jnr.ffi.Pointer func)
    • tinstant_tavg_finalfn

      public static jnr.ffi.Pointer tinstant_tavg_finalfn(jnr.ffi.Pointer instants, int count)
    • tsequence_tavg_finalfn

      public static jnr.ffi.Pointer tsequence_tavg_finalfn(jnr.ffi.Pointer sequences, int count)
    • tnumberinst_transform_tavg

      public static jnr.ffi.Pointer tnumberinst_transform_tavg(jnr.ffi.Pointer inst)
    • temporal_transform_tcount

      public static jnr.ffi.Pointer temporal_transform_tcount(jnr.ffi.Pointer temp, jnr.ffi.Pointer count)
    • temporal_transform_tagg

      public static jnr.ffi.Pointer temporal_transform_tagg(jnr.ffi.Pointer temp, jnr.ffi.Pointer count, jnr.ffi.Pointer func)
    • tsequenceset_tagg_transfn

      public static jnr.ffi.Pointer tsequenceset_tagg_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer ss, jnr.ffi.Pointer func, boolean crossings)
    • tdiscseq_tagg_transfn

      public static jnr.ffi.Pointer tdiscseq_tagg_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer seq, jnr.ffi.Pointer func)
    • temporal_tagg_transfn

      public static jnr.ffi.Pointer temporal_tagg_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp, jnr.ffi.Pointer arg2, boolean crossings)
    • temporal_tagg_transform_transfn

      public static jnr.ffi.Pointer temporal_tagg_transform_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp, jnr.ffi.Pointer func, boolean crossings, jnr.ffi.Pointer transform)
    • temporal_similarity

      public static double temporal_similarity(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, int simfunc)
    • temporal_similarity_path

      public static jnr.ffi.Pointer temporal_similarity_path(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, jnr.ffi.Pointer count, int simfunc)
    • temporal_bbox_size

      public static long temporal_bbox_size(int tempype)
    • tinstarr_set_bbox

      public static void tinstarr_set_bbox(jnr.ffi.Pointer instants, int count, boolean lower_inc, boolean upper_inc, int interp, jnr.ffi.Pointer box)
    • tsequence_compute_bbox

      public static void tsequence_compute_bbox(jnr.ffi.Pointer seq)
    • tseqarr_compute_bbox

      public static void tseqarr_compute_bbox(jnr.ffi.Pointer sequences, int count, jnr.ffi.Pointer bbox)
    • tsequenceset_compute_bbox

      public static void tsequenceset_compute_bbox(jnr.ffi.Pointer ss)
    • boxop_temporal_tstzspan

      public static boolean boxop_temporal_tstzspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer s, jnr.ffi.Pointer func, boolean invert)
    • boxop_temporal_temporal

      public static boolean boxop_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, jnr.ffi.Pointer func)
    • boxop_tnumber_numspan

      public static boolean boxop_tnumber_numspan(jnr.ffi.Pointer temp, jnr.ffi.Pointer span, jnr.ffi.Pointer func, boolean invert)
    • boxop_tnumber_tbox

      public static boolean boxop_tnumber_tbox(jnr.ffi.Pointer temp, jnr.ffi.Pointer box, jnr.ffi.Pointer func, boolean invert)
    • boxop_tnumber_tnumber

      public static boolean boxop_tnumber_tnumber(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, jnr.ffi.Pointer func)
    • eacomp_base_temporal

      public static int eacomp_base_temporal(jnr.ffi.Pointer value, jnr.ffi.Pointer temp, jnr.ffi.Pointer func, boolean ever)
    • eacomp_temporal_base

      public static int eacomp_temporal_base(jnr.ffi.Pointer temp, jnr.ffi.Pointer value, jnr.ffi.Pointer func, boolean ever)
    • eacomp_temporal_temporal

      public static int eacomp_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, jnr.ffi.Pointer func, boolean ever)
    • tcomp_base_temporal

      public static jnr.ffi.Pointer tcomp_base_temporal(jnr.ffi.Pointer value, jnr.ffi.Pointer temp, jnr.ffi.Pointer func)
    • tcomp_temporal_base

      public static jnr.ffi.Pointer tcomp_temporal_base(jnr.ffi.Pointer temp, jnr.ffi.Pointer value, jnr.ffi.Pointer func)
    • tcomp_temporal_temporal

      public static jnr.ffi.Pointer tcomp_temporal_temporal(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, jnr.ffi.Pointer func)
    • tdiscseq_at_timestamptz

      public static jnr.ffi.Pointer tdiscseq_at_timestamptz(jnr.ffi.Pointer seq, OffsetDateTime t)
    • tdiscseq_restrict_value

      public static jnr.ffi.Pointer tdiscseq_restrict_value(jnr.ffi.Pointer seq, jnr.ffi.Pointer value, boolean atfunc)
    • tdiscseq_restrict_values

      public static jnr.ffi.Pointer tdiscseq_restrict_values(jnr.ffi.Pointer seq, jnr.ffi.Pointer s, boolean atfunc)
    • tdiscseq_minus_timestamptz

      public static jnr.ffi.Pointer tdiscseq_minus_timestamptz(jnr.ffi.Pointer seq, OffsetDateTime t)
    • tdiscseq_restrict_tstzset

      public static jnr.ffi.Pointer tdiscseq_restrict_tstzset(jnr.ffi.Pointer seq, jnr.ffi.Pointer s, boolean atfunc)
    • tdiscseq_restrict_tstzspanset

      public static jnr.ffi.Pointer tdiscseq_restrict_tstzspanset(jnr.ffi.Pointer seq, jnr.ffi.Pointer ss, boolean atfunc)
    • tcontseq_restrict_value_iter

      public static int tcontseq_restrict_value_iter(jnr.ffi.Pointer seq, jnr.ffi.Pointer value, boolean atfunc, jnr.ffi.Pointer result)
    • tcontseq_delete_timestamptz

      public static jnr.ffi.Pointer tcontseq_delete_timestamptz(jnr.ffi.Pointer seq, OffsetDateTime t)
    • tcontseq_delete_tstzset

      public static jnr.ffi.Pointer tcontseq_delete_tstzset(jnr.ffi.Pointer seq, jnr.ffi.Pointer s)
    • tcontseq_delete_tstzspanset

      public static jnr.ffi.Pointer tcontseq_delete_tstzspanset(jnr.ffi.Pointer seq, jnr.ffi.Pointer ss)
    • tcontseq_at_tstzset

      public static jnr.ffi.Pointer tcontseq_at_tstzset(jnr.ffi.Pointer seq, jnr.ffi.Pointer s)
    • tcontseq_minus_timestamptz

      public static jnr.ffi.Pointer tcontseq_minus_timestamptz(jnr.ffi.Pointer seq, OffsetDateTime t)
    • tcontseq_minus_tstzset

      public static jnr.ffi.Pointer tcontseq_minus_tstzset(jnr.ffi.Pointer seq, jnr.ffi.Pointer s)
    • tcontseq_minus_tstzspan

      public static jnr.ffi.Pointer tcontseq_minus_tstzspan(jnr.ffi.Pointer seq, jnr.ffi.Pointer s)
    • tcontseq_restrict_value

      public static jnr.ffi.Pointer tcontseq_restrict_value(jnr.ffi.Pointer seq, jnr.ffi.Pointer value, boolean atfunc)
    • tcontseq_restrict_values

      public static jnr.ffi.Pointer tcontseq_restrict_values(jnr.ffi.Pointer seq, jnr.ffi.Pointer s, boolean atfunc)
    • tsequence_at_values_iter

      public static int tsequence_at_values_iter(jnr.ffi.Pointer seq, jnr.ffi.Pointer set, jnr.ffi.Pointer result)
    • tnumberseq_cont_restrict_span_iter

      public static int tnumberseq_cont_restrict_span_iter(jnr.ffi.Pointer seq, jnr.ffi.Pointer span, boolean atfunc, jnr.ffi.Pointer result)
    • tnumberseq_cont_restrict_spanset_iter

      public static int tnumberseq_cont_restrict_spanset_iter(jnr.ffi.Pointer seq, jnr.ffi.Pointer ss, boolean atfunc, jnr.ffi.Pointer result)
    • tsegment_at_timestamptz

      public static jnr.ffi.Pointer tsegment_at_timestamptz(jnr.ffi.Pointer inst1, jnr.ffi.Pointer inst2, int interp, OffsetDateTime t)
    • tcontseq_minus_timestamp_iter

      public static int tcontseq_minus_timestamp_iter(jnr.ffi.Pointer seq, OffsetDateTime t, jnr.ffi.Pointer result)
    • tcontseq_minus_tstzset_iter

      public static int tcontseq_minus_tstzset_iter(jnr.ffi.Pointer seq, jnr.ffi.Pointer s, jnr.ffi.Pointer result)
    • tcontseq_at_tstzspanset1

      public static int tcontseq_at_tstzspanset1(jnr.ffi.Pointer seq, jnr.ffi.Pointer ss, jnr.ffi.Pointer result)
    • tcontseq_minus_tstzspanset_iter

      public static int tcontseq_minus_tstzspanset_iter(jnr.ffi.Pointer seq, jnr.ffi.Pointer ss, jnr.ffi.Pointer result)
    • tcontseq_at_tstzspan

      public static jnr.ffi.Pointer tcontseq_at_tstzspan(jnr.ffi.Pointer seq, jnr.ffi.Pointer s)
    • tcontseq_at_timestamptz

      public static jnr.ffi.Pointer tcontseq_at_timestamptz(jnr.ffi.Pointer seq, OffsetDateTime t)
    • tcontseq_restrict_tstzspanset

      public static jnr.ffi.Pointer tcontseq_restrict_tstzspanset(jnr.ffi.Pointer seq, jnr.ffi.Pointer ss, boolean atfunc)
    • tdiscseq_value_at_timestamptz

      public static boolean tdiscseq_value_at_timestamptz(jnr.ffi.Pointer seq, OffsetDateTime t, jnr.ffi.Pointer result)
    • tnumberseq_disc_restrict_span

      public static jnr.ffi.Pointer tnumberseq_disc_restrict_span(jnr.ffi.Pointer seq, jnr.ffi.Pointer span, boolean atfunc)
    • tnumberseq_disc_restrict_spanset

      public static jnr.ffi.Pointer tnumberseq_disc_restrict_spanset(jnr.ffi.Pointer seq, jnr.ffi.Pointer ss, boolean atfunc)
    • tnumberseq_cont_restrict_span

      public static jnr.ffi.Pointer tnumberseq_cont_restrict_span(jnr.ffi.Pointer seq, jnr.ffi.Pointer span, boolean atfunc)
    • tnumberseq_cont_restrict_spanset

      public static jnr.ffi.Pointer tnumberseq_cont_restrict_spanset(jnr.ffi.Pointer seq, jnr.ffi.Pointer ss, boolean atfunc)
    • tnumberseq_cont_twavg

      public static double tnumberseq_cont_twavg(jnr.ffi.Pointer seq)
    • span_num_bins

      public static int span_num_bins(jnr.ffi.Pointer s, jnr.ffi.Pointer size, jnr.ffi.Pointer origin, jnr.ffi.Pointer start_bin, jnr.ffi.Pointer end_bin)
    • temporal_time_bin_init

      public static jnr.ffi.Pointer temporal_time_bin_init(jnr.ffi.Pointer temp, jnr.ffi.Pointer duration, OffsetDateTime torigin, jnr.ffi.Pointer nbins)
    • tbox_tile_state_make

      public static jnr.ffi.Pointer tbox_tile_state_make(jnr.ffi.Pointer temp, jnr.ffi.Pointer box, jnr.ffi.Pointer vsize, jnr.ffi.Pointer duration, jnr.ffi.Pointer xorigin, OffsetDateTime torigin)
    • tbox_tile_state_next

      public static void tbox_tile_state_next(jnr.ffi.Pointer state)
    • tbox_tile_state_set

      public static void tbox_tile_state_set(jnr.ffi.Pointer value, OffsetDateTime t, jnr.ffi.Pointer vsize, long tunits, int basetype, int spantype, jnr.ffi.Pointer box)
    • interval_units

      public static long interval_units(jnr.ffi.Pointer interval)
    • timestamptz_bin_start

      public static OffsetDateTime timestamptz_bin_start(OffsetDateTime timestamp, long tunits, OffsetDateTime torigin)
    • datum_bin

      public static jnr.ffi.Pointer datum_bin(jnr.ffi.Pointer value, jnr.ffi.Pointer size, jnr.ffi.Pointer offset, int basetype)
    • tnumber_value_time_tile_init

      public static jnr.ffi.Pointer tnumber_value_time_tile_init(jnr.ffi.Pointer temp, jnr.ffi.Pointer vsize, jnr.ffi.Pointer duration, jnr.ffi.Pointer vorigin, OffsetDateTime torigin, jnr.ffi.Pointer ntiles)
    • tbox_tile_state_get

      public static jnr.ffi.Pointer tbox_tile_state_get(jnr.ffi.Pointer state)
    • temporal_transform_wcount

      public static jnr.ffi.Pointer temporal_transform_wcount(jnr.ffi.Pointer temp, jnr.ffi.Pointer interval, jnr.ffi.Pointer count)
    • tnumber_transform_wavg

      public static jnr.ffi.Pointer tnumber_transform_wavg(jnr.ffi.Pointer temp, jnr.ffi.Pointer interval, jnr.ffi.Pointer count)
    • temporal_wagg_transfn

      public static jnr.ffi.Pointer temporal_wagg_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp, jnr.ffi.Pointer interval, jnr.ffi.Pointer func, boolean min, boolean crossings)
    • temporal_wagg_transform_transfn

      public static jnr.ffi.Pointer temporal_wagg_transform_transfn(jnr.ffi.Pointer state, jnr.ffi.Pointer temp, jnr.ffi.Pointer interval, jnr.ffi.Pointer func, jnr.ffi.Pointer transform)
    • tinstant_set

      public static void tinstant_set(jnr.ffi.Pointer inst, jnr.ffi.Pointer value, OffsetDateTime t)
    • tnumberinst_double

      public static double tnumberinst_double(jnr.ffi.Pointer inst)
    • tinstant_to_string

      public static String tinstant_to_string(jnr.ffi.Pointer inst, int maxdd, jnr.ffi.Pointer value_out)
    • tinstant_restrict_values_test

      public static boolean tinstant_restrict_values_test(jnr.ffi.Pointer inst, jnr.ffi.Pointer s, boolean atfunc)
    • tnumberinst_restrict_span_test

      public static boolean tnumberinst_restrict_span_test(jnr.ffi.Pointer inst, jnr.ffi.Pointer s, boolean atfunc)
    • tnumberinst_restrict_spanset_test

      public static boolean tnumberinst_restrict_spanset_test(jnr.ffi.Pointer inst, jnr.ffi.Pointer ss, boolean atfunc)
    • tinstant_restrict_tstzset_test

      public static boolean tinstant_restrict_tstzset_test(jnr.ffi.Pointer inst, jnr.ffi.Pointer s, boolean atfunc)
    • tinstant_restrict_tstzspanset_test

      public static boolean tinstant_restrict_tstzspanset_test(jnr.ffi.Pointer inst, jnr.ffi.Pointer ss, boolean atfunc)
    • intersection_tinstant_tinstant

      public static boolean intersection_tinstant_tinstant(jnr.ffi.Pointer inst1, jnr.ffi.Pointer inst2, jnr.ffi.Pointer inter1, jnr.ffi.Pointer inter2)
    • _mulmat

      public static void _mulmat(jnr.ffi.Pointer a, jnr.ffi.Pointer b, jnr.ffi.Pointer c, int arows, int acols, int bcols)
    • _mulvec

      public static void _mulvec(jnr.ffi.Pointer a, jnr.ffi.Pointer x, jnr.ffi.Pointer y, int m, int n)
    • _transpose

      public static void _transpose(jnr.ffi.Pointer a, jnr.ffi.Pointer at, int m, int n)
    • _addmat

      public static void _addmat(jnr.ffi.Pointer a, jnr.ffi.Pointer b, jnr.ffi.Pointer c, int m, int n)
    • _negate

      public static void _negate(jnr.ffi.Pointer a, int m, int n)
    • _addeye

      public static void _addeye(jnr.ffi.Pointer a, int n)
    • _choldc1

      public static int _choldc1(jnr.ffi.Pointer a, jnr.ffi.Pointer p, int n)
    • _choldcsl

      public static int _choldcsl(jnr.ffi.Pointer A, jnr.ffi.Pointer a, jnr.ffi.Pointer p, int n)
    • _cholsl

      public static int _cholsl(jnr.ffi.Pointer A, jnr.ffi.Pointer a, jnr.ffi.Pointer p, int n)
    • _addvec

      public static void _addvec(jnr.ffi.Pointer a, jnr.ffi.Pointer b, jnr.ffi.Pointer c, int n)
    • _sub

      public static void _sub(jnr.ffi.Pointer a, jnr.ffi.Pointer b, jnr.ffi.Pointer c, int n)
    • invert

      public static boolean invert(jnr.ffi.Pointer a, jnr.ffi.Pointer ainv)
    • ekf_initialize

      public static void ekf_initialize(jnr.ffi.Pointer ekf, float pdiag)
    • ekf_predict

      public static void ekf_predict(jnr.ffi.Pointer ekf, float fx, float F, float Q)
    • ekf_update_step3

      public static void ekf_update_step3(jnr.ffi.Pointer ekf, float GH)
    • ekf_update

      public static boolean ekf_update(jnr.ffi.Pointer ekf, float z, float hx, float H, float R)
    • tfloat_arithop_turnpt

      public static int tfloat_arithop_turnpt(jnr.ffi.Pointer start1, jnr.ffi.Pointer end1, jnr.ffi.Pointer start2, jnr.ffi.Pointer end2, jnr.ffi.Pointer param, OffsetDateTime lower, OffsetDateTime upper, jnr.ffi.Pointer t1, jnr.ffi.Pointer t2)
    • arithop_tnumber_number

      public static jnr.ffi.Pointer arithop_tnumber_number(jnr.ffi.Pointer temp, jnr.ffi.Pointer value, int oper, jnr.ffi.Pointer func, boolean invert)
    • arithop_tnumber_tnumber

      public static jnr.ffi.Pointer arithop_tnumber_tnumber(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, int oper, jnr.ffi.Pointer func, jnr.ffi.Pointer tpfunc)
    • float_collinear

      public static boolean float_collinear(double x1, double x2, double x3, double ratio)
    • floatsegm_interpolate

      public static double floatsegm_interpolate(double value1, double value2, jnr.ffi.Pointer value)
    • floatsegm_locate

      public static jnr.ffi.Pointer floatsegm_locate(double value1, double value2, double value)
    • tnumbersegm_intersection

      public static int tnumbersegm_intersection(jnr.ffi.Pointer start1, jnr.ffi.Pointer end1, jnr.ffi.Pointer start2, jnr.ffi.Pointer end2, int basetype, OffsetDateTime lower, OffsetDateTime upper, jnr.ffi.Pointer t1, jnr.ffi.Pointer t2)
    • tsequence_norm_test

      public static boolean tsequence_norm_test(jnr.ffi.Pointer value1, jnr.ffi.Pointer value2, jnr.ffi.Pointer value3, int basetype, int interp, OffsetDateTime t1, OffsetDateTime t2, OffsetDateTime t3)
    • tsequence_join_test

      public static boolean tsequence_join_test(jnr.ffi.Pointer seq1, jnr.ffi.Pointer seq2, jnr.ffi.Pointer removelast, jnr.ffi.Pointer removefirst)
    • tsequence_join

      public static jnr.ffi.Pointer tsequence_join(jnr.ffi.Pointer seq1, jnr.ffi.Pointer seq2, boolean removelast, boolean removefirst)
    • tinstarr_normalize

      public static jnr.ffi.Pointer tinstarr_normalize(jnr.ffi.Pointer instants, int interp, int count, jnr.ffi.Pointer newcount)
    • tcontseq_find_timestamptz

      public static int tcontseq_find_timestamptz(jnr.ffi.Pointer seq, OffsetDateTime t)
    • tdiscseq_find_timestamptz

      public static int tdiscseq_find_timestamptz(jnr.ffi.Pointer seq, OffsetDateTime t)
    • tseqarr2_to_tseqarr

      public static jnr.ffi.Pointer tseqarr2_to_tseqarr(jnr.ffi.Pointer sequences, jnr.ffi.Pointer countseqs, int count, int totalseqs)
    • ensure_valid_tinstarr_common

      public static boolean ensure_valid_tinstarr_common(jnr.ffi.Pointer instants, int count, boolean lower_inc, boolean upper_inc, int interp)
    • tsequence_make_exp1

      public static jnr.ffi.Pointer tsequence_make_exp1(jnr.ffi.Pointer instants, int count, int maxcount, boolean lower_inc, boolean upper_inc, int interp, boolean normalize, jnr.ffi.Pointer bbox)
    • synchronize_tsequence_tsequence

      public static boolean synchronize_tsequence_tsequence(jnr.ffi.Pointer seq1, jnr.ffi.Pointer seq2, jnr.ffi.Pointer sync1, jnr.ffi.Pointer sync2, boolean interpoint)
    • tfloatsegm_intersection_value

      public static int tfloatsegm_intersection_value(jnr.ffi.Pointer start, jnr.ffi.Pointer end, jnr.ffi.Pointer value, OffsetDateTime lower, OffsetDateTime upper, jnr.ffi.Pointer t)
    • tsegment_intersection_value

      public static int tsegment_intersection_value(jnr.ffi.Pointer start, jnr.ffi.Pointer end, jnr.ffi.Pointer value, int temptype, OffsetDateTime lower, OffsetDateTime upper, jnr.ffi.Pointer t1, jnr.ffi.Pointer t2)
    • tsegment_intersection

      public static int tsegment_intersection(jnr.ffi.Pointer start1, jnr.ffi.Pointer end1, jnr.ffi.Pointer start2, jnr.ffi.Pointer end2, int temptype, OffsetDateTime lower, OffsetDateTime upper, jnr.ffi.Pointer t1, jnr.ffi.Pointer t2)
    • tsegment_value_at_timestamptz

      public static jnr.ffi.Pointer tsegment_value_at_timestamptz(jnr.ffi.Pointer start, jnr.ffi.Pointer end, int temptype, OffsetDateTime lower, OffsetDateTime upper, OffsetDateTime t)
    • intersection_tdiscseq_tdiscseq

      public static boolean intersection_tdiscseq_tdiscseq(jnr.ffi.Pointer seq1, jnr.ffi.Pointer seq2, jnr.ffi.Pointer inter1, jnr.ffi.Pointer inter2)
    • intersection_tcontseq_tdiscseq

      public static boolean intersection_tcontseq_tdiscseq(jnr.ffi.Pointer seq1, jnr.ffi.Pointer seq2, jnr.ffi.Pointer inter1, jnr.ffi.Pointer inter2)
    • intersection_tdiscseq_tcontseq

      public static boolean intersection_tdiscseq_tcontseq(jnr.ffi.Pointer is, jnr.ffi.Pointer seq2, jnr.ffi.Pointer inter1, jnr.ffi.Pointer inter2)
    • intersection_tsequence_tinstant

      public static boolean intersection_tsequence_tinstant(jnr.ffi.Pointer seq, jnr.ffi.Pointer inst, jnr.ffi.Pointer inter1, jnr.ffi.Pointer inter2)
    • intersection_tinstant_tsequence

      public static boolean intersection_tinstant_tsequence(jnr.ffi.Pointer inst, jnr.ffi.Pointer seq, jnr.ffi.Pointer inter1, jnr.ffi.Pointer inter2)
    • tsequence_to_string

      public static String tsequence_to_string(jnr.ffi.Pointer seq, int maxdd, boolean component, jnr.ffi.Pointer value_out)
    • ensure_increasing_timestamps

      public static boolean ensure_increasing_timestamps(jnr.ffi.Pointer inst1, jnr.ffi.Pointer inst2, boolean strict)
    • bbox_expand

      public static void bbox_expand(jnr.ffi.Pointer box1, jnr.ffi.Pointer box2, int temptype)
    • ensure_valid_tinstarr

      public static boolean ensure_valid_tinstarr(jnr.ffi.Pointer instants, int count, boolean merge, int interp)
    • tsequence_make_valid

      public static boolean tsequence_make_valid(jnr.ffi.Pointer instants, int count, boolean lower_inc, boolean upper_inc, int interp)
    • tnumberseq_shift_scale_value_iter

      public static void tnumberseq_shift_scale_value_iter(jnr.ffi.Pointer seq, jnr.ffi.Pointer origin, jnr.ffi.Pointer delta, boolean hasdelta, double scale)
    • tsequence_shift_scale_time_iter

      public static void tsequence_shift_scale_time_iter(jnr.ffi.Pointer seq, OffsetDateTime delta, double scale)
    • tstepseq_to_linear_iter

      public static int tstepseq_to_linear_iter(jnr.ffi.Pointer seq, jnr.ffi.Pointer result)
    • tstepseq_to_linear

      public static jnr.ffi.Pointer tstepseq_to_linear(jnr.ffi.Pointer seq)
    • tsequence_segments_iter

      public static int tsequence_segments_iter(jnr.ffi.Pointer seq, jnr.ffi.Pointer result)
    • tsequence_timestamps_iter

      public static int tsequence_timestamps_iter(jnr.ffi.Pointer seq, jnr.ffi.Pointer times)
    • tsequenceset_find_timestamptz

      public static jnr.ffi.Pointer tsequenceset_find_timestamptz(jnr.ffi.Pointer ss, OffsetDateTime t)
    • tseqarr_normalize

      public static jnr.ffi.Pointer tseqarr_normalize(jnr.ffi.Pointer sequences, int count, jnr.ffi.Pointer newcount)
    • datum_distance

      public static double datum_distance(jnr.ffi.Pointer value1, jnr.ffi.Pointer value2, int basetype, short flags)
    • ensure_valid_tinstarr_gaps

      public static jnr.ffi.Pointer ensure_valid_tinstarr_gaps(jnr.ffi.Pointer instants, int count, boolean merge, double maxdist, jnr.ffi.Pointer maxt, jnr.ffi.Pointer nsplits)
    • ensure_valid_tseqarr

      public static boolean ensure_valid_tseqarr(jnr.ffi.Pointer sequences, int count)
    • synchronize_tsequenceset_tsequence

      public static boolean synchronize_tsequenceset_tsequence(jnr.ffi.Pointer ss, jnr.ffi.Pointer seq, int mode, jnr.ffi.Pointer inter1, jnr.ffi.Pointer inter2)
    • synchronize_tsequenceset_tsequenceset

      public static boolean synchronize_tsequenceset_tsequenceset(jnr.ffi.Pointer ss1, jnr.ffi.Pointer ss2, int mode, jnr.ffi.Pointer inter1, jnr.ffi.Pointer inter2)
    • intersection_tsequenceset_tinstant

      public static boolean intersection_tsequenceset_tinstant(jnr.ffi.Pointer ss, jnr.ffi.Pointer inst, jnr.ffi.Pointer inter1, jnr.ffi.Pointer inter2)
    • intersection_tinstant_tsequenceset

      public static boolean intersection_tinstant_tsequenceset(jnr.ffi.Pointer inst, jnr.ffi.Pointer ss, jnr.ffi.Pointer inter1, jnr.ffi.Pointer inter2)
    • intersection_tsequenceset_tdiscseq

      public static boolean intersection_tsequenceset_tdiscseq(jnr.ffi.Pointer ss, jnr.ffi.Pointer is, jnr.ffi.Pointer inter1, jnr.ffi.Pointer inter2)
    • intersection_tdiscseq_tsequenceset

      public static boolean intersection_tdiscseq_tsequenceset(jnr.ffi.Pointer is, jnr.ffi.Pointer ss, jnr.ffi.Pointer inter1, jnr.ffi.Pointer inter2)
    • intersection_tsequence_tsequenceset

      public static boolean intersection_tsequence_tsequenceset(jnr.ffi.Pointer seq, jnr.ffi.Pointer ss, int mode, jnr.ffi.Pointer inter1, jnr.ffi.Pointer inter2)
    • tsequenceset_to_string

      public static String tsequenceset_to_string(jnr.ffi.Pointer ss, int maxdd, jnr.ffi.Pointer value_out)
    • datum_textcat

      public static jnr.ffi.Pointer datum_textcat(jnr.ffi.Pointer l, jnr.ffi.Pointer r)
    • datum_lower

      public static jnr.ffi.Pointer datum_lower(jnr.ffi.Pointer value)
    • datum_upper

      public static jnr.ffi.Pointer datum_upper(jnr.ffi.Pointer value)
    • datum_initcap

      public static jnr.ffi.Pointer datum_initcap(jnr.ffi.Pointer value)
    • textfunc_ttext

      public static jnr.ffi.Pointer textfunc_ttext(jnr.ffi.Pointer temp, jnr.ffi.Pointer func)
    • textfunc_ttext_text

      public static jnr.ffi.Pointer textfunc_ttext_text(jnr.ffi.Pointer temp, jnr.ffi.Pointer value, jnr.ffi.Pointer func, boolean invert)
    • textfunc_ttext_ttext

      public static jnr.ffi.Pointer textfunc_ttext_ttext(jnr.ffi.Pointer temp1, jnr.ffi.Pointer temp2, jnr.ffi.Pointer func)
    • datum_as_wkb

      public static jnr.ffi.Pointer datum_as_wkb(jnr.ffi.Pointer value, int type, byte variant)
    • datum_as_hexwkb

      public static String datum_as_hexwkb(jnr.ffi.Pointer value, int type, byte variant, jnr.ffi.Pointer size)
    • type_from_wkb

      public static jnr.ffi.Pointer type_from_wkb(jnr.ffi.Pointer wkb, long size, int type)
    • type_from_hexwkb

      public static jnr.ffi.Pointer type_from_hexwkb(String hexwkb, long size, int type)
    • ensure_end_input

      public static boolean ensure_end_input(jnr.ffi.Pointer str, String type)
    • p_whitespace

      public static void p_whitespace(jnr.ffi.Pointer str)
    • p_delimchar

      public static boolean p_delimchar(jnr.ffi.Pointer str, String delim)
    • p_obrace

      public static boolean p_obrace(jnr.ffi.Pointer str)
    • ensure_obrace

      public static boolean ensure_obrace(jnr.ffi.Pointer str, String type)
    • p_cbrace

      public static boolean p_cbrace(jnr.ffi.Pointer str)
    • ensure_cbrace

      public static boolean ensure_cbrace(jnr.ffi.Pointer str, String type)
    • p_obracket

      public static boolean p_obracket(jnr.ffi.Pointer str)
    • p_cbracket

      public static boolean p_cbracket(jnr.ffi.Pointer str)
    • p_oparen

      public static boolean p_oparen(jnr.ffi.Pointer str)
    • ensure_oparen

      public static boolean ensure_oparen(jnr.ffi.Pointer str, String type)
    • p_cparen

      public static boolean p_cparen(jnr.ffi.Pointer str)
    • ensure_cparen

      public static boolean ensure_cparen(jnr.ffi.Pointer str, String type)
    • p_comma

      public static boolean p_comma(jnr.ffi.Pointer str)
    • basetype_parse

      public static boolean basetype_parse(jnr.ffi.Pointer str, int basetypid, String delim, jnr.ffi.Pointer result)
    • double_parse

      public static boolean double_parse(jnr.ffi.Pointer str, jnr.ffi.Pointer result)
    • elem_parse

      public static boolean elem_parse(jnr.ffi.Pointer str, int basetype, jnr.ffi.Pointer result)
    • set_parse

      public static jnr.ffi.Pointer set_parse(jnr.ffi.Pointer str, int basetype)
    • span_parse

      public static boolean span_parse(jnr.ffi.Pointer str, int spantype, boolean end, jnr.ffi.Pointer span)
    • spanset_parse

      public static jnr.ffi.Pointer spanset_parse(jnr.ffi.Pointer str, int spantype)
    • tbox_parse

      public static jnr.ffi.Pointer tbox_parse(jnr.ffi.Pointer str)
    • timestamp_parse

      public static OffsetDateTime timestamp_parse(jnr.ffi.Pointer str)
    • tinstant_parse

      public static jnr.ffi.Pointer tinstant_parse(jnr.ffi.Pointer str, int temptype, boolean end)
    • tdiscseq_parse

      public static jnr.ffi.Pointer tdiscseq_parse(jnr.ffi.Pointer str, int temptype)
    • tcontseq_parse

      public static jnr.ffi.Pointer tcontseq_parse(jnr.ffi.Pointer str, int temptype, int interp, boolean end)
    • tsequenceset_parse

      public static jnr.ffi.Pointer tsequenceset_parse(jnr.ffi.Pointer str, int temptype, int interp)
    • temporal_parse

      public static jnr.ffi.Pointer temporal_parse(jnr.ffi.Pointer str, int temptype)
    • datum_copy

      public static jnr.ffi.Pointer datum_copy(jnr.ffi.Pointer value, int typid)
    • datum_double

      public static double datum_double(jnr.ffi.Pointer d, int type)
    • double_datum

      public static jnr.ffi.Pointer double_datum(double d, int type)
    • bstring2bytea

      public static jnr.ffi.Pointer bstring2bytea(jnr.ffi.Pointer wkb, long size)
    • basetype_in

      public static boolean basetype_in(String str, int type, boolean end, jnr.ffi.Pointer result)
    • basetype_out

      public static String basetype_out(jnr.ffi.Pointer value, int type, int maxdd)
    • pfree_array

      public static void pfree_array(jnr.ffi.Pointer array, int count)
    • string_escape

      public static jnr.ffi.Pointer string_escape(String str, int quotes)
    • string_unescape

      public static long string_unescape(String str, jnr.ffi.Pointer result)
    • stringarr_to_string

      public static String stringarr_to_string(jnr.ffi.Pointer strings, int count, String prefix, String open, String close, int quotes, boolean spaces)
    • datumarr_sort

      public static void datumarr_sort(jnr.ffi.Pointer values, int count, int basetype)
    • tstzarr_sort

      public static void tstzarr_sort(jnr.ffi.Pointer times, int count)
    • spanarr_sort

      public static void spanarr_sort(jnr.ffi.Pointer spans, int count)
    • tinstarr_sort

      public static void tinstarr_sort(jnr.ffi.Pointer instants, int count)
    • tseqarr_sort

      public static void tseqarr_sort(jnr.ffi.Pointer sequences, int count)
    • datumarr_remove_duplicates

      public static int datumarr_remove_duplicates(jnr.ffi.Pointer values, int count, int basetype)
    • tstzarr_remove_duplicates

      public static int tstzarr_remove_duplicates(jnr.ffi.Pointer values, int count)
    • tinstarr_remove_duplicates

      public static int tinstarr_remove_duplicates(jnr.ffi.Pointer instants, int count)
    • datum_add

      public static jnr.ffi.Pointer datum_add(jnr.ffi.Pointer l, jnr.ffi.Pointer r, int type)
    • datum_sub

      public static jnr.ffi.Pointer datum_sub(jnr.ffi.Pointer l, jnr.ffi.Pointer r, int type)
    • datum_mul

      public static jnr.ffi.Pointer datum_mul(jnr.ffi.Pointer l, jnr.ffi.Pointer r, int type)
    • datum_div

      public static jnr.ffi.Pointer datum_div(jnr.ffi.Pointer l, jnr.ffi.Pointer r, int type)
    • datum_cmp

      public static int datum_cmp(jnr.ffi.Pointer l, jnr.ffi.Pointer r, int type)
    • datum_eq

      public static boolean datum_eq(jnr.ffi.Pointer l, jnr.ffi.Pointer r, int type)
    • datum_ne

      public static boolean datum_ne(jnr.ffi.Pointer l, jnr.ffi.Pointer r, int type)
    • datum_lt

      public static boolean datum_lt(jnr.ffi.Pointer l, jnr.ffi.Pointer r, int type)
    • datum_le

      public static boolean datum_le(jnr.ffi.Pointer l, jnr.ffi.Pointer r, int type)
    • datum_gt

      public static boolean datum_gt(jnr.ffi.Pointer l, jnr.ffi.Pointer r, int type)
    • datum_ge

      public static boolean datum_ge(jnr.ffi.Pointer l, jnr.ffi.Pointer r, int type)
    • datum2_eq

      public static jnr.ffi.Pointer datum2_eq(jnr.ffi.Pointer l, jnr.ffi.Pointer r, int type)
    • datum2_ne

      public static jnr.ffi.Pointer datum2_ne(jnr.ffi.Pointer l, jnr.ffi.Pointer r, int type)
    • datum2_lt

      public static jnr.ffi.Pointer datum2_lt(jnr.ffi.Pointer l, jnr.ffi.Pointer r, int type)
    • datum2_le

      public static jnr.ffi.Pointer datum2_le(jnr.ffi.Pointer l, jnr.ffi.Pointer r, int type)
    • datum2_gt

      public static jnr.ffi.Pointer datum2_gt(jnr.ffi.Pointer l, jnr.ffi.Pointer r, int type)
    • datum2_ge

      public static jnr.ffi.Pointer datum2_ge(jnr.ffi.Pointer l, jnr.ffi.Pointer r, int type)
    • hypot3d

      public static double hypot3d(double x, double y, double z)
    • date_in

      public static int date_in(String str)
    • date_larger

      public static int date_larger(int date1, int date2)
    • date_make

      public static int date_make(int year, int mon, int mday)
    • date_out

      public static String date_out(int date)
    • date_smaller

      public static int date_smaller(int date1, int date2)
    • float4_cmp

      public static int float4_cmp(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • float8_cmp

      public static int float8_cmp(double num1, double num2)
    • interval_cmp

      public static int interval_cmp(jnr.ffi.Pointer interv1, jnr.ffi.Pointer interv2)
    • interval_copy

      public static jnr.ffi.Pointer interval_copy(jnr.ffi.Pointer interv)
    • interval_eq

      public static boolean interval_eq(jnr.ffi.Pointer interv1, jnr.ffi.Pointer interv2)
    • interval_ge

      public static boolean interval_ge(jnr.ffi.Pointer interv1, jnr.ffi.Pointer interv2)
    • interval_gt

      public static boolean interval_gt(jnr.ffi.Pointer interv1, jnr.ffi.Pointer interv2)
    • interval_hash

      public static int interval_hash(jnr.ffi.Pointer interv)
    • interval_hash_extended

      public static long interval_hash_extended(jnr.ffi.Pointer interv, long seed)
    • interval_in

      public static jnr.ffi.Pointer interval_in(String str, int typmod)
    • interval_justify_days

      public static jnr.ffi.Pointer interval_justify_days(jnr.ffi.Pointer interv)
    • interval_justify_hours

      public static jnr.ffi.Pointer interval_justify_hours(jnr.ffi.Pointer interv)
    • interval_justify_interval

      public static jnr.ffi.Pointer interval_justify_interval(jnr.ffi.Pointer interv)
    • interval_larger

      public static jnr.ffi.Pointer interval_larger(jnr.ffi.Pointer interv1, jnr.ffi.Pointer interv2)
    • interval_le

      public static boolean interval_le(jnr.ffi.Pointer interv1, jnr.ffi.Pointer interv2)
    • interval_lt

      public static boolean interval_lt(jnr.ffi.Pointer interv1, jnr.ffi.Pointer interv2)
    • interval_ne

      public static boolean interval_ne(jnr.ffi.Pointer interv1, jnr.ffi.Pointer interv2)
    • interval_out

      public static String interval_out(jnr.ffi.Pointer interv)
    • interval_part

      public static double interval_part(jnr.ffi.Pointer interv, jnr.ffi.Pointer units)
    • interval_scale

      public static jnr.ffi.Pointer interval_scale(jnr.ffi.Pointer interv, int typmod)
    • interval_smaller

      public static jnr.ffi.Pointer interval_smaller(jnr.ffi.Pointer interv1, jnr.ffi.Pointer interv2)
    • interval_trunc

      public static jnr.ffi.Pointer interval_trunc(jnr.ffi.Pointer interv, jnr.ffi.Pointer units)
    • numeric

      public static jnr.ffi.Pointer numeric(jnr.ffi.Pointer num, int typmod)
    • numeric_abs

      public static jnr.ffi.Pointer numeric_abs(jnr.ffi.Pointer num)
    • numeric_add

      public static jnr.ffi.Pointer numeric_add(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • numeric_ceil

      public static jnr.ffi.Pointer numeric_ceil(jnr.ffi.Pointer num)
    • numeric_cmp

      public static int numeric_cmp(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • numeric_div

      public static jnr.ffi.Pointer numeric_div(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • numeric_div_trunc

      public static jnr.ffi.Pointer numeric_div_trunc(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • numeric_eq

      public static boolean numeric_eq(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • numeric_exp

      public static jnr.ffi.Pointer numeric_exp(jnr.ffi.Pointer num)
    • numeric_fac

      public static jnr.ffi.Pointer numeric_fac(long num)
    • numeric_floor

      public static jnr.ffi.Pointer numeric_floor(jnr.ffi.Pointer num)
    • numeric_gcd

      public static jnr.ffi.Pointer numeric_gcd(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • numeric_ge

      public static boolean numeric_ge(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • numeric_gt

      public static boolean numeric_gt(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • numeric_in

      public static jnr.ffi.Pointer numeric_in(String str, int typmod)
    • numeric_inc

      public static jnr.ffi.Pointer numeric_inc(jnr.ffi.Pointer num)
    • numeric_larger

      public static jnr.ffi.Pointer numeric_larger(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • numeric_lcm

      public static jnr.ffi.Pointer numeric_lcm(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • numeric_le

      public static boolean numeric_le(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • numeric_ln

      public static jnr.ffi.Pointer numeric_ln(jnr.ffi.Pointer num)
    • numeric_log

      public static jnr.ffi.Pointer numeric_log(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • numeric_lt

      public static boolean numeric_lt(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • numeric_min_scale

      public static int numeric_min_scale(jnr.ffi.Pointer num)
    • numeric_minus

      public static jnr.ffi.Pointer numeric_minus(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • numeric_mod

      public static jnr.ffi.Pointer numeric_mod(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • numeric_mul

      public static jnr.ffi.Pointer numeric_mul(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • numeric_ne

      public static boolean numeric_ne(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • numeric_out

      public static String numeric_out(jnr.ffi.Pointer num)
    • numeric_round

      public static jnr.ffi.Pointer numeric_round(jnr.ffi.Pointer num, int scale)
    • numeric_scale

      public static int numeric_scale(jnr.ffi.Pointer num)
    • numeric_sign

      public static jnr.ffi.Pointer numeric_sign(jnr.ffi.Pointer num)
    • numeric_smaller

      public static jnr.ffi.Pointer numeric_smaller(jnr.ffi.Pointer num1, jnr.ffi.Pointer num2)
    • numeric_sqrt

      public static jnr.ffi.Pointer numeric_sqrt(jnr.ffi.Pointer num)
    • numeric_trim_scale

      public static jnr.ffi.Pointer numeric_trim_scale(jnr.ffi.Pointer num)
    • numeric_trunc

      public static jnr.ffi.Pointer numeric_trunc(jnr.ffi.Pointer num, int scale)
    • numeric_uminus

      public static jnr.ffi.Pointer numeric_uminus(jnr.ffi.Pointer num)
    • numeric_uplus

      public static jnr.ffi.Pointer numeric_uplus(jnr.ffi.Pointer num)
    • icu_unicode_version

      public static jnr.ffi.Pointer icu_unicode_version()
    • text_concat

      public static jnr.ffi.Pointer text_concat(jnr.ffi.Pointer textarr, int count)
    • text_concat_ws

      public static jnr.ffi.Pointer text_concat_ws(jnr.ffi.Pointer textarr, int count, jnr.ffi.Pointer sep)
    • text_ge

      public static boolean text_ge(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • text_gt

      public static boolean text_gt(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • text_larger

      public static jnr.ffi.Pointer text_larger(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • text_le

      public static boolean text_le(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • text_left

      public static jnr.ffi.Pointer text_left(jnr.ffi.Pointer txt, int n)
    • text_lt

      public static boolean text_lt(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • text_pattern_ge

      public static boolean text_pattern_ge(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • text_pattern_gt

      public static boolean text_pattern_gt(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • text_pattern_le

      public static boolean text_pattern_le(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • text_pattern_lt

      public static boolean text_pattern_lt(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • text_replace

      public static jnr.ffi.Pointer text_replace(jnr.ffi.Pointer txt, jnr.ffi.Pointer from, jnr.ffi.Pointer to)
    • text_reverse

      public static jnr.ffi.Pointer text_reverse(jnr.ffi.Pointer txt)
    • text_right

      public static jnr.ffi.Pointer text_right(jnr.ffi.Pointer txt, int n)
    • text_smaller

      public static jnr.ffi.Pointer text_smaller(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • text_split_part

      public static jnr.ffi.Pointer text_split_part(jnr.ffi.Pointer txt, jnr.ffi.Pointer sep, int fldnum)
    • text_starts_with

      public static boolean text_starts_with(jnr.ffi.Pointer txt1, jnr.ffi.Pointer txt2)
    • text_substr

      public static jnr.ffi.Pointer text_substr(jnr.ffi.Pointer txt, int start, int length)
    • text_substr_no_len

      public static jnr.ffi.Pointer text_substr_no_len(jnr.ffi.Pointer txt, int start)
    • unicode_assigned

      public static boolean unicode_assigned(jnr.ffi.Pointer txt)
    • unicode_is_normalized

      public static boolean unicode_is_normalized(jnr.ffi.Pointer txt, jnr.ffi.Pointer fmt)
    • unicode_normalize_func

      public static jnr.ffi.Pointer unicode_normalize_func(jnr.ffi.Pointer txt, jnr.ffi.Pointer fmt)
    • unicode_version

      public static jnr.ffi.Pointer unicode_version()
    • unistr

      public static jnr.ffi.Pointer unistr(jnr.ffi.Pointer txt)
    • time_cmp

      public static int time_cmp(jnr.ffi.Pointer time1, jnr.ffi.Pointer time2)
    • time_eq

      public static boolean time_eq(jnr.ffi.Pointer time1, jnr.ffi.Pointer time2)
    • time_ge

      public static boolean time_ge(jnr.ffi.Pointer time1, jnr.ffi.Pointer time2)
    • time_gt

      public static boolean time_gt(jnr.ffi.Pointer time1, jnr.ffi.Pointer time2)
    • time_hash

      public static int time_hash(jnr.ffi.Pointer time)
    • time_hash_extended

      public static long time_hash_extended(jnr.ffi.Pointer time, int seed)
    • time_in

      public static jnr.ffi.Pointer time_in(String str, int typmod)
    • time_larger

      public static jnr.ffi.Pointer time_larger(jnr.ffi.Pointer time1, jnr.ffi.Pointer time2)
    • time_le

      public static boolean time_le(jnr.ffi.Pointer time1, jnr.ffi.Pointer time2)
    • time_lt

      public static boolean time_lt(jnr.ffi.Pointer time1, jnr.ffi.Pointer time2)
    • time_ne

      public static boolean time_ne(jnr.ffi.Pointer time1, jnr.ffi.Pointer time2)
    • time_out

      public static String time_out(jnr.ffi.Pointer time)
    • time_part

      public static double time_part(jnr.ffi.Pointer time, jnr.ffi.Pointer units)
    • time_scale

      public static jnr.ffi.Pointer time_scale(jnr.ffi.Pointer date, int typmod)
    • time_smaller

      public static jnr.ffi.Pointer time_smaller(jnr.ffi.Pointer time1, jnr.ffi.Pointer time2)
    • eq_timestamptz_timestamptz

      public static boolean eq_timestamptz_timestamptz(OffsetDateTime tstz1, OffsetDateTime tstz2)
    • timestamp_age

      public static jnr.ffi.Pointer timestamp_age(LocalDateTime ts1, LocalDateTime ts2)
    • timestamp_at_local

      public static OffsetDateTime timestamp_at_local(LocalDateTime ts)
    • timestamp_bin

      public static LocalDateTime timestamp_bin(LocalDateTime ts, jnr.ffi.Pointer stride, LocalDateTime origin)
    • timestamp_hash

      public static int timestamp_hash(LocalDateTime ts)
    • timestamp_hash_extended

      public static long timestamp_hash_extended(OffsetDateTime tstz, long seed)
    • timestamp_in

      public static LocalDateTime timestamp_in(String str, int typmod)
    • timestamp_izone

      public static OffsetDateTime timestamp_izone(LocalDateTime ts, jnr.ffi.Pointer zone)
    • timestamp_larger

      public static LocalDateTime timestamp_larger(LocalDateTime ts1, LocalDateTime ts2)
    • timestamp_out

      public static String timestamp_out(LocalDateTime ts)
    • timestamp_part

      public static double timestamp_part(LocalDateTime ts, jnr.ffi.Pointer units)
    • timestamp_scale

      public static LocalDateTime timestamp_scale(LocalDateTime ts, int typmod)
    • timestamp_smaller

      public static LocalDateTime timestamp_smaller(LocalDateTime ts1, LocalDateTime ts2)
    • timestamp_trunc

      public static LocalDateTime timestamp_trunc(LocalDateTime ts, jnr.ffi.Pointer units)
    • timestamp_zone

      public static OffsetDateTime timestamp_zone(LocalDateTime ts, jnr.ffi.Pointer zone)
    • timestamptz_age

      public static jnr.ffi.Pointer timestamptz_age(OffsetDateTime tstz1, OffsetDateTime tstz2)
    • timestamptz_bin

      public static OffsetDateTime timestamptz_bin(OffsetDateTime tstz, jnr.ffi.Pointer stride, OffsetDateTime origin)
    • timestamptz_hash

      public static int timestamptz_hash(OffsetDateTime tstz)
    • timestamptz_hash_extended

      public static long timestamptz_hash_extended(OffsetDateTime tstz, long seed)
    • timestamptz_in

      public static OffsetDateTime timestamptz_in(String str, int typmod)
    • timestamptz_izone

      public static LocalDateTime timestamptz_izone(OffsetDateTime tstz, jnr.ffi.Pointer zone)
    • timestamptz_out

      public static String timestamptz_out(OffsetDateTime tstz)
    • timestamptz_overlaps

      public static boolean timestamptz_overlaps(OffsetDateTime ts1, OffsetDateTime te1, OffsetDateTime ts2, OffsetDateTime te2)
    • timestamptz_part

      public static double timestamptz_part(OffsetDateTime tstz, jnr.ffi.Pointer units)
    • timestamptz_scale

      public static OffsetDateTime timestamptz_scale(OffsetDateTime tstz, int typmod)
    • timestamptz_trunc

      public static OffsetDateTime timestamptz_trunc(OffsetDateTime tstz, jnr.ffi.Pointer units)
    • timestamptz_trunc_zone

      public static OffsetDateTime timestamptz_trunc_zone(OffsetDateTime tstz, jnr.ffi.Pointer units, jnr.ffi.Pointer zone)
    • timestamptz_zone

      public static LocalDateTime timestamptz_zone(OffsetDateTime tstz, jnr.ffi.Pointer zone)