diff --git a/flink-processor/docs/parity-status.md b/flink-processor/docs/parity-status.md index 05a0797..bcfe7f4 100644 --- a/flink-processor/docs/parity-status.md +++ b/flink-processor/docs/parity-status.md @@ -4,7 +4,7 @@ Generated 2026-05-29 by `tools/parity/parity_audit.py`. The MobilityFlink MEOS facade (`org.mobilitydb.flink.meos.MeosOps*`) exposes MEOS C functions to Flink through JMEOS. This audit measures, per type family, the share of the **MEOS public C API** that the facade exposes and that JMEOS binds. -**Headline.** The facade exposes **2153 of 2153 public MEOS functions (100.0%)**. The MEOS public surface (`meos/include/meos*.h`, excluding internal headers) is 2158 functions; JMEOS binds 2153 of them. 0 bindable functions are not exposed (listed in §3). +**Headline.** The facade exposes **2158 of 2158 public MEOS functions (100.0%)**. The MEOS public surface (`meos/include/meos*.h`, excluding internal headers) is 2158 functions; JMEOS binds 2158 of them. 0 bindable functions are not exposed (listed in §3). Coverage is **static**: a function counts as covered when the facade declares a method of the same name and arity that delegates to a JMEOS export. @@ -16,19 +16,19 @@ Per-family runtime behaviour is asserted by `src/test/java/org/mobilitydb/flink/ - **Numerator**: `public static` methods on the generated `MeosOps*` facade whose name is also a `functions.GeneratedFunctions` export in the bundled JMEOS jar. -- **JMEOS jar**: jar/JMEOS.jar exports 2699 static methods. +- **JMEOS jar**: jar/JMEOS.jar exports 2743 static methods. ## 2. Per-family coverage of the public MEOS surface | Family (header) | Public ∩ JMEOS | Exposed | Missing | Coverage | |---|---:|---:|---:|---:| -| core temporal / set / span / spanset / tbox (`meos.h`) | 1274 | 1274 | 0 | 100.0% | +| core temporal / set / span / spanset / tbox (`meos.h`) | 1279 | 1279 | 0 | 100.0% | | geo (tgeo / tpoint / stbox) (`meos_geo.h`) | 419 | 419 | 0 | 100.0% | | cbuffer (`meos_cbuffer.h`) | 173 | 173 | 0 | 100.0% | | npoint (`meos_npoint.h`) | 118 | 118 | 0 | 100.0% | | pose (`meos_pose.h`) | 101 | 101 | 0 | 100.0% | | rgeo (`meos_rgeo.h`) | 68 | 68 | 0 | 100.0% | -| **total** | **2153** | **2153** | **0** | **100.0%** | +| **total** | **2158** | **2158** | **0** | **100.0%** | ## 3. Bindable MEOS functions not exposed by the facade @@ -39,7 +39,7 @@ Per-family runtime behaviour is asserted by `src/test/java/org/mobilitydb/flink/ The facade is also matched against the underlying MEOS C symbol of each addressable `CREATE FUNCTION` in `mobilitydb/sql/**/*.in.sql` (PG-only sections and helper symbols bucketed out; 876 out-of-scope, 113 SQL/plpgsql-composed functions with no single C symbol). Functions the SQL layer implements through the internal MEOS headers (`meos_internal*.h`) are exposed via `MeosOpsSqlSurface`. -- Addressable distinct C symbols: **1336**; bound by JMEOS: **1065**; exposed by the facade: **1065** (100.0% of the JMEOS-bindable SQL surface). +- Addressable distinct C symbols: **1336**; bound by JMEOS: **1066**; exposed by the facade: **1066** (100.0% of the JMEOS-bindable SQL surface). -- The remaining **271** addressable C symbols are not exported by JMEOS under the name the SQL layer's extension wrapper uses; the wrapper names differ from the MEOS function names they call. +- The remaining **270** addressable C symbols are not exported by JMEOS under the name the SQL layer's extension wrapper uses; the wrapper names differ from the MEOS function names they call. diff --git a/flink-processor/jar/JMEOS.jar b/flink-processor/jar/JMEOS.jar index 2bc69e5..b970140 100644 Binary files a/flink-processor/jar/JMEOS.jar and b/flink-processor/jar/JMEOS.jar differ diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsBigintSet.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsBigintSet.java index b69d5a1..3cf5098 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsBigintSet.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsBigintSet.java @@ -21,7 +21,7 @@ private MeosOpsBigintSet() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer bigintset_make(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer bigintset_make(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintset_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer bigintset_make(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int bigintset_end_value(Pointer arg0) { + public static long bigintset_end_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintset_end_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static int bigintset_end_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer bigintset_shift_scale(Pointer arg0, int arg1, int arg2, int arg3, int arg4) { + public static jnr.ffi.Pointer bigintset_shift_scale(jnr.ffi.Pointer arg0, long arg1, long arg2, boolean arg3, boolean arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintset_shift_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer bigintset_shift_scale(Pointer arg0, int arg1, int arg2, in *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int bigintset_start_value(Pointer arg0) { + public static long bigintset_start_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintset_start_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,12 +77,12 @@ public static int bigintset_start_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int bigintset_value_n(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer bigintset_value_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintset_value_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.bigintset_value_n(arg0, arg1, arg2); + return GeneratedFunctions.bigintset_value_n(arg0, arg1); } /** @@ -91,7 +91,7 @@ public static int bigintset_value_n(Pointer arg0, int arg1, Pointer arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer bigintset_values(Pointer arg0) { + public static jnr.ffi.Pointer bigintset_values(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintset_values requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer bigintset_values(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer bigintset_in(String arg0) { + public static jnr.ffi.Pointer bigintset_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintset_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static Pointer bigintset_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String bigintset_out(Pointer arg0) { + public static java.lang.String bigintset_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintset_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsBigintSpan.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsBigintSpan.java index 44fc324..d9d4ca6 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsBigintSpan.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsBigintSpan.java @@ -21,7 +21,7 @@ private MeosOpsBigintSpan() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer bigintspan_make(int arg0, int arg1, int arg2, int arg3) { + public static jnr.ffi.Pointer bigintspan_make(long arg0, long arg1, boolean arg2, boolean arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintspan_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer bigintspan_make(int arg0, int arg1, int arg2, int arg3) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer bigintspan_bins(Pointer arg0, int arg1, int arg2, Pointer arg3) { + public static jnr.ffi.Pointer bigintspan_bins(jnr.ffi.Pointer arg0, long arg1, long arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintspan_bins requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer bigintspan_bins(Pointer arg0, int arg1, int arg2, Pointer *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer bigintspan_expand(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer bigintspan_expand(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintspan_expand requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer bigintspan_expand(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int bigintspan_lower(Pointer arg0) { + public static long bigintspan_lower(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintspan_lower requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static int bigintspan_lower(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer bigintspan_shift_scale(Pointer arg0, int arg1, int arg2, int arg3, int arg4) { + public static jnr.ffi.Pointer bigintspan_shift_scale(jnr.ffi.Pointer arg0, long arg1, long arg2, boolean arg3, boolean arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintspan_shift_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer bigintspan_shift_scale(Pointer arg0, int arg1, int arg2, i *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int bigintspan_upper(Pointer arg0) { + public static long bigintspan_upper(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintspan_upper requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static int bigintspan_upper(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int bigintspan_width(Pointer arg0) { + public static long bigintspan_width(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintspan_width requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static int bigintspan_width(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer bigintspan_in(String arg0) { + public static jnr.ffi.Pointer bigintspan_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintspan_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer bigintspan_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String bigintspan_out(Pointer arg0) { + public static java.lang.String bigintspan_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintspan_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsBigintSpanSet.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsBigintSpanSet.java index ede55b0..d66dc3b 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsBigintSpanSet.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsBigintSpanSet.java @@ -21,7 +21,7 @@ private MeosOpsBigintSpanSet() { /* utility */ } *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer bigintspanset_bins(Pointer arg0, int arg1, int arg2, Pointer arg3) { + public static jnr.ffi.Pointer bigintspanset_bins(jnr.ffi.Pointer arg0, long arg1, long arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintspanset_bins requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer bigintspanset_bins(Pointer arg0, int arg1, int arg2, Point *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int bigintspanset_lower(Pointer arg0) { + public static long bigintspanset_lower(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintspanset_lower requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static int bigintspanset_lower(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer bigintspanset_shift_scale(Pointer arg0, int arg1, int arg2, int arg3, int arg4) { + public static jnr.ffi.Pointer bigintspanset_shift_scale(jnr.ffi.Pointer arg0, long arg1, long arg2, boolean arg3, boolean arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintspanset_shift_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer bigintspanset_shift_scale(Pointer arg0, int arg1, int arg2 *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int bigintspanset_upper(Pointer arg0) { + public static long bigintspanset_upper(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintspanset_upper requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static int bigintspanset_upper(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int bigintspanset_width(Pointer arg0, int arg1) { + public static long bigintspanset_width(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintspanset_width requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static int bigintspanset_width(Pointer arg0, int arg1) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer bigintspanset_in(String arg0) { + public static jnr.ffi.Pointer bigintspanset_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintspanset_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer bigintspanset_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String bigintspanset_out(Pointer arg0) { + public static java.lang.String bigintspanset_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigintspanset_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsCbufferSet.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsCbufferSet.java index a438f9e..6626f2b 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsCbufferSet.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsCbufferSet.java @@ -21,7 +21,7 @@ private MeosOpsCbufferSet() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer cbufferset_make(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer cbufferset_make(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbufferset_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer cbufferset_make(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer cbufferset_end_value(Pointer arg0) { + public static jnr.ffi.Pointer cbufferset_end_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbufferset_end_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer cbufferset_end_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer cbufferset_start_value(Pointer arg0) { + public static jnr.ffi.Pointer cbufferset_start_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbufferset_start_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,12 +63,12 @@ public static Pointer cbufferset_start_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int cbufferset_value_n(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer cbufferset_value_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbufferset_value_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.cbufferset_value_n(arg0, arg1, arg2); + return GeneratedFunctions.cbufferset_value_n(arg0, arg1); } /** @@ -77,7 +77,7 @@ public static int cbufferset_value_n(Pointer arg0, int arg1, Pointer arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer cbufferset_values(Pointer arg0) { + public static jnr.ffi.Pointer cbufferset_values(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbufferset_values requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer cbufferset_values(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer cbufferset_in(String arg0) { + public static jnr.ffi.Pointer cbufferset_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbufferset_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer cbufferset_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String cbufferset_out(Pointer arg0, int arg1) { + public static java.lang.String cbufferset_out(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbufferset_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsDateSet.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsDateSet.java index 5daa468..c2d6fa3 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsDateSet.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsDateSet.java @@ -21,7 +21,7 @@ private MeosOpsDateSet() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer dateset_make(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer dateset_make(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "dateset_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer dateset_make(Pointer arg0, int arg1) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer dateset_to_tstzset(Pointer arg0) { + public static jnr.ffi.Pointer dateset_to_tstzset(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "dateset_to_tstzset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer dateset_to_tstzset(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int dateset_end_value(Pointer arg0) { + public static int dateset_end_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "dateset_end_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static int dateset_end_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer dateset_shift_scale(Pointer arg0, int arg1, int arg2, int arg3, int arg4) { + public static jnr.ffi.Pointer dateset_shift_scale(jnr.ffi.Pointer arg0, int arg1, int arg2, boolean arg3, boolean arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "dateset_shift_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer dateset_shift_scale(Pointer arg0, int arg1, int arg2, int *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int dateset_start_value(Pointer arg0) { + public static int dateset_start_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "dateset_start_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,12 +91,12 @@ public static int dateset_start_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int dateset_value_n(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer dateset_value_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "dateset_value_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.dateset_value_n(arg0, arg1, arg2); + return GeneratedFunctions.dateset_value_n(arg0, arg1); } /** @@ -105,7 +105,7 @@ public static int dateset_value_n(Pointer arg0, int arg1, Pointer arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer dateset_values(Pointer arg0) { + public static jnr.ffi.Pointer dateset_values(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "dateset_values requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static Pointer dateset_values(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer dateset_in(String arg0) { + public static jnr.ffi.Pointer dateset_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "dateset_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer dateset_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String dateset_out(Pointer arg0) { + public static java.lang.String dateset_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "dateset_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsDateSpan.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsDateSpan.java index c8bf3c0..4288d5d 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsDateSpan.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsDateSpan.java @@ -21,7 +21,7 @@ private MeosOpsDateSpan() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer datespan_make(int arg0, int arg1, int arg2, int arg3) { + public static jnr.ffi.Pointer datespan_make(int arg0, int arg1, boolean arg2, boolean arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "datespan_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer datespan_make(int arg0, int arg1, int arg2, int arg3) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer datespan_to_tstzspan(Pointer arg0) { + public static jnr.ffi.Pointer datespan_to_tstzspan(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "datespan_to_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer datespan_to_tstzspan(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer datespan_bins(Pointer arg0, Pointer arg1, int arg2, Pointer arg3) { + public static jnr.ffi.Pointer datespan_bins(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, int arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "datespan_bins requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer datespan_bins(Pointer arg0, Pointer arg1, int arg2, Pointe *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer datespan_duration(Pointer arg0) { + public static jnr.ffi.Pointer datespan_duration(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "datespan_duration requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer datespan_duration(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int datespan_lower(Pointer arg0) { + public static int datespan_lower(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "datespan_lower requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static int datespan_lower(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer datespan_shift_scale(Pointer arg0, int arg1, int arg2, int arg3, int arg4) { + public static jnr.ffi.Pointer datespan_shift_scale(jnr.ffi.Pointer arg0, int arg1, int arg2, boolean arg3, boolean arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "datespan_shift_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer datespan_shift_scale(Pointer arg0, int arg1, int arg2, int *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int datespan_upper(Pointer arg0) { + public static int datespan_upper(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "datespan_upper requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static int datespan_upper(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer datespan_in(String arg0) { + public static jnr.ffi.Pointer datespan_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "datespan_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer datespan_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String datespan_out(Pointer arg0) { + public static java.lang.String datespan_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "datespan_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsDateSpanSet.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsDateSpanSet.java index 56d1067..9cedda0 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsDateSpanSet.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsDateSpanSet.java @@ -21,7 +21,7 @@ private MeosOpsDateSpanSet() { /* utility */ } *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer datespanset_to_tstzspanset(Pointer arg0) { + public static jnr.ffi.Pointer datespanset_to_tstzspanset(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "datespanset_to_tstzspanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer datespanset_to_tstzspanset(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer datespanset_bins(Pointer arg0, Pointer arg1, int arg2, Pointer arg3) { + public static jnr.ffi.Pointer datespanset_bins(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, int arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "datespanset_bins requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,12 +49,12 @@ public static Pointer datespanset_bins(Pointer arg0, Pointer arg1, int arg2, Poi *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int datespanset_date_n(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer datespanset_date_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "datespanset_date_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.datespanset_date_n(arg0, arg1, arg2); + return GeneratedFunctions.datespanset_date_n(arg0, arg1); } /** @@ -63,7 +63,7 @@ public static int datespanset_date_n(Pointer arg0, int arg1, Pointer arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer datespanset_dates(Pointer arg0) { + public static jnr.ffi.Pointer datespanset_dates(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "datespanset_dates requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer datespanset_dates(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer datespanset_duration(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer datespanset_duration(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "datespanset_duration requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer datespanset_duration(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int datespanset_end_date(Pointer arg0) { + public static int datespanset_end_date(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "datespanset_end_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static int datespanset_end_date(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int datespanset_num_dates(Pointer arg0) { + public static int datespanset_num_dates(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "datespanset_num_dates requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static int datespanset_num_dates(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer datespanset_shift_scale(Pointer arg0, int arg1, int arg2, int arg3, int arg4) { + public static jnr.ffi.Pointer datespanset_shift_scale(jnr.ffi.Pointer arg0, int arg1, int arg2, boolean arg3, boolean arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "datespanset_shift_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer datespanset_shift_scale(Pointer arg0, int arg1, int arg2, *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int datespanset_start_date(Pointer arg0) { + public static int datespanset_start_date(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "datespanset_start_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static int datespanset_start_date(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer datespanset_in(String arg0) { + public static jnr.ffi.Pointer datespanset_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "datespanset_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static Pointer datespanset_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String datespanset_out(Pointer arg0) { + public static java.lang.String datespanset_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "datespanset_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFloatSet.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFloatSet.java index 59b190a..1786693 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFloatSet.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFloatSet.java @@ -21,7 +21,7 @@ private MeosOpsFloatSet() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer floatset_make(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer floatset_make(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatset_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer floatset_make(Pointer arg0, int arg1) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer floatset_to_intset(Pointer arg0) { + public static jnr.ffi.Pointer floatset_to_intset(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatset_to_intset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer floatset_to_intset(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatset_ceil(Pointer arg0) { + public static jnr.ffi.Pointer floatset_ceil(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatset_ceil requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer floatset_ceil(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatset_degrees(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer floatset_degrees(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatset_degrees requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer floatset_degrees(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double floatset_end_value(Pointer arg0) { + public static double floatset_end_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatset_end_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static double floatset_end_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatset_floor(Pointer arg0) { + public static jnr.ffi.Pointer floatset_floor(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatset_floor requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer floatset_floor(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatset_radians(Pointer arg0) { + public static jnr.ffi.Pointer floatset_radians(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatset_radians requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static Pointer floatset_radians(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatset_shift_scale(Pointer arg0, double arg1, double arg2, int arg3, int arg4) { + public static jnr.ffi.Pointer floatset_shift_scale(jnr.ffi.Pointer arg0, double arg1, double arg2, boolean arg3, boolean arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatset_shift_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer floatset_shift_scale(Pointer arg0, double arg1, double arg *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double floatset_start_value(Pointer arg0) { + public static double floatset_start_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatset_start_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,12 +147,12 @@ public static double floatset_start_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int floatset_value_n(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer floatset_value_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatset_value_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.floatset_value_n(arg0, arg1, arg2); + return GeneratedFunctions.floatset_value_n(arg0, arg1); } /** @@ -161,7 +161,7 @@ public static int floatset_value_n(Pointer arg0, int arg1, Pointer arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatset_values(Pointer arg0) { + public static jnr.ffi.Pointer floatset_values(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatset_values requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static Pointer floatset_values(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer floatset_in(String arg0) { + public static jnr.ffi.Pointer floatset_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatset_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static Pointer floatset_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String floatset_out(Pointer arg0, int arg1) { + public static java.lang.String floatset_out(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatset_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFloatSpan.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFloatSpan.java index c41d8ca..824766c 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFloatSpan.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFloatSpan.java @@ -21,7 +21,7 @@ private MeosOpsFloatSpan() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer floatspan_make(double arg0, double arg1, int arg2, int arg3) { + public static jnr.ffi.Pointer floatspan_make(double arg0, double arg1, boolean arg2, boolean arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspan_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer floatspan_make(double arg0, double arg1, int arg2, int arg *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer floatspan_to_intspan(Pointer arg0) { + public static jnr.ffi.Pointer floatspan_to_intspan(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspan_to_intspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer floatspan_to_intspan(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatspan_bins(Pointer arg0, double arg1, double arg2, Pointer arg3) { + public static jnr.ffi.Pointer floatspan_bins(jnr.ffi.Pointer arg0, double arg1, double arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspan_bins requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer floatspan_bins(Pointer arg0, double arg1, double arg2, Poi *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatspan_ceil(Pointer arg0) { + public static jnr.ffi.Pointer floatspan_ceil(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspan_ceil requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer floatspan_ceil(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatspan_degrees(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer floatspan_degrees(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspan_degrees requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer floatspan_degrees(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatspan_expand(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer floatspan_expand(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspan_expand requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer floatspan_expand(Pointer arg0, double arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatspan_floor(Pointer arg0) { + public static jnr.ffi.Pointer floatspan_floor(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspan_floor requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static Pointer floatspan_floor(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double floatspan_lower(Pointer arg0) { + public static double floatspan_lower(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspan_lower requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static double floatspan_lower(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatspan_radians(Pointer arg0) { + public static jnr.ffi.Pointer floatspan_radians(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspan_radians requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static Pointer floatspan_radians(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatspan_round(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer floatspan_round(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspan_round requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static Pointer floatspan_round(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatspan_shift_scale(Pointer arg0, double arg1, double arg2, int arg3, int arg4) { + public static jnr.ffi.Pointer floatspan_shift_scale(jnr.ffi.Pointer arg0, double arg1, double arg2, boolean arg3, boolean arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspan_shift_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static Pointer floatspan_shift_scale(Pointer arg0, double arg1, double ar *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double floatspan_upper(Pointer arg0) { + public static double floatspan_upper(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspan_upper requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static double floatspan_upper(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double floatspan_width(Pointer arg0) { + public static double floatspan_width(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspan_width requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -203,7 +203,7 @@ public static double floatspan_width(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer floatspan_in(String arg0) { + public static jnr.ffi.Pointer floatspan_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspan_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static Pointer floatspan_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String floatspan_out(Pointer arg0, int arg1) { + public static java.lang.String floatspan_out(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspan_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFloatSpanSet.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFloatSpanSet.java index de8f76e..38bf45b 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFloatSpanSet.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFloatSpanSet.java @@ -21,7 +21,7 @@ private MeosOpsFloatSpanSet() { /* utility */ } *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer floatspanset_to_intspanset(Pointer arg0) { + public static jnr.ffi.Pointer floatspanset_to_intspanset(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspanset_to_intspanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer floatspanset_to_intspanset(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatspanset_bins(Pointer arg0, double arg1, double arg2, Pointer arg3) { + public static jnr.ffi.Pointer floatspanset_bins(jnr.ffi.Pointer arg0, double arg1, double arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspanset_bins requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer floatspanset_bins(Pointer arg0, double arg1, double arg2, *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatspanset_ceil(Pointer arg0) { + public static jnr.ffi.Pointer floatspanset_ceil(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspanset_ceil requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer floatspanset_ceil(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatspanset_degrees(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer floatspanset_degrees(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspanset_degrees requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer floatspanset_degrees(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatspanset_floor(Pointer arg0) { + public static jnr.ffi.Pointer floatspanset_floor(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspanset_floor requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer floatspanset_floor(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double floatspanset_lower(Pointer arg0) { + public static double floatspanset_lower(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspanset_lower requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static double floatspanset_lower(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatspanset_radians(Pointer arg0) { + public static jnr.ffi.Pointer floatspanset_radians(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspanset_radians requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static Pointer floatspanset_radians(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatspanset_round(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer floatspanset_round(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspanset_round requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer floatspanset_round(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer floatspanset_shift_scale(Pointer arg0, double arg1, double arg2, int arg3, int arg4) { + public static jnr.ffi.Pointer floatspanset_shift_scale(jnr.ffi.Pointer arg0, double arg1, double arg2, boolean arg3, boolean arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspanset_shift_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static Pointer floatspanset_shift_scale(Pointer arg0, double arg1, double *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double floatspanset_upper(Pointer arg0) { + public static double floatspanset_upper(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspanset_upper requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static double floatspanset_upper(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double floatspanset_width(Pointer arg0, int arg1) { + public static double floatspanset_width(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspanset_width requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static double floatspanset_width(Pointer arg0, int arg1) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer floatspanset_in(String arg0) { + public static jnr.ffi.Pointer floatspanset_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspanset_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static Pointer floatspanset_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String floatspanset_out(Pointer arg0, int arg1) { + public static java.lang.String floatspanset_out(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "floatspanset_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreeCbuffer.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreeCbuffer.java index 9e554e8..f218a4d 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreeCbuffer.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreeCbuffer.java @@ -22,7 +22,7 @@ private MeosOpsFreeCbuffer() { /* utility */ } *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int cbuffer_cmp(Pointer arg0, Pointer arg1) { + public static int cbuffer_cmp(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_cmp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static int cbuffer_cmp(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer cbuffer_copy(Pointer arg0) { + public static jnr.ffi.Pointer cbuffer_copy(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_copy requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -48,7 +48,7 @@ public static Pointer cbuffer_copy(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int cbuffer_eq(Pointer arg0, Pointer arg1) { + public static boolean cbuffer_eq(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_eq requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -61,7 +61,7 @@ public static int cbuffer_eq(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int cbuffer_ge(Pointer arg0, Pointer arg1) { + public static boolean cbuffer_ge(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_ge requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -74,7 +74,7 @@ public static int cbuffer_ge(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int cbuffer_gt(Pointer arg0, Pointer arg1) { + public static boolean cbuffer_gt(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_gt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -87,7 +87,7 @@ public static int cbuffer_gt(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int cbuffer_hash(Pointer arg0) { + public static int cbuffer_hash(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_hash requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -100,7 +100,7 @@ public static int cbuffer_hash(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int cbuffer_hash_extended(Pointer arg0, int arg1) { + public static long cbuffer_hash_extended(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_hash_extended requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -113,7 +113,7 @@ public static int cbuffer_hash_extended(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int cbuffer_le(Pointer arg0, Pointer arg1) { + public static boolean cbuffer_le(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_le requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -126,7 +126,7 @@ public static int cbuffer_le(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int cbuffer_lt(Pointer arg0, Pointer arg1) { + public static boolean cbuffer_lt(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_lt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -139,7 +139,7 @@ public static int cbuffer_lt(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: make/from_base of instant/scalar

*/ - public static Pointer cbuffer_make(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer cbuffer_make(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -152,7 +152,7 @@ public static Pointer cbuffer_make(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int cbuffer_ne(Pointer arg0, Pointer arg1) { + public static boolean cbuffer_ne(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_ne requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -165,7 +165,7 @@ public static int cbuffer_ne(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int cbuffer_nsame(Pointer arg0, Pointer arg1) { + public static boolean cbuffer_nsame(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_nsame requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -178,7 +178,7 @@ public static int cbuffer_nsame(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer cbuffer_point(Pointer arg0) { + public static jnr.ffi.Pointer cbuffer_point(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_point requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -191,7 +191,7 @@ public static Pointer cbuffer_point(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static double cbuffer_radius(Pointer arg0) { + public static double cbuffer_radius(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_radius requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -204,7 +204,7 @@ public static double cbuffer_radius(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: transform/normalize (pure)

*/ - public static Pointer cbuffer_round(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer cbuffer_round(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_round requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static Pointer cbuffer_round(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int cbuffer_same(Pointer arg0, Pointer arg1) { + public static boolean cbuffer_same(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_same requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -230,7 +230,7 @@ public static int cbuffer_same(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static void cbuffer_set_srid(Pointer arg0, int arg1) { + public static void cbuffer_set_srid(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_set_srid requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -243,7 +243,7 @@ public static void cbuffer_set_srid(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int cbuffer_srid(Pointer arg0) { + public static int cbuffer_srid(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_srid requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -256,7 +256,7 @@ public static int cbuffer_srid(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer cbuffer_timestamptz_to_stbox(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer cbuffer_timestamptz_to_stbox(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_timestamptz_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -269,7 +269,7 @@ public static Pointer cbuffer_timestamptz_to_stbox(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer cbuffer_to_geom(Pointer arg0) { + public static jnr.ffi.Pointer cbuffer_to_geom(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_to_geom requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -282,7 +282,7 @@ public static Pointer cbuffer_to_geom(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer cbuffer_to_set(Pointer arg0) { + public static jnr.ffi.Pointer cbuffer_to_set(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_to_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -295,7 +295,7 @@ public static Pointer cbuffer_to_set(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer cbuffer_to_stbox(Pointer arg0) { + public static jnr.ffi.Pointer cbuffer_to_stbox(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -308,7 +308,7 @@ public static Pointer cbuffer_to_stbox(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer cbuffer_transform(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer cbuffer_transform(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_transform requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -321,7 +321,7 @@ public static Pointer cbuffer_transform(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer cbuffer_transform_pipeline(Pointer arg0, String arg1, int arg2, int arg3) { + public static jnr.ffi.Pointer cbuffer_transform_pipeline(jnr.ffi.Pointer arg0, java.lang.String arg1, int arg2, boolean arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_transform_pipeline requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -334,7 +334,7 @@ public static Pointer cbuffer_transform_pipeline(Pointer arg0, String arg1, int *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer cbuffer_tstzspan_to_stbox(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer cbuffer_tstzspan_to_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_tstzspan_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -347,7 +347,7 @@ public static Pointer cbuffer_tstzspan_to_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer cbuffer_union_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer cbuffer_union_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_union_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -360,7 +360,7 @@ public static Pointer cbuffer_union_transfn(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: transform/normalize (pure)

*/ - public static Pointer cbufferarr_round(Pointer arg0, int arg1, int arg2) { + public static jnr.ffi.Pointer cbufferarr_round(jnr.ffi.Pointer arg0, int arg1, int arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbufferarr_round requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -373,7 +373,7 @@ public static Pointer cbufferarr_round(Pointer arg0, int arg1, int arg2) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer cbufferarr_to_geom(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer cbufferarr_to_geom(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbufferarr_to_geom requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -386,7 +386,7 @@ public static Pointer cbufferarr_to_geom(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 scalars (box/span algebra)

*/ - public static int contained_cbuffer_set(Pointer arg0, Pointer arg1) { + public static boolean contained_cbuffer_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_cbuffer_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -399,7 +399,7 @@ public static int contained_cbuffer_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 scalars (box/span algebra)

*/ - public static int contains_cbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static int contains_cbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_cbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -412,7 +412,7 @@ public static int contains_cbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_set_cbuffer(Pointer arg0, Pointer arg1) { + public static boolean contains_set_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_set_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -425,7 +425,7 @@ public static int contains_set_cbuffer(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int covers_cbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static int covers_cbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "covers_cbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -438,7 +438,7 @@ public static int covers_cbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int disjoint_cbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static int disjoint_cbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "disjoint_cbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -451,7 +451,7 @@ public static int disjoint_cbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int dwithin_cbuffer_cbuffer(Pointer arg0, Pointer arg1, double arg2) { + public static int dwithin_cbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "dwithin_cbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -464,7 +464,7 @@ public static int dwithin_cbuffer_cbuffer(Pointer arg0, Pointer arg1, double arg *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geom_to_cbuffer(Pointer arg0) { + public static jnr.ffi.Pointer geom_to_cbuffer(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_to_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -477,7 +477,7 @@ public static Pointer geom_to_cbuffer(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_set_cbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer intersection_set_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_set_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -490,7 +490,7 @@ public static Pointer intersection_set_cbuffer(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int intersects_cbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static int intersects_cbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersects_cbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -503,7 +503,7 @@ public static int intersects_cbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer teq_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer teq_cbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "teq_cbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -516,7 +516,7 @@ public static Pointer teq_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer teq_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer teq_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "teq_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -529,7 +529,7 @@ public static Pointer teq_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tne_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tne_cbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tne_cbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -542,7 +542,7 @@ public static Pointer tne_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tne_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tne_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tne_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -555,7 +555,7 @@ public static Pointer tne_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int touches_cbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static int touches_cbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "touches_cbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -568,7 +568,7 @@ public static int touches_cbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_set_cbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_set_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_set_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -581,7 +581,7 @@ public static Pointer union_set_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int acontains_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static int acontains_cbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "acontains_cbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -594,7 +594,7 @@ public static int acontains_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int acontains_geo_tcbuffer(Pointer arg0, Pointer arg1) { + public static int acontains_geo_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "acontains_geo_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -607,7 +607,7 @@ public static int acontains_geo_tcbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int acontains_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static int acontains_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "acontains_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -620,7 +620,7 @@ public static int acontains_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int acontains_tcbuffer_geo(Pointer arg0, Pointer arg1) { + public static int acontains_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "acontains_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -633,7 +633,7 @@ public static int acontains_tcbuffer_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int acovers_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static int acovers_cbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "acovers_cbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -646,7 +646,7 @@ public static int acovers_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int acovers_geo_tcbuffer(Pointer arg0, Pointer arg1) { + public static int acovers_geo_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "acovers_geo_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -659,7 +659,7 @@ public static int acovers_geo_tcbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int acovers_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static int acovers_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "acovers_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -672,7 +672,7 @@ public static int acovers_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int acovers_tcbuffer_geo(Pointer arg0, Pointer arg1) { + public static int acovers_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "acovers_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -685,7 +685,7 @@ public static int acovers_tcbuffer_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int adisjoint_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static int adisjoint_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adisjoint_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -698,7 +698,7 @@ public static int adisjoint_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int adisjoint_tcbuffer_geo(Pointer arg0, Pointer arg1) { + public static int adisjoint_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adisjoint_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -711,7 +711,7 @@ public static int adisjoint_tcbuffer_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int adwithin_tcbuffer_cbuffer(Pointer arg0, Pointer arg1, double arg2) { + public static int adwithin_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adwithin_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -724,7 +724,7 @@ public static int adwithin_tcbuffer_cbuffer(Pointer arg0, Pointer arg1, double a *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int adwithin_tcbuffer_geo(Pointer arg0, Pointer arg1, double arg2) { + public static int adwithin_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adwithin_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -737,7 +737,7 @@ public static int adwithin_tcbuffer_geo(Pointer arg0, Pointer arg1, double arg2) *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int aintersects_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static int aintersects_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "aintersects_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -750,7 +750,7 @@ public static int aintersects_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int aintersects_tcbuffer_geo(Pointer arg0, Pointer arg1) { + public static int aintersects_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "aintersects_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -763,7 +763,7 @@ public static int aintersects_tcbuffer_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int atouches_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static int atouches_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "atouches_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -776,7 +776,7 @@ public static int atouches_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int atouches_tcbuffer_geo(Pointer arg0, Pointer arg1) { + public static int atouches_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "atouches_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -789,7 +789,7 @@ public static int atouches_tcbuffer_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double distance_cbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static double distance_cbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_cbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -802,7 +802,7 @@ public static double distance_cbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double distance_cbuffer_geo(Pointer arg0, Pointer arg1) { + public static double distance_cbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_cbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -815,7 +815,7 @@ public static double distance_cbuffer_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double distance_cbuffer_stbox(Pointer arg0, Pointer arg1) { + public static double distance_cbuffer_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_cbuffer_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -828,7 +828,7 @@ public static double distance_cbuffer_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int econtains_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static int econtains_cbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "econtains_cbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -841,7 +841,7 @@ public static int econtains_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int econtains_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static int econtains_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "econtains_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -854,7 +854,7 @@ public static int econtains_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int econtains_tcbuffer_geo(Pointer arg0, Pointer arg1) { + public static int econtains_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "econtains_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -867,7 +867,7 @@ public static int econtains_tcbuffer_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int ecovers_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static int ecovers_cbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ecovers_cbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -880,7 +880,7 @@ public static int ecovers_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int ecovers_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static int ecovers_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ecovers_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -893,7 +893,7 @@ public static int ecovers_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int ecovers_tcbuffer_geo(Pointer arg0, Pointer arg1) { + public static int ecovers_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ecovers_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -906,7 +906,7 @@ public static int ecovers_tcbuffer_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int edisjoint_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static int edisjoint_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "edisjoint_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -919,7 +919,7 @@ public static int edisjoint_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int edisjoint_tcbuffer_geo(Pointer arg0, Pointer arg1) { + public static int edisjoint_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "edisjoint_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -932,7 +932,7 @@ public static int edisjoint_tcbuffer_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int edwithin_tcbuffer_cbuffer(Pointer arg0, Pointer arg1, double arg2) { + public static int edwithin_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "edwithin_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -945,7 +945,7 @@ public static int edwithin_tcbuffer_cbuffer(Pointer arg0, Pointer arg1, double a *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int edwithin_tcbuffer_geo(Pointer arg0, Pointer arg1, double arg2) { + public static int edwithin_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "edwithin_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -958,7 +958,7 @@ public static int edwithin_tcbuffer_geo(Pointer arg0, Pointer arg1, double arg2) *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int eintersects_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static int eintersects_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "eintersects_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -971,7 +971,7 @@ public static int eintersects_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int eintersects_tcbuffer_geo(Pointer arg0, Pointer arg1) { + public static int eintersects_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "eintersects_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -984,7 +984,7 @@ public static int eintersects_tcbuffer_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int etouches_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static int etouches_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "etouches_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -997,7 +997,7 @@ public static int etouches_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int etouches_tcbuffer_geo(Pointer arg0, Pointer arg1) { + public static int etouches_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "etouches_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1010,7 +1010,7 @@ public static int etouches_tcbuffer_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_cbuffer_set(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_cbuffer_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_cbuffer_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1023,7 +1023,7 @@ public static Pointer minus_cbuffer_set(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_set_cbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_set_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_set_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1036,7 +1036,7 @@ public static Pointer minus_set_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double nad_cbuffer_stbox(Pointer arg0, Pointer arg1) { + public static double nad_cbuffer_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_cbuffer_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1049,7 +1049,7 @@ public static double nad_cbuffer_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double nad_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static double nad_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1062,7 +1062,7 @@ public static double nad_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double nad_tcbuffer_geo(Pointer arg0, Pointer arg1) { + public static double nad_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1075,7 +1075,7 @@ public static double nad_tcbuffer_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double nad_tcbuffer_stbox(Pointer arg0, Pointer arg1) { + public static double nad_tcbuffer_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tcbuffer_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1088,7 +1088,7 @@ public static double nad_tcbuffer_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer nai_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer nai_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nai_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1101,7 +1101,7 @@ public static Pointer nai_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer nai_tcbuffer_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer nai_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nai_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1114,7 +1114,7 @@ public static Pointer nai_tcbuffer_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer shortestline_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer shortestline_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "shortestline_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1127,7 +1127,7 @@ public static Pointer shortestline_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer shortestline_tcbuffer_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer shortestline_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "shortestline_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1140,7 +1140,7 @@ public static Pointer shortestline_tcbuffer_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tcontains_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcontains_cbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcontains_cbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1153,7 +1153,7 @@ public static Pointer tcontains_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tcontains_geo_tcbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcontains_geo_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcontains_geo_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1166,7 +1166,7 @@ public static Pointer tcontains_geo_tcbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tcontains_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcontains_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcontains_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1179,7 +1179,7 @@ public static Pointer tcontains_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tcontains_tcbuffer_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcontains_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcontains_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1192,7 +1192,7 @@ public static Pointer tcontains_tcbuffer_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tcovers_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcovers_cbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcovers_cbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1205,7 +1205,7 @@ public static Pointer tcovers_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tcovers_geo_tcbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcovers_geo_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcovers_geo_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1218,7 +1218,7 @@ public static Pointer tcovers_geo_tcbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tcovers_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcovers_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcovers_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1231,7 +1231,7 @@ public static Pointer tcovers_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tcovers_tcbuffer_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcovers_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcovers_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1244,7 +1244,7 @@ public static Pointer tcovers_tcbuffer_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tdisjoint_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdisjoint_cbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdisjoint_cbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1257,7 +1257,7 @@ public static Pointer tdisjoint_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tdisjoint_geo_tcbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdisjoint_geo_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdisjoint_geo_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1270,7 +1270,7 @@ public static Pointer tdisjoint_geo_tcbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tdisjoint_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdisjoint_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdisjoint_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1283,7 +1283,7 @@ public static Pointer tdisjoint_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tdisjoint_tcbuffer_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdisjoint_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdisjoint_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1296,7 +1296,7 @@ public static Pointer tdisjoint_tcbuffer_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer tdistance_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdistance_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdistance_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1309,7 +1309,7 @@ public static Pointer tdistance_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer tdistance_tcbuffer_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdistance_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdistance_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1322,7 +1322,7 @@ public static Pointer tdistance_tcbuffer_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tdwithin_geo_tcbuffer(Pointer arg0, Pointer arg1, double arg2) { + public static jnr.ffi.Pointer tdwithin_geo_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdwithin_geo_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1335,7 +1335,7 @@ public static Pointer tdwithin_geo_tcbuffer(Pointer arg0, Pointer arg1, double a *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tdwithin_tcbuffer_cbuffer(Pointer arg0, Pointer arg1, double arg2) { + public static jnr.ffi.Pointer tdwithin_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdwithin_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1348,7 +1348,7 @@ public static Pointer tdwithin_tcbuffer_cbuffer(Pointer arg0, Pointer arg1, doub *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tdwithin_tcbuffer_geo(Pointer arg0, Pointer arg1, double arg2) { + public static jnr.ffi.Pointer tdwithin_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdwithin_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1361,7 +1361,7 @@ public static Pointer tdwithin_tcbuffer_geo(Pointer arg0, Pointer arg1, double a *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tintersects_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tintersects_cbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tintersects_cbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1374,7 +1374,7 @@ public static Pointer tintersects_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tintersects_geo_tcbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tintersects_geo_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tintersects_geo_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1387,7 +1387,7 @@ public static Pointer tintersects_geo_tcbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tintersects_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tintersects_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tintersects_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1400,7 +1400,7 @@ public static Pointer tintersects_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tintersects_tcbuffer_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tintersects_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tintersects_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1413,7 +1413,7 @@ public static Pointer tintersects_tcbuffer_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer ttouches_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer ttouches_cbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttouches_cbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1426,7 +1426,7 @@ public static Pointer ttouches_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer ttouches_geo_tcbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer ttouches_geo_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttouches_geo_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1439,7 +1439,7 @@ public static Pointer ttouches_geo_tcbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer ttouches_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer ttouches_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttouches_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1452,7 +1452,7 @@ public static Pointer ttouches_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer ttouches_tcbuffer_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer ttouches_tcbuffer_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttouches_tcbuffer_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1465,7 +1465,7 @@ public static Pointer ttouches_tcbuffer_geo(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_eq_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static int always_eq_cbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_cbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1478,7 +1478,7 @@ public static int always_eq_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_eq_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static int always_eq_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1491,7 +1491,7 @@ public static int always_eq_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ne_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static int always_ne_cbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_cbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1504,7 +1504,7 @@ public static int always_ne_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ne_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static int always_ne_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1517,7 +1517,7 @@ public static int always_ne_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_eq_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static int ever_eq_cbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_cbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1530,7 +1530,7 @@ public static int ever_eq_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_eq_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static int ever_eq_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1543,7 +1543,7 @@ public static int ever_eq_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ne_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static int ever_ne_cbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_cbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1556,7 +1556,7 @@ public static int ever_ne_cbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ne_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { + public static int ever_ne_tcbuffer_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_tcbuffer_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1569,7 +1569,7 @@ public static int ever_ne_tcbuffer_cbuffer(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 2 temporals

*/ - public static int adisjoint_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static int adisjoint_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adisjoint_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1582,7 +1582,7 @@ public static int adisjoint_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 2 temporals

*/ - public static int adwithin_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1, double arg2) { + public static int adwithin_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adwithin_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1595,7 +1595,7 @@ public static int adwithin_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1, double *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 2 temporals

*/ - public static int aintersects_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static int aintersects_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "aintersects_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1608,7 +1608,7 @@ public static int aintersects_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int always_eq_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static int always_eq_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1621,7 +1621,7 @@ public static int always_eq_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int always_ne_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static int always_ne_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1634,7 +1634,7 @@ public static int always_ne_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 2 temporals

*/ - public static int atouches_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static int atouches_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "atouches_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1647,7 +1647,7 @@ public static int atouches_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 2 temporals

*/ - public static int ecovers_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static int ecovers_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ecovers_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1660,7 +1660,7 @@ public static int ecovers_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 2 temporals

*/ - public static int edwithin_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1, double arg2) { + public static int edwithin_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "edwithin_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1673,7 +1673,7 @@ public static int edwithin_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1, double *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 2 temporals

*/ - public static int eintersects_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static int eintersects_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "eintersects_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1686,7 +1686,7 @@ public static int eintersects_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 2 temporals

*/ - public static int etouches_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static int etouches_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "etouches_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1699,7 +1699,7 @@ public static int etouches_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int ever_eq_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static int ever_eq_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1712,7 +1712,7 @@ public static int ever_eq_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int ever_ne_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static int ever_ne_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1725,7 +1725,7 @@ public static int ever_ne_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static double nad_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static double nad_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1738,7 +1738,7 @@ public static double nad_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static Pointer nai_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer nai_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nai_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1751,7 +1751,7 @@ public static Pointer nai_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static Pointer shortestline_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer shortestline_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "shortestline_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1764,7 +1764,7 @@ public static Pointer shortestline_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 2 temporals

*/ - public static Pointer tcontains_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcontains_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcontains_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1777,7 +1777,7 @@ public static Pointer tcontains_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 2 temporals

*/ - public static Pointer tcovers_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcovers_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcovers_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1790,7 +1790,7 @@ public static Pointer tcovers_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 2 temporals

*/ - public static Pointer tdisjoint_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdisjoint_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdisjoint_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1803,7 +1803,7 @@ public static Pointer tdisjoint_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static Pointer tdistance_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdistance_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdistance_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1816,7 +1816,7 @@ public static Pointer tdistance_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 2 temporals

*/ - public static Pointer tdwithin_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1, double arg2) { + public static jnr.ffi.Pointer tdwithin_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdwithin_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1829,7 +1829,7 @@ public static Pointer tdwithin_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1, dou *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 2 temporals

*/ - public static Pointer tintersects_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tintersects_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tintersects_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1842,7 +1842,7 @@ public static Pointer tintersects_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 2 temporals

*/ - public static Pointer ttouches_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer ttouches_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttouches_tcbuffer_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1855,7 +1855,7 @@ public static Pointer ttouches_tcbuffer_tcbuffer(Pointer arg0, Pointer arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String cbuffer_as_ewkt(Pointer arg0, int arg1) { + public static java.lang.String cbuffer_as_ewkt(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_as_ewkt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1868,7 +1868,7 @@ public static String cbuffer_as_ewkt(Pointer arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String cbuffer_as_hexwkb(Pointer arg0, byte arg1, Pointer arg2) { + public static java.lang.String cbuffer_as_hexwkb(jnr.ffi.Pointer arg0, byte arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_as_hexwkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1881,7 +1881,7 @@ public static String cbuffer_as_hexwkb(Pointer arg0, byte arg1, Pointer arg2) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String cbuffer_as_text(Pointer arg0, int arg1) { + public static java.lang.String cbuffer_as_text(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_as_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1894,7 +1894,7 @@ public static String cbuffer_as_text(Pointer arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static Pointer cbuffer_as_wkb(Pointer arg0, byte arg1) { + public static jnr.ffi.Pointer cbuffer_as_wkb(jnr.ffi.Pointer arg0, byte arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_as_wkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1907,7 +1907,7 @@ public static Pointer cbuffer_as_wkb(Pointer arg0, byte arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static Pointer cbuffer_from_hexwkb(String arg0) { + public static jnr.ffi.Pointer cbuffer_from_hexwkb(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_from_hexwkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1920,7 +1920,7 @@ public static Pointer cbuffer_from_hexwkb(String arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static Pointer cbuffer_from_wkb(Pointer arg0, long arg1) { + public static jnr.ffi.Pointer cbuffer_from_wkb(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_from_wkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1933,7 +1933,7 @@ public static Pointer cbuffer_from_wkb(Pointer arg0, long arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static Pointer cbuffer_in(String arg0) { + public static jnr.ffi.Pointer cbuffer_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1946,7 +1946,7 @@ public static Pointer cbuffer_in(String arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String cbuffer_out(Pointer arg0, int arg1) { + public static java.lang.String cbuffer_out(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cbuffer_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreeCore.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreeCore.java index d70fdcb..b22942d 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreeCore.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreeCore.java @@ -36,7 +36,7 @@ public static int add_date_int(int arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: arithmetic op on temporal number (per-instant)

*/ - public static Pointer add_float_tfloat(double arg0, Pointer arg1) { + public static jnr.ffi.Pointer add_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "add_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer add_float_tfloat(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: arithmetic op on temporal number (per-instant)

*/ - public static Pointer add_int_tint(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer add_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "add_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -62,7 +62,7 @@ public static Pointer add_int_tint(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: arithmetic op on temporal number (per-instant)

*/ - public static Pointer add_interval_interval(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer add_interval_interval(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "add_interval_interval requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -75,7 +75,7 @@ public static Pointer add_interval_interval(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: arithmetic op on temporal number (per-instant)

*/ - public static Pointer add_tfloat_float(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer add_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "add_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -88,7 +88,7 @@ public static Pointer add_tfloat_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar arithmetic

*/ - public static int add_timestamptz_interval(int arg0, Pointer arg1) { + public static java.time.OffsetDateTime add_timestamptz_interval(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "add_timestamptz_interval requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -101,7 +101,7 @@ public static int add_timestamptz_interval(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: arithmetic op on temporal number (per-instant)

*/ - public static Pointer add_tint_int(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer add_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "add_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -114,7 +114,7 @@ public static Pointer add_tint_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: arithmetic op on temporal number (per-instant)

*/ - public static Pointer add_tnumber_tnumber(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer add_tnumber_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "add_tnumber_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -127,7 +127,7 @@ public static Pointer add_tnumber_tnumber(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int adjacent_span_bigint(Pointer arg0, int arg1) { + public static boolean adjacent_span_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_span_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -140,7 +140,7 @@ public static int adjacent_span_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int adjacent_span_date(Pointer arg0, int arg1) { + public static boolean adjacent_span_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_span_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -153,7 +153,7 @@ public static int adjacent_span_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int adjacent_span_float(Pointer arg0, double arg1) { + public static boolean adjacent_span_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_span_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -166,7 +166,7 @@ public static int adjacent_span_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int adjacent_span_int(Pointer arg0, int arg1) { + public static boolean adjacent_span_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_span_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -179,7 +179,7 @@ public static int adjacent_span_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int adjacent_span_span(Pointer arg0, Pointer arg1) { + public static boolean adjacent_span_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_span_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -192,7 +192,7 @@ public static int adjacent_span_span(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int adjacent_span_spanset(Pointer arg0, Pointer arg1) { + public static boolean adjacent_span_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_span_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -205,7 +205,7 @@ public static int adjacent_span_spanset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int adjacent_span_timestamptz(Pointer arg0, int arg1) { + public static boolean adjacent_span_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_span_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -218,7 +218,7 @@ public static int adjacent_span_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int adjacent_spanset_bigint(Pointer arg0, int arg1) { + public static boolean adjacent_spanset_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_spanset_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -231,7 +231,7 @@ public static int adjacent_spanset_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int adjacent_spanset_date(Pointer arg0, int arg1) { + public static boolean adjacent_spanset_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_spanset_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -244,7 +244,7 @@ public static int adjacent_spanset_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int adjacent_spanset_float(Pointer arg0, double arg1) { + public static boolean adjacent_spanset_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_spanset_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -257,7 +257,7 @@ public static int adjacent_spanset_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int adjacent_spanset_int(Pointer arg0, int arg1) { + public static boolean adjacent_spanset_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_spanset_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -270,7 +270,7 @@ public static int adjacent_spanset_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int adjacent_spanset_span(Pointer arg0, Pointer arg1) { + public static boolean adjacent_spanset_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_spanset_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -283,7 +283,7 @@ public static int adjacent_spanset_span(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int adjacent_spanset_spanset(Pointer arg0, Pointer arg1) { + public static boolean adjacent_spanset_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_spanset_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -296,7 +296,7 @@ public static int adjacent_spanset_spanset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int adjacent_spanset_timestamptz(Pointer arg0, int arg1) { + public static boolean adjacent_spanset_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_spanset_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -309,7 +309,7 @@ public static int adjacent_spanset_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int adjacent_tbox_tbox(Pointer arg0, Pointer arg1) { + public static boolean adjacent_tbox_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_tbox_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -322,7 +322,7 @@ public static int adjacent_tbox_tbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int adjacent_tbox_tnumber(Pointer arg0, Pointer arg1) { + public static boolean adjacent_tbox_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_tbox_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -335,7 +335,7 @@ public static int adjacent_tbox_tnumber(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int after_date_set(int arg0, Pointer arg1) { + public static boolean after_date_set(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_date_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -348,7 +348,7 @@ public static int after_date_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int after_date_span(int arg0, Pointer arg1) { + public static boolean after_date_span(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_date_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -361,7 +361,7 @@ public static int after_date_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int after_date_spanset(int arg0, Pointer arg1) { + public static boolean after_date_spanset(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_date_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -374,7 +374,7 @@ public static int after_date_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int after_set_date(Pointer arg0, int arg1) { + public static boolean after_set_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_set_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -387,7 +387,7 @@ public static int after_set_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int after_set_timestamptz(Pointer arg0, int arg1) { + public static boolean after_set_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_set_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -400,7 +400,7 @@ public static int after_set_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int after_span_date(Pointer arg0, int arg1) { + public static boolean after_span_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_span_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -413,7 +413,7 @@ public static int after_span_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int after_span_timestamptz(Pointer arg0, int arg1) { + public static boolean after_span_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_span_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -426,7 +426,7 @@ public static int after_span_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int after_spanset_date(Pointer arg0, int arg1) { + public static boolean after_spanset_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_spanset_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -439,7 +439,7 @@ public static int after_spanset_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int after_spanset_timestamptz(Pointer arg0, int arg1) { + public static boolean after_spanset_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_spanset_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -452,7 +452,7 @@ public static int after_spanset_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int after_tbox_tbox(Pointer arg0, Pointer arg1) { + public static boolean after_tbox_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_tbox_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -465,7 +465,7 @@ public static int after_tbox_tbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int after_tbox_tnumber(Pointer arg0, Pointer arg1) { + public static boolean after_tbox_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_tbox_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -478,7 +478,7 @@ public static int after_tbox_tnumber(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int after_timestamptz_set(int arg0, Pointer arg1) { + public static boolean after_timestamptz_set(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_timestamptz_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -491,7 +491,7 @@ public static int after_timestamptz_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int after_timestamptz_span(int arg0, Pointer arg1) { + public static boolean after_timestamptz_span(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_timestamptz_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -504,7 +504,7 @@ public static int after_timestamptz_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int after_timestamptz_spanset(int arg0, Pointer arg1) { + public static boolean after_timestamptz_spanset(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_timestamptz_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -517,7 +517,7 @@ public static int after_timestamptz_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int before_date_set(int arg0, Pointer arg1) { + public static boolean before_date_set(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_date_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -530,7 +530,7 @@ public static int before_date_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int before_date_span(int arg0, Pointer arg1) { + public static boolean before_date_span(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_date_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -543,7 +543,7 @@ public static int before_date_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int before_date_spanset(int arg0, Pointer arg1) { + public static boolean before_date_spanset(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_date_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -556,7 +556,7 @@ public static int before_date_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int before_set_date(Pointer arg0, int arg1) { + public static boolean before_set_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_set_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -569,7 +569,7 @@ public static int before_set_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int before_set_timestamptz(Pointer arg0, int arg1) { + public static boolean before_set_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_set_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -582,7 +582,7 @@ public static int before_set_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int before_span_date(Pointer arg0, int arg1) { + public static boolean before_span_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_span_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -595,7 +595,7 @@ public static int before_span_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int before_span_timestamptz(Pointer arg0, int arg1) { + public static boolean before_span_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_span_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -608,7 +608,7 @@ public static int before_span_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int before_spanset_date(Pointer arg0, int arg1) { + public static boolean before_spanset_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_spanset_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -621,7 +621,7 @@ public static int before_spanset_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int before_spanset_timestamptz(Pointer arg0, int arg1) { + public static boolean before_spanset_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_spanset_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -634,7 +634,7 @@ public static int before_spanset_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int before_tbox_tbox(Pointer arg0, Pointer arg1) { + public static boolean before_tbox_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_tbox_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -647,7 +647,7 @@ public static int before_tbox_tbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int before_tbox_tnumber(Pointer arg0, Pointer arg1) { + public static boolean before_tbox_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_tbox_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -660,7 +660,7 @@ public static int before_tbox_tnumber(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int before_timestamptz_set(int arg0, Pointer arg1) { + public static boolean before_timestamptz_set(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_timestamptz_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -673,7 +673,7 @@ public static int before_timestamptz_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int before_timestamptz_span(int arg0, Pointer arg1) { + public static boolean before_timestamptz_span(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_timestamptz_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -686,7 +686,7 @@ public static int before_timestamptz_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int before_timestamptz_spanset(int arg0, Pointer arg1) { + public static boolean before_timestamptz_spanset(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_timestamptz_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -699,7 +699,7 @@ public static int before_timestamptz_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer bigint_extent_transfn(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer bigint_extent_transfn(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigint_extent_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -712,7 +712,7 @@ public static Pointer bigint_extent_transfn(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int bigint_get_bin(int arg0, int arg1, int arg2) { + public static long bigint_get_bin(long arg0, long arg1, long arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigint_get_bin requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -725,7 +725,7 @@ public static int bigint_get_bin(int arg0, int arg1, int arg2) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer bigint_to_set(int arg0) { + public static jnr.ffi.Pointer bigint_to_set(long arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigint_to_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -738,7 +738,7 @@ public static Pointer bigint_to_set(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer bigint_to_span(int arg0) { + public static jnr.ffi.Pointer bigint_to_span(long arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigint_to_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -751,7 +751,7 @@ public static Pointer bigint_to_span(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer bigint_to_spanset(int arg0) { + public static jnr.ffi.Pointer bigint_to_spanset(long arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigint_to_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -764,7 +764,7 @@ public static Pointer bigint_to_spanset(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer bigint_union_transfn(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer bigint_union_transfn(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bigint_union_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -777,7 +777,7 @@ public static Pointer bigint_union_transfn(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_bigint_set(int arg0, Pointer arg1) { + public static boolean contained_bigint_set(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_bigint_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -790,7 +790,7 @@ public static int contained_bigint_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_bigint_span(int arg0, Pointer arg1) { + public static boolean contained_bigint_span(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_bigint_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -803,7 +803,7 @@ public static int contained_bigint_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_bigint_spanset(int arg0, Pointer arg1) { + public static boolean contained_bigint_spanset(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_bigint_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -816,7 +816,7 @@ public static int contained_bigint_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_date_set(int arg0, Pointer arg1) { + public static boolean contained_date_set(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_date_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -829,7 +829,7 @@ public static int contained_date_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_date_span(int arg0, Pointer arg1) { + public static boolean contained_date_span(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_date_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -842,7 +842,7 @@ public static int contained_date_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_date_spanset(int arg0, Pointer arg1) { + public static boolean contained_date_spanset(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_date_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -855,7 +855,7 @@ public static int contained_date_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_float_set(double arg0, Pointer arg1) { + public static boolean contained_float_set(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_float_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -868,7 +868,7 @@ public static int contained_float_set(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_float_span(double arg0, Pointer arg1) { + public static boolean contained_float_span(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_float_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -881,7 +881,7 @@ public static int contained_float_span(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_float_spanset(double arg0, Pointer arg1) { + public static boolean contained_float_spanset(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_float_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -894,7 +894,7 @@ public static int contained_float_spanset(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_int_set(int arg0, Pointer arg1) { + public static boolean contained_int_set(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_int_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -907,7 +907,7 @@ public static int contained_int_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_int_span(int arg0, Pointer arg1) { + public static boolean contained_int_span(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_int_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -920,7 +920,7 @@ public static int contained_int_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_int_spanset(int arg0, Pointer arg1) { + public static boolean contained_int_spanset(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_int_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -933,7 +933,7 @@ public static int contained_int_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_set_set(Pointer arg0, Pointer arg1) { + public static boolean contained_set_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_set_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -946,7 +946,7 @@ public static int contained_set_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_span_span(Pointer arg0, Pointer arg1) { + public static boolean contained_span_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_span_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -959,7 +959,7 @@ public static int contained_span_span(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_span_spanset(Pointer arg0, Pointer arg1) { + public static boolean contained_span_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_span_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -972,7 +972,7 @@ public static int contained_span_spanset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_spanset_span(Pointer arg0, Pointer arg1) { + public static boolean contained_spanset_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_spanset_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -985,7 +985,7 @@ public static int contained_spanset_span(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_spanset_spanset(Pointer arg0, Pointer arg1) { + public static boolean contained_spanset_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_spanset_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -998,7 +998,7 @@ public static int contained_spanset_spanset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_tbox_tbox(Pointer arg0, Pointer arg1) { + public static boolean contained_tbox_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_tbox_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1011,7 +1011,7 @@ public static int contained_tbox_tbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_tbox_tnumber(Pointer arg0, Pointer arg1) { + public static boolean contained_tbox_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_tbox_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1024,7 +1024,7 @@ public static int contained_tbox_tnumber(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_text_set(Pointer arg0, Pointer arg1) { + public static boolean contained_text_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_text_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1037,7 +1037,7 @@ public static int contained_text_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_timestamptz_set(int arg0, Pointer arg1) { + public static boolean contained_timestamptz_set(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_timestamptz_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1050,7 +1050,7 @@ public static int contained_timestamptz_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_timestamptz_span(int arg0, Pointer arg1) { + public static boolean contained_timestamptz_span(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_timestamptz_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1063,7 +1063,7 @@ public static int contained_timestamptz_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_timestamptz_spanset(int arg0, Pointer arg1) { + public static boolean contained_timestamptz_spanset(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_timestamptz_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1076,7 +1076,7 @@ public static int contained_timestamptz_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_set_bigint(Pointer arg0, int arg1) { + public static boolean contains_set_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_set_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1089,7 +1089,7 @@ public static int contains_set_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_set_date(Pointer arg0, int arg1) { + public static boolean contains_set_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_set_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1102,7 +1102,7 @@ public static int contains_set_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_set_float(Pointer arg0, double arg1) { + public static boolean contains_set_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_set_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1115,7 +1115,7 @@ public static int contains_set_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_set_int(Pointer arg0, int arg1) { + public static boolean contains_set_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_set_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1128,7 +1128,7 @@ public static int contains_set_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_set_set(Pointer arg0, Pointer arg1) { + public static boolean contains_set_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_set_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1141,7 +1141,7 @@ public static int contains_set_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_set_text(Pointer arg0, Pointer arg1) { + public static boolean contains_set_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_set_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1154,7 +1154,7 @@ public static int contains_set_text(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_set_timestamptz(Pointer arg0, int arg1) { + public static boolean contains_set_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_set_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1167,7 +1167,7 @@ public static int contains_set_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_span_bigint(Pointer arg0, int arg1) { + public static boolean contains_span_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_span_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1180,7 +1180,7 @@ public static int contains_span_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_span_date(Pointer arg0, int arg1) { + public static boolean contains_span_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_span_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1193,7 +1193,7 @@ public static int contains_span_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_span_float(Pointer arg0, double arg1) { + public static boolean contains_span_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_span_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1206,7 +1206,7 @@ public static int contains_span_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_span_int(Pointer arg0, int arg1) { + public static boolean contains_span_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_span_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1219,7 +1219,7 @@ public static int contains_span_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_span_span(Pointer arg0, Pointer arg1) { + public static boolean contains_span_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_span_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1232,7 +1232,7 @@ public static int contains_span_span(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_span_spanset(Pointer arg0, Pointer arg1) { + public static boolean contains_span_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_span_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1245,7 +1245,7 @@ public static int contains_span_spanset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_span_timestamptz(Pointer arg0, int arg1) { + public static boolean contains_span_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_span_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1258,7 +1258,7 @@ public static int contains_span_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_spanset_bigint(Pointer arg0, int arg1) { + public static boolean contains_spanset_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_spanset_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1271,7 +1271,7 @@ public static int contains_spanset_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_spanset_date(Pointer arg0, int arg1) { + public static boolean contains_spanset_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_spanset_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1284,7 +1284,7 @@ public static int contains_spanset_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_spanset_float(Pointer arg0, double arg1) { + public static boolean contains_spanset_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_spanset_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1297,7 +1297,7 @@ public static int contains_spanset_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_spanset_int(Pointer arg0, int arg1) { + public static boolean contains_spanset_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_spanset_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1310,7 +1310,7 @@ public static int contains_spanset_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_spanset_span(Pointer arg0, Pointer arg1) { + public static boolean contains_spanset_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_spanset_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1323,7 +1323,7 @@ public static int contains_spanset_span(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_spanset_spanset(Pointer arg0, Pointer arg1) { + public static boolean contains_spanset_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_spanset_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1336,7 +1336,7 @@ public static int contains_spanset_spanset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_spanset_timestamptz(Pointer arg0, int arg1) { + public static boolean contains_spanset_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_spanset_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1349,7 +1349,7 @@ public static int contains_spanset_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_tbox_tbox(Pointer arg0, Pointer arg1) { + public static boolean contains_tbox_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_tbox_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1362,7 +1362,7 @@ public static int contains_tbox_tbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_tbox_tnumber(Pointer arg0, Pointer arg1) { + public static boolean contains_tbox_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_tbox_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1375,7 +1375,7 @@ public static int contains_tbox_tnumber(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer date_extent_transfn(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer date_extent_transfn(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "date_extent_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1388,7 +1388,7 @@ public static Pointer date_extent_transfn(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int date_get_bin(int arg0, Pointer arg1, int arg2) { + public static int date_get_bin(int arg0, jnr.ffi.Pointer arg1, int arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "date_get_bin requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1401,7 +1401,7 @@ public static int date_get_bin(int arg0, Pointer arg1, int arg2) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer date_to_set(int arg0) { + public static jnr.ffi.Pointer date_to_set(int arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "date_to_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1414,7 +1414,7 @@ public static Pointer date_to_set(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer date_to_span(int arg0) { + public static jnr.ffi.Pointer date_to_span(int arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "date_to_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1427,7 +1427,7 @@ public static Pointer date_to_span(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer date_to_spanset(int arg0) { + public static jnr.ffi.Pointer date_to_spanset(int arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "date_to_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1440,7 +1440,7 @@ public static Pointer date_to_spanset(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int date_to_timestamp(int arg0) { + public static java.time.LocalDateTime date_to_timestamp(int arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "date_to_timestamp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1453,7 +1453,7 @@ public static int date_to_timestamp(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static int date_to_timestamptz(int arg0) { + public static java.time.OffsetDateTime date_to_timestamptz(int arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "date_to_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1466,7 +1466,7 @@ public static int date_to_timestamptz(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer date_union_transfn(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer date_union_transfn(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "date_union_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1479,7 +1479,7 @@ public static Pointer date_union_transfn(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: arithmetic op on temporal number (per-instant)

*/ - public static Pointer div_float_tfloat(double arg0, Pointer arg1) { + public static jnr.ffi.Pointer div_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "div_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1492,7 +1492,7 @@ public static Pointer div_float_tfloat(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: arithmetic op on temporal number (per-instant)

*/ - public static Pointer div_int_tint(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer div_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "div_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1505,7 +1505,7 @@ public static Pointer div_int_tint(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: arithmetic op on temporal number (per-instant)

*/ - public static Pointer div_tfloat_float(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer div_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "div_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1518,7 +1518,7 @@ public static Pointer div_tfloat_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: arithmetic op on temporal number (per-instant)

*/ - public static Pointer div_tint_int(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer div_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "div_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1531,7 +1531,7 @@ public static Pointer div_tint_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: arithmetic op on temporal number (per-instant)

*/ - public static Pointer div_tnumber_tnumber(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer div_tnumber_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "div_tnumber_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1557,7 +1557,7 @@ public static double float_angular_difference(double arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static double float_degrees(double arg0, int arg1) { + public static double float_degrees(double arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "float_degrees requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1583,7 +1583,7 @@ public static double float_exp(double arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer float_extent_transfn(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer float_extent_transfn(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "float_extent_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1648,7 +1648,7 @@ public static double float_round(double arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer float_timestamptz_to_tbox(double arg0, int arg1) { + public static jnr.ffi.Pointer float_timestamptz_to_tbox(double arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "float_timestamptz_to_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1661,7 +1661,7 @@ public static Pointer float_timestamptz_to_tbox(double arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer float_to_set(double arg0) { + public static jnr.ffi.Pointer float_to_set(double arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "float_to_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1674,7 +1674,7 @@ public static Pointer float_to_set(double arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer float_to_span(double arg0) { + public static jnr.ffi.Pointer float_to_span(double arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "float_to_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1687,7 +1687,7 @@ public static Pointer float_to_span(double arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer float_to_spanset(double arg0) { + public static jnr.ffi.Pointer float_to_spanset(double arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "float_to_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1700,7 +1700,7 @@ public static Pointer float_to_spanset(double arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer float_to_tbox(double arg0) { + public static jnr.ffi.Pointer float_to_tbox(double arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "float_to_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1713,7 +1713,7 @@ public static Pointer float_to_tbox(double arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer float_tstzspan_to_tbox(double arg0, Pointer arg1) { + public static jnr.ffi.Pointer float_tstzspan_to_tbox(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "float_tstzspan_to_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1726,7 +1726,7 @@ public static Pointer float_tstzspan_to_tbox(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer float_union_transfn(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer float_union_transfn(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "float_union_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1752,7 +1752,7 @@ public static int int32_cmp(int arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison with width suffix

*/ - public static int int64_cmp(int arg0, int arg1) { + public static int int64_cmp(long arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "int64_cmp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1765,7 +1765,7 @@ public static int int64_cmp(int arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer int_extent_transfn(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer int_extent_transfn(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "int_extent_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1791,7 +1791,7 @@ public static int int_get_bin(int arg0, int arg1, int arg2) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer int_timestamptz_to_tbox(int arg0, int arg1) { + public static jnr.ffi.Pointer int_timestamptz_to_tbox(int arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "int_timestamptz_to_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1804,7 +1804,7 @@ public static Pointer int_timestamptz_to_tbox(int arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer int_to_set(int arg0) { + public static jnr.ffi.Pointer int_to_set(int arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "int_to_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1817,7 +1817,7 @@ public static Pointer int_to_set(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer int_to_span(int arg0) { + public static jnr.ffi.Pointer int_to_span(int arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "int_to_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1830,7 +1830,7 @@ public static Pointer int_to_span(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer int_to_spanset(int arg0) { + public static jnr.ffi.Pointer int_to_spanset(int arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "int_to_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1843,7 +1843,7 @@ public static Pointer int_to_spanset(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer int_to_tbox(int arg0) { + public static jnr.ffi.Pointer int_to_tbox(int arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "int_to_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1856,7 +1856,7 @@ public static Pointer int_to_tbox(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer int_tstzspan_to_tbox(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer int_tstzspan_to_tbox(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "int_tstzspan_to_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1869,7 +1869,7 @@ public static Pointer int_tstzspan_to_tbox(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer int_union_transfn(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer int_union_transfn(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "int_union_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1882,7 +1882,7 @@ public static Pointer int_union_transfn(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_bigint_set(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer intersection_bigint_set(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_bigint_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1895,7 +1895,7 @@ public static Pointer intersection_bigint_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_date_set(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer intersection_date_set(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_date_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1908,7 +1908,7 @@ public static Pointer intersection_date_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_float_set(double arg0, Pointer arg1) { + public static jnr.ffi.Pointer intersection_float_set(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_float_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1921,7 +1921,7 @@ public static Pointer intersection_float_set(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_int_set(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer intersection_int_set(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_int_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1934,7 +1934,7 @@ public static Pointer intersection_int_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_set_bigint(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer intersection_set_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_set_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1947,7 +1947,7 @@ public static Pointer intersection_set_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_set_date(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer intersection_set_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_set_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1960,7 +1960,7 @@ public static Pointer intersection_set_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_set_float(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer intersection_set_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_set_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1973,7 +1973,7 @@ public static Pointer intersection_set_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_set_int(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer intersection_set_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_set_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1986,7 +1986,7 @@ public static Pointer intersection_set_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_set_set(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer intersection_set_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_set_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1999,7 +1999,7 @@ public static Pointer intersection_set_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_set_text(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer intersection_set_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_set_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2012,7 +2012,7 @@ public static Pointer intersection_set_text(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_set_timestamptz(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer intersection_set_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_set_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2025,7 +2025,7 @@ public static Pointer intersection_set_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_span_bigint(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer intersection_span_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_span_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2038,7 +2038,7 @@ public static Pointer intersection_span_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_span_date(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer intersection_span_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_span_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2051,7 +2051,7 @@ public static Pointer intersection_span_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_span_float(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer intersection_span_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_span_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2064,7 +2064,7 @@ public static Pointer intersection_span_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_span_int(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer intersection_span_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_span_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2077,7 +2077,7 @@ public static Pointer intersection_span_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_span_span(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer intersection_span_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_span_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2090,7 +2090,7 @@ public static Pointer intersection_span_span(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_span_spanset(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer intersection_span_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_span_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2103,7 +2103,7 @@ public static Pointer intersection_span_spanset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_span_timestamptz(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer intersection_span_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_span_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2116,7 +2116,7 @@ public static Pointer intersection_span_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_spanset_bigint(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer intersection_spanset_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_spanset_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2129,7 +2129,7 @@ public static Pointer intersection_spanset_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_spanset_date(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer intersection_spanset_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_spanset_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2142,7 +2142,7 @@ public static Pointer intersection_spanset_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_spanset_float(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer intersection_spanset_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_spanset_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2155,7 +2155,7 @@ public static Pointer intersection_spanset_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_spanset_int(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer intersection_spanset_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_spanset_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2168,7 +2168,7 @@ public static Pointer intersection_spanset_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_spanset_span(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer intersection_spanset_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_spanset_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2181,7 +2181,7 @@ public static Pointer intersection_spanset_span(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_spanset_spanset(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer intersection_spanset_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_spanset_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2194,7 +2194,7 @@ public static Pointer intersection_spanset_spanset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_spanset_timestamptz(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer intersection_spanset_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_spanset_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2207,7 +2207,7 @@ public static Pointer intersection_spanset_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_tbox_tbox(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer intersection_tbox_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_tbox_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2220,7 +2220,7 @@ public static Pointer intersection_tbox_tbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_text_set(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer intersection_text_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_text_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2233,7 +2233,7 @@ public static Pointer intersection_text_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_timestamptz_set(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer intersection_timestamptz_set(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_timestamptz_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2246,7 +2246,7 @@ public static Pointer intersection_timestamptz_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: make/from_base of instant/scalar

*/ - public static Pointer interval_make(int arg0, int arg1, int arg2, int arg3, int arg4, int arg5, double arg6) { + public static jnr.ffi.Pointer interval_make(int arg0, int arg1, int arg2, int arg3, int arg4, int arg5, double arg6) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "interval_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2259,7 +2259,7 @@ public static Pointer interval_make(int arg0, int arg1, int arg2, int arg3, int *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_bigint_set(int arg0, Pointer arg1) { + public static boolean left_bigint_set(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_bigint_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2272,7 +2272,7 @@ public static int left_bigint_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_bigint_span(int arg0, Pointer arg1) { + public static boolean left_bigint_span(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_bigint_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2285,7 +2285,7 @@ public static int left_bigint_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_bigint_spanset(int arg0, Pointer arg1) { + public static boolean left_bigint_spanset(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_bigint_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2298,7 +2298,7 @@ public static int left_bigint_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_float_set(double arg0, Pointer arg1) { + public static boolean left_float_set(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_float_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2311,7 +2311,7 @@ public static int left_float_set(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_float_span(double arg0, Pointer arg1) { + public static boolean left_float_span(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_float_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2324,7 +2324,7 @@ public static int left_float_span(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_float_spanset(double arg0, Pointer arg1) { + public static boolean left_float_spanset(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_float_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2337,7 +2337,7 @@ public static int left_float_spanset(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_int_set(int arg0, Pointer arg1) { + public static boolean left_int_set(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_int_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2350,7 +2350,7 @@ public static int left_int_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_int_span(int arg0, Pointer arg1) { + public static boolean left_int_span(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_int_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2363,7 +2363,7 @@ public static int left_int_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_int_spanset(int arg0, Pointer arg1) { + public static boolean left_int_spanset(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_int_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2376,7 +2376,7 @@ public static int left_int_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_set_bigint(Pointer arg0, int arg1) { + public static boolean left_set_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_set_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2389,7 +2389,7 @@ public static int left_set_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_set_float(Pointer arg0, double arg1) { + public static boolean left_set_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_set_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2402,7 +2402,7 @@ public static int left_set_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_set_int(Pointer arg0, int arg1) { + public static boolean left_set_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_set_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2415,7 +2415,7 @@ public static int left_set_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_set_set(Pointer arg0, Pointer arg1) { + public static boolean left_set_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_set_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2428,7 +2428,7 @@ public static int left_set_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_set_text(Pointer arg0, Pointer arg1) { + public static boolean left_set_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_set_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2441,7 +2441,7 @@ public static int left_set_text(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_span_bigint(Pointer arg0, int arg1) { + public static boolean left_span_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_span_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2454,7 +2454,7 @@ public static int left_span_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_span_float(Pointer arg0, double arg1) { + public static boolean left_span_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_span_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2467,7 +2467,7 @@ public static int left_span_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_span_int(Pointer arg0, int arg1) { + public static boolean left_span_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_span_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2480,7 +2480,7 @@ public static int left_span_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_span_span(Pointer arg0, Pointer arg1) { + public static boolean left_span_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_span_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2493,7 +2493,7 @@ public static int left_span_span(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_span_spanset(Pointer arg0, Pointer arg1) { + public static boolean left_span_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_span_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2506,7 +2506,7 @@ public static int left_span_spanset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_spanset_bigint(Pointer arg0, int arg1) { + public static boolean left_spanset_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_spanset_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2519,7 +2519,7 @@ public static int left_spanset_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_spanset_float(Pointer arg0, double arg1) { + public static boolean left_spanset_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_spanset_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2532,7 +2532,7 @@ public static int left_spanset_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_spanset_int(Pointer arg0, int arg1) { + public static boolean left_spanset_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_spanset_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2545,7 +2545,7 @@ public static int left_spanset_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_spanset_span(Pointer arg0, Pointer arg1) { + public static boolean left_spanset_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_spanset_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2558,7 +2558,7 @@ public static int left_spanset_span(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_spanset_spanset(Pointer arg0, Pointer arg1) { + public static boolean left_spanset_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_spanset_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2571,7 +2571,7 @@ public static int left_spanset_spanset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_tbox_tbox(Pointer arg0, Pointer arg1) { + public static boolean left_tbox_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_tbox_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2584,7 +2584,7 @@ public static int left_tbox_tbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_tbox_tnumber(Pointer arg0, Pointer arg1) { + public static boolean left_tbox_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_tbox_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2597,7 +2597,7 @@ public static int left_tbox_tnumber(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_text_set(Pointer arg0, Pointer arg1) { + public static boolean left_text_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_text_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2610,7 +2610,7 @@ public static int left_text_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: arithmetic op on temporal number (per-instant)

*/ - public static Pointer mul_interval_double(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer mul_interval_double(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "mul_interval_double requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2623,7 +2623,7 @@ public static Pointer mul_interval_double(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer numspan_timestamptz_to_tbox(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer numspan_timestamptz_to_tbox(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "numspan_timestamptz_to_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2636,7 +2636,7 @@ public static Pointer numspan_timestamptz_to_tbox(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer numspan_tstzspan_to_tbox(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer numspan_tstzspan_to_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "numspan_tstzspan_to_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2649,7 +2649,7 @@ public static Pointer numspan_tstzspan_to_tbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overafter_date_set(int arg0, Pointer arg1) { + public static boolean overafter_date_set(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_date_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2662,7 +2662,7 @@ public static int overafter_date_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overafter_date_span(int arg0, Pointer arg1) { + public static boolean overafter_date_span(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_date_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2675,7 +2675,7 @@ public static int overafter_date_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overafter_date_spanset(int arg0, Pointer arg1) { + public static boolean overafter_date_spanset(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_date_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2688,7 +2688,7 @@ public static int overafter_date_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overafter_set_date(Pointer arg0, int arg1) { + public static boolean overafter_set_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_set_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2701,7 +2701,7 @@ public static int overafter_set_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overafter_set_timestamptz(Pointer arg0, int arg1) { + public static boolean overafter_set_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_set_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2714,7 +2714,7 @@ public static int overafter_set_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overafter_span_date(Pointer arg0, int arg1) { + public static boolean overafter_span_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_span_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2727,7 +2727,7 @@ public static int overafter_span_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overafter_span_timestamptz(Pointer arg0, int arg1) { + public static boolean overafter_span_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_span_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2740,7 +2740,7 @@ public static int overafter_span_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overafter_spanset_date(Pointer arg0, int arg1) { + public static boolean overafter_spanset_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_spanset_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2753,7 +2753,7 @@ public static int overafter_spanset_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overafter_spanset_timestamptz(Pointer arg0, int arg1) { + public static boolean overafter_spanset_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_spanset_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2766,7 +2766,7 @@ public static int overafter_spanset_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overafter_tbox_tbox(Pointer arg0, Pointer arg1) { + public static boolean overafter_tbox_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_tbox_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2779,7 +2779,7 @@ public static int overafter_tbox_tbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overafter_tbox_tnumber(Pointer arg0, Pointer arg1) { + public static boolean overafter_tbox_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_tbox_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2792,7 +2792,7 @@ public static int overafter_tbox_tnumber(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overafter_timestamptz_set(int arg0, Pointer arg1) { + public static boolean overafter_timestamptz_set(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_timestamptz_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2805,7 +2805,7 @@ public static int overafter_timestamptz_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overafter_timestamptz_span(int arg0, Pointer arg1) { + public static boolean overafter_timestamptz_span(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_timestamptz_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2818,7 +2818,7 @@ public static int overafter_timestamptz_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overafter_timestamptz_spanset(int arg0, Pointer arg1) { + public static boolean overafter_timestamptz_spanset(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_timestamptz_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2831,7 +2831,7 @@ public static int overafter_timestamptz_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overbefore_date_set(int arg0, Pointer arg1) { + public static boolean overbefore_date_set(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_date_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2844,7 +2844,7 @@ public static int overbefore_date_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overbefore_date_span(int arg0, Pointer arg1) { + public static boolean overbefore_date_span(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_date_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2857,7 +2857,7 @@ public static int overbefore_date_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overbefore_date_spanset(int arg0, Pointer arg1) { + public static boolean overbefore_date_spanset(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_date_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2870,7 +2870,7 @@ public static int overbefore_date_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overbefore_set_date(Pointer arg0, int arg1) { + public static boolean overbefore_set_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_set_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2883,7 +2883,7 @@ public static int overbefore_set_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overbefore_set_timestamptz(Pointer arg0, int arg1) { + public static boolean overbefore_set_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_set_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2896,7 +2896,7 @@ public static int overbefore_set_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overbefore_span_date(Pointer arg0, int arg1) { + public static boolean overbefore_span_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_span_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2909,7 +2909,7 @@ public static int overbefore_span_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overbefore_span_timestamptz(Pointer arg0, int arg1) { + public static boolean overbefore_span_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_span_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2922,7 +2922,7 @@ public static int overbefore_span_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overbefore_spanset_date(Pointer arg0, int arg1) { + public static boolean overbefore_spanset_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_spanset_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2935,7 +2935,7 @@ public static int overbefore_spanset_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overbefore_spanset_timestamptz(Pointer arg0, int arg1) { + public static boolean overbefore_spanset_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_spanset_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2948,7 +2948,7 @@ public static int overbefore_spanset_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overbefore_tbox_tbox(Pointer arg0, Pointer arg1) { + public static boolean overbefore_tbox_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_tbox_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2961,7 +2961,7 @@ public static int overbefore_tbox_tbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overbefore_tbox_tnumber(Pointer arg0, Pointer arg1) { + public static boolean overbefore_tbox_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_tbox_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2974,7 +2974,7 @@ public static int overbefore_tbox_tnumber(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overbefore_timestamptz_set(int arg0, Pointer arg1) { + public static boolean overbefore_timestamptz_set(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_timestamptz_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2987,7 +2987,7 @@ public static int overbefore_timestamptz_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overbefore_timestamptz_span(int arg0, Pointer arg1) { + public static boolean overbefore_timestamptz_span(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_timestamptz_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3000,7 +3000,7 @@ public static int overbefore_timestamptz_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overbefore_timestamptz_spanset(int arg0, Pointer arg1) { + public static boolean overbefore_timestamptz_spanset(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_timestamptz_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3013,7 +3013,7 @@ public static int overbefore_timestamptz_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overlaps_set_set(Pointer arg0, Pointer arg1) { + public static boolean overlaps_set_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overlaps_set_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3026,7 +3026,7 @@ public static int overlaps_set_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overlaps_span_span(Pointer arg0, Pointer arg1) { + public static boolean overlaps_span_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overlaps_span_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3039,7 +3039,7 @@ public static int overlaps_span_span(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overlaps_span_spanset(Pointer arg0, Pointer arg1) { + public static boolean overlaps_span_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overlaps_span_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3052,7 +3052,7 @@ public static int overlaps_span_spanset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overlaps_spanset_span(Pointer arg0, Pointer arg1) { + public static boolean overlaps_spanset_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overlaps_spanset_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3065,7 +3065,7 @@ public static int overlaps_spanset_span(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overlaps_spanset_spanset(Pointer arg0, Pointer arg1) { + public static boolean overlaps_spanset_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overlaps_spanset_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3078,7 +3078,7 @@ public static int overlaps_spanset_spanset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overlaps_tbox_tbox(Pointer arg0, Pointer arg1) { + public static boolean overlaps_tbox_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overlaps_tbox_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3091,7 +3091,7 @@ public static int overlaps_tbox_tbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overlaps_tbox_tnumber(Pointer arg0, Pointer arg1) { + public static boolean overlaps_tbox_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overlaps_tbox_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3104,7 +3104,7 @@ public static int overlaps_tbox_tnumber(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_bigint_set(int arg0, Pointer arg1) { + public static boolean overleft_bigint_set(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_bigint_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3117,7 +3117,7 @@ public static int overleft_bigint_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_bigint_span(int arg0, Pointer arg1) { + public static boolean overleft_bigint_span(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_bigint_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3130,7 +3130,7 @@ public static int overleft_bigint_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_bigint_spanset(int arg0, Pointer arg1) { + public static boolean overleft_bigint_spanset(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_bigint_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3143,7 +3143,7 @@ public static int overleft_bigint_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_float_set(double arg0, Pointer arg1) { + public static boolean overleft_float_set(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_float_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3156,7 +3156,7 @@ public static int overleft_float_set(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_float_span(double arg0, Pointer arg1) { + public static boolean overleft_float_span(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_float_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3169,7 +3169,7 @@ public static int overleft_float_span(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_float_spanset(double arg0, Pointer arg1) { + public static boolean overleft_float_spanset(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_float_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3182,7 +3182,7 @@ public static int overleft_float_spanset(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_int_set(int arg0, Pointer arg1) { + public static boolean overleft_int_set(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_int_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3195,7 +3195,7 @@ public static int overleft_int_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_int_span(int arg0, Pointer arg1) { + public static boolean overleft_int_span(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_int_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3208,7 +3208,7 @@ public static int overleft_int_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_int_spanset(int arg0, Pointer arg1) { + public static boolean overleft_int_spanset(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_int_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3221,7 +3221,7 @@ public static int overleft_int_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_set_bigint(Pointer arg0, int arg1) { + public static boolean overleft_set_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_set_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3234,7 +3234,7 @@ public static int overleft_set_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_set_float(Pointer arg0, double arg1) { + public static boolean overleft_set_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_set_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3247,7 +3247,7 @@ public static int overleft_set_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_set_int(Pointer arg0, int arg1) { + public static boolean overleft_set_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_set_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3260,7 +3260,7 @@ public static int overleft_set_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_set_set(Pointer arg0, Pointer arg1) { + public static boolean overleft_set_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_set_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3273,7 +3273,7 @@ public static int overleft_set_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_set_text(Pointer arg0, Pointer arg1) { + public static boolean overleft_set_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_set_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3286,7 +3286,7 @@ public static int overleft_set_text(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_span_bigint(Pointer arg0, int arg1) { + public static boolean overleft_span_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_span_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3299,7 +3299,7 @@ public static int overleft_span_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_span_float(Pointer arg0, double arg1) { + public static boolean overleft_span_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_span_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3312,7 +3312,7 @@ public static int overleft_span_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_span_int(Pointer arg0, int arg1) { + public static boolean overleft_span_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_span_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3325,7 +3325,7 @@ public static int overleft_span_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_span_span(Pointer arg0, Pointer arg1) { + public static boolean overleft_span_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_span_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3338,7 +3338,7 @@ public static int overleft_span_span(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_span_spanset(Pointer arg0, Pointer arg1) { + public static boolean overleft_span_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_span_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3351,7 +3351,7 @@ public static int overleft_span_spanset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_spanset_bigint(Pointer arg0, int arg1) { + public static boolean overleft_spanset_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_spanset_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3364,7 +3364,7 @@ public static int overleft_spanset_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_spanset_float(Pointer arg0, double arg1) { + public static boolean overleft_spanset_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_spanset_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3377,7 +3377,7 @@ public static int overleft_spanset_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_spanset_int(Pointer arg0, int arg1) { + public static boolean overleft_spanset_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_spanset_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3390,7 +3390,7 @@ public static int overleft_spanset_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_spanset_span(Pointer arg0, Pointer arg1) { + public static boolean overleft_spanset_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_spanset_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3403,7 +3403,7 @@ public static int overleft_spanset_span(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_spanset_spanset(Pointer arg0, Pointer arg1) { + public static boolean overleft_spanset_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_spanset_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3416,7 +3416,7 @@ public static int overleft_spanset_spanset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_tbox_tbox(Pointer arg0, Pointer arg1) { + public static boolean overleft_tbox_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_tbox_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3429,7 +3429,7 @@ public static int overleft_tbox_tbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_tbox_tnumber(Pointer arg0, Pointer arg1) { + public static boolean overleft_tbox_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_tbox_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3442,7 +3442,7 @@ public static int overleft_tbox_tnumber(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_text_set(Pointer arg0, Pointer arg1) { + public static boolean overleft_text_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_text_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3455,7 +3455,7 @@ public static int overleft_text_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_bigint_set(int arg0, Pointer arg1) { + public static boolean overright_bigint_set(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_bigint_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3468,7 +3468,7 @@ public static int overright_bigint_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_bigint_span(int arg0, Pointer arg1) { + public static boolean overright_bigint_span(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_bigint_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3481,7 +3481,7 @@ public static int overright_bigint_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_bigint_spanset(int arg0, Pointer arg1) { + public static boolean overright_bigint_spanset(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_bigint_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3494,7 +3494,7 @@ public static int overright_bigint_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_float_set(double arg0, Pointer arg1) { + public static boolean overright_float_set(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_float_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3507,7 +3507,7 @@ public static int overright_float_set(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_float_span(double arg0, Pointer arg1) { + public static boolean overright_float_span(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_float_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3520,7 +3520,7 @@ public static int overright_float_span(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_float_spanset(double arg0, Pointer arg1) { + public static boolean overright_float_spanset(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_float_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3533,7 +3533,7 @@ public static int overright_float_spanset(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_int_set(int arg0, Pointer arg1) { + public static boolean overright_int_set(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_int_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3546,7 +3546,7 @@ public static int overright_int_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_int_span(int arg0, Pointer arg1) { + public static boolean overright_int_span(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_int_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3559,7 +3559,7 @@ public static int overright_int_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_int_spanset(int arg0, Pointer arg1) { + public static boolean overright_int_spanset(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_int_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3572,7 +3572,7 @@ public static int overright_int_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_set_bigint(Pointer arg0, int arg1) { + public static boolean overright_set_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_set_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3585,7 +3585,7 @@ public static int overright_set_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_set_float(Pointer arg0, double arg1) { + public static boolean overright_set_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_set_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3598,7 +3598,7 @@ public static int overright_set_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_set_int(Pointer arg0, int arg1) { + public static boolean overright_set_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_set_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3611,7 +3611,7 @@ public static int overright_set_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_set_set(Pointer arg0, Pointer arg1) { + public static boolean overright_set_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_set_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3624,7 +3624,7 @@ public static int overright_set_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_set_text(Pointer arg0, Pointer arg1) { + public static boolean overright_set_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_set_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3637,7 +3637,7 @@ public static int overright_set_text(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_span_bigint(Pointer arg0, int arg1) { + public static boolean overright_span_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_span_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3650,7 +3650,7 @@ public static int overright_span_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_span_float(Pointer arg0, double arg1) { + public static boolean overright_span_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_span_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3663,7 +3663,7 @@ public static int overright_span_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_span_int(Pointer arg0, int arg1) { + public static boolean overright_span_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_span_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3676,7 +3676,7 @@ public static int overright_span_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_span_span(Pointer arg0, Pointer arg1) { + public static boolean overright_span_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_span_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3689,7 +3689,7 @@ public static int overright_span_span(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_span_spanset(Pointer arg0, Pointer arg1) { + public static boolean overright_span_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_span_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3702,7 +3702,7 @@ public static int overright_span_spanset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_spanset_bigint(Pointer arg0, int arg1) { + public static boolean overright_spanset_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_spanset_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3715,7 +3715,7 @@ public static int overright_spanset_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_spanset_float(Pointer arg0, double arg1) { + public static boolean overright_spanset_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_spanset_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3728,7 +3728,7 @@ public static int overright_spanset_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_spanset_int(Pointer arg0, int arg1) { + public static boolean overright_spanset_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_spanset_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3741,7 +3741,7 @@ public static int overright_spanset_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_spanset_span(Pointer arg0, Pointer arg1) { + public static boolean overright_spanset_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_spanset_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3754,7 +3754,7 @@ public static int overright_spanset_span(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_spanset_spanset(Pointer arg0, Pointer arg1) { + public static boolean overright_spanset_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_spanset_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3767,7 +3767,7 @@ public static int overright_spanset_spanset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_tbox_tbox(Pointer arg0, Pointer arg1) { + public static boolean overright_tbox_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_tbox_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3780,7 +3780,7 @@ public static int overright_tbox_tbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_tbox_tnumber(Pointer arg0, Pointer arg1) { + public static boolean overright_tbox_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_tbox_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3793,7 +3793,7 @@ public static int overright_tbox_tnumber(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_text_set(Pointer arg0, Pointer arg1) { + public static boolean overright_text_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_text_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3806,7 +3806,7 @@ public static int overright_text_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_bigint_set(int arg0, Pointer arg1) { + public static boolean right_bigint_set(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_bigint_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3819,7 +3819,7 @@ public static int right_bigint_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_bigint_span(int arg0, Pointer arg1) { + public static boolean right_bigint_span(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_bigint_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3832,7 +3832,7 @@ public static int right_bigint_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_bigint_spanset(int arg0, Pointer arg1) { + public static boolean right_bigint_spanset(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_bigint_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3845,7 +3845,7 @@ public static int right_bigint_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_float_set(double arg0, Pointer arg1) { + public static boolean right_float_set(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_float_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3858,7 +3858,7 @@ public static int right_float_set(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_float_span(double arg0, Pointer arg1) { + public static boolean right_float_span(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_float_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3871,7 +3871,7 @@ public static int right_float_span(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_float_spanset(double arg0, Pointer arg1) { + public static boolean right_float_spanset(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_float_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3884,7 +3884,7 @@ public static int right_float_spanset(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_int_set(int arg0, Pointer arg1) { + public static boolean right_int_set(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_int_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3897,7 +3897,7 @@ public static int right_int_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_int_span(int arg0, Pointer arg1) { + public static boolean right_int_span(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_int_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3910,7 +3910,7 @@ public static int right_int_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_int_spanset(int arg0, Pointer arg1) { + public static boolean right_int_spanset(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_int_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3923,7 +3923,7 @@ public static int right_int_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_set_bigint(Pointer arg0, int arg1) { + public static boolean right_set_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_set_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3936,7 +3936,7 @@ public static int right_set_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_set_float(Pointer arg0, double arg1) { + public static boolean right_set_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_set_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3949,7 +3949,7 @@ public static int right_set_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_set_int(Pointer arg0, int arg1) { + public static boolean right_set_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_set_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3962,7 +3962,7 @@ public static int right_set_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_set_set(Pointer arg0, Pointer arg1) { + public static boolean right_set_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_set_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3975,7 +3975,7 @@ public static int right_set_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_set_text(Pointer arg0, Pointer arg1) { + public static boolean right_set_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_set_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3988,7 +3988,7 @@ public static int right_set_text(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_span_bigint(Pointer arg0, int arg1) { + public static boolean right_span_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_span_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4001,7 +4001,7 @@ public static int right_span_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_span_float(Pointer arg0, double arg1) { + public static boolean right_span_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_span_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4014,7 +4014,7 @@ public static int right_span_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_span_int(Pointer arg0, int arg1) { + public static boolean right_span_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_span_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4027,7 +4027,7 @@ public static int right_span_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_span_span(Pointer arg0, Pointer arg1) { + public static boolean right_span_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_span_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4040,7 +4040,7 @@ public static int right_span_span(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_span_spanset(Pointer arg0, Pointer arg1) { + public static boolean right_span_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_span_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4053,7 +4053,7 @@ public static int right_span_spanset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_spanset_bigint(Pointer arg0, int arg1) { + public static boolean right_spanset_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_spanset_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4066,7 +4066,7 @@ public static int right_spanset_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_spanset_float(Pointer arg0, double arg1) { + public static boolean right_spanset_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_spanset_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4079,7 +4079,7 @@ public static int right_spanset_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_spanset_int(Pointer arg0, int arg1) { + public static boolean right_spanset_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_spanset_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4092,7 +4092,7 @@ public static int right_spanset_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_spanset_span(Pointer arg0, Pointer arg1) { + public static boolean right_spanset_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_spanset_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4105,7 +4105,7 @@ public static int right_spanset_span(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_spanset_spanset(Pointer arg0, Pointer arg1) { + public static boolean right_spanset_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_spanset_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4118,7 +4118,7 @@ public static int right_spanset_spanset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_tbox_tbox(Pointer arg0, Pointer arg1) { + public static boolean right_tbox_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_tbox_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4131,7 +4131,7 @@ public static int right_tbox_tbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_tbox_tnumber(Pointer arg0, Pointer arg1) { + public static boolean right_tbox_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_tbox_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4144,7 +4144,7 @@ public static int right_tbox_tnumber(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_text_set(Pointer arg0, Pointer arg1) { + public static boolean right_text_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_text_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4157,7 +4157,7 @@ public static int right_text_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: same predicate (pure box equality)

*/ - public static int same_numspan_tnumber(Pointer arg0, Pointer arg1) { + public static boolean same_numspan_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "same_numspan_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4170,7 +4170,7 @@ public static int same_numspan_tnumber(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: same predicate (pure box equality)

*/ - public static int same_tbox_tbox(Pointer arg0, Pointer arg1) { + public static boolean same_tbox_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "same_tbox_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4183,7 +4183,7 @@ public static int same_tbox_tbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: same predicate (pure box equality)

*/ - public static int same_tbox_tnumber(Pointer arg0, Pointer arg1) { + public static boolean same_tbox_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "same_tbox_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4196,7 +4196,7 @@ public static int same_tbox_tnumber(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: same predicate (pure box equality)

*/ - public static int same_temporal_tstzspan(Pointer arg0, Pointer arg1) { + public static boolean same_temporal_tstzspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "same_temporal_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4209,7 +4209,7 @@ public static int same_temporal_tstzspan(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: same predicate (pure box equality)

*/ - public static int same_tnumber_numspan(Pointer arg0, Pointer arg1) { + public static boolean same_tnumber_numspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "same_tnumber_numspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4222,7 +4222,7 @@ public static int same_tnumber_numspan(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: same predicate (pure box equality)

*/ - public static int same_tnumber_tbox(Pointer arg0, Pointer arg1) { + public static boolean same_tnumber_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "same_tnumber_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4235,7 +4235,7 @@ public static int same_tnumber_tbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: same predicate (pure box equality)

*/ - public static int same_tstzspan_temporal(Pointer arg0, Pointer arg1) { + public static boolean same_tstzspan_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "same_tstzspan_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4248,7 +4248,7 @@ public static int same_tstzspan_temporal(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: arithmetic op on temporal number (per-instant)

*/ - public static Pointer sub_float_tfloat(double arg0, Pointer arg1) { + public static jnr.ffi.Pointer sub_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "sub_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4261,7 +4261,7 @@ public static Pointer sub_float_tfloat(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: arithmetic op on temporal number (per-instant)

*/ - public static Pointer sub_int_tint(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer sub_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "sub_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4274,7 +4274,7 @@ public static Pointer sub_int_tint(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: arithmetic op on temporal number (per-instant)

*/ - public static Pointer sub_tfloat_float(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer sub_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "sub_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4287,7 +4287,7 @@ public static Pointer sub_tfloat_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: arithmetic op on temporal number (per-instant)

*/ - public static Pointer sub_tint_int(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer sub_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "sub_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4300,7 +4300,7 @@ public static Pointer sub_tint_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: arithmetic op on temporal number (per-instant)

*/ - public static Pointer sub_tnumber_tnumber(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer sub_tnumber_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "sub_tnumber_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4313,12 +4313,12 @@ public static Pointer sub_tnumber_tnumber(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int tboxfloat_xmax(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tboxfloat_xmax(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tboxfloat_xmax requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tboxfloat_xmax(arg0, arg1); + return GeneratedFunctions.tboxfloat_xmax(arg0); } /** @@ -4326,12 +4326,12 @@ public static int tboxfloat_xmax(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int tboxfloat_xmin(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tboxfloat_xmin(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tboxfloat_xmin requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tboxfloat_xmin(arg0, arg1); + return GeneratedFunctions.tboxfloat_xmin(arg0); } /** @@ -4339,12 +4339,12 @@ public static int tboxfloat_xmin(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int tboxint_xmax(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tboxint_xmax(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tboxint_xmax requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tboxint_xmax(arg0, arg1); + return GeneratedFunctions.tboxint_xmax(arg0); } /** @@ -4352,12 +4352,12 @@ public static int tboxint_xmax(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int tboxint_xmin(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tboxint_xmin(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tboxint_xmin requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tboxint_xmin(arg0, arg1); + return GeneratedFunctions.tboxint_xmin(arg0); } /** @@ -4365,7 +4365,7 @@ public static int tboxint_xmin(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: transform/normalize (pure)

*/ - public static Pointer temparr_round(Pointer arg0, int arg1, int arg2) { + public static jnr.ffi.Pointer temparr_round(jnr.ffi.Pointer arg0, int arg1, int arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temparr_round requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4378,7 +4378,7 @@ public static Pointer temparr_round(Pointer arg0, int arg1, int arg2) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer teq_bool_tbool(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer teq_bool_tbool(boolean arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "teq_bool_tbool requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4391,7 +4391,7 @@ public static Pointer teq_bool_tbool(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer teq_float_tfloat(double arg0, Pointer arg1) { + public static jnr.ffi.Pointer teq_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "teq_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4404,7 +4404,7 @@ public static Pointer teq_float_tfloat(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer teq_int_tint(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer teq_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "teq_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4417,7 +4417,7 @@ public static Pointer teq_int_tint(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer teq_tbool_bool(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer teq_tbool_bool(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "teq_tbool_bool requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4430,7 +4430,7 @@ public static Pointer teq_tbool_bool(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer teq_temporal_temporal(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer teq_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "teq_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4443,7 +4443,7 @@ public static Pointer teq_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer teq_text_ttext(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer teq_text_ttext(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "teq_text_ttext requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4456,7 +4456,7 @@ public static Pointer teq_text_ttext(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer teq_tfloat_float(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer teq_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "teq_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4469,7 +4469,7 @@ public static Pointer teq_tfloat_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer teq_tint_int(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer teq_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "teq_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4482,7 +4482,7 @@ public static Pointer teq_tint_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer teq_ttext_text(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer teq_ttext_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "teq_ttext_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4495,7 +4495,7 @@ public static Pointer teq_ttext_text(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int text_cmp(Pointer arg0, Pointer arg1) { + public static int text_cmp(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "text_cmp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4508,7 +4508,7 @@ public static int text_cmp(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer text_copy(Pointer arg0) { + public static jnr.ffi.Pointer text_copy(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "text_copy requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4521,7 +4521,7 @@ public static Pointer text_copy(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer text_initcap(Pointer arg0) { + public static jnr.ffi.Pointer text_initcap(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "text_initcap requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4534,7 +4534,7 @@ public static Pointer text_initcap(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer text_lower(Pointer arg0) { + public static jnr.ffi.Pointer text_lower(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "text_lower requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4547,7 +4547,7 @@ public static Pointer text_lower(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer text_to_set(Pointer arg0) { + public static jnr.ffi.Pointer text_to_set(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "text_to_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4560,7 +4560,7 @@ public static Pointer text_to_set(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer text_union_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer text_union_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "text_union_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4573,7 +4573,7 @@ public static Pointer text_union_transfn(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer text_upper(Pointer arg0) { + public static jnr.ffi.Pointer text_upper(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "text_upper requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4586,7 +4586,7 @@ public static Pointer text_upper(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: text concatenation (per-instant)

*/ - public static Pointer textcat_text_text(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer textcat_text_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "textcat_text_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4599,7 +4599,7 @@ public static Pointer textcat_text_text(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: text concatenation (per-instant)

*/ - public static Pointer textcat_text_textset(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer textcat_text_textset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "textcat_text_textset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4612,7 +4612,7 @@ public static Pointer textcat_text_textset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: text concatenation (per-instant)

*/ - public static Pointer textcat_text_ttext(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer textcat_text_ttext(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "textcat_text_ttext requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4625,7 +4625,7 @@ public static Pointer textcat_text_ttext(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: text concatenation (per-instant)

*/ - public static Pointer textcat_textset_text(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer textcat_textset_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "textcat_textset_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4638,7 +4638,7 @@ public static Pointer textcat_textset_text(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: text concatenation (per-instant)

*/ - public static Pointer textcat_ttext_text(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer textcat_ttext_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "textcat_ttext_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4651,7 +4651,7 @@ public static Pointer textcat_ttext_text(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: text concatenation (per-instant)

*/ - public static Pointer textcat_ttext_ttext(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer textcat_ttext_ttext(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "textcat_ttext_ttext requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4664,7 +4664,7 @@ public static Pointer textcat_ttext_ttext(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: transform/normalize (pure)

*/ - public static Pointer tfloatbox_expand(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer tfloatbox_expand(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloatbox_expand requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4677,7 +4677,7 @@ public static Pointer tfloatbox_expand(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: transform/normalize (pure)

*/ - public static Pointer tfloatbox_shift_scale(Pointer arg0, double arg1, double arg2, int arg3, int arg4) { + public static jnr.ffi.Pointer tfloatbox_shift_scale(jnr.ffi.Pointer arg0, double arg1, double arg2, boolean arg3, boolean arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloatbox_shift_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4690,7 +4690,7 @@ public static Pointer tfloatbox_shift_scale(Pointer arg0, double arg1, double ar *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tge_float_tfloat(double arg0, Pointer arg1) { + public static jnr.ffi.Pointer tge_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tge_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4703,7 +4703,7 @@ public static Pointer tge_float_tfloat(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tge_int_tint(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer tge_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tge_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4716,7 +4716,7 @@ public static Pointer tge_int_tint(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tge_temporal_temporal(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tge_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tge_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4729,7 +4729,7 @@ public static Pointer tge_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tge_text_ttext(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tge_text_ttext(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tge_text_ttext requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4742,7 +4742,7 @@ public static Pointer tge_text_ttext(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tge_tfloat_float(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer tge_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tge_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4755,7 +4755,7 @@ public static Pointer tge_tfloat_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tge_tint_int(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tge_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tge_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4768,7 +4768,7 @@ public static Pointer tge_tint_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tge_ttext_text(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tge_ttext_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tge_ttext_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4781,7 +4781,7 @@ public static Pointer tge_ttext_text(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tgt_float_tfloat(double arg0, Pointer arg1) { + public static jnr.ffi.Pointer tgt_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgt_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4794,7 +4794,7 @@ public static Pointer tgt_float_tfloat(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tgt_int_tint(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer tgt_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgt_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4807,7 +4807,7 @@ public static Pointer tgt_int_tint(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tgt_temporal_temporal(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tgt_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgt_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4820,7 +4820,7 @@ public static Pointer tgt_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tgt_text_ttext(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tgt_text_ttext(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgt_text_ttext requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4833,7 +4833,7 @@ public static Pointer tgt_text_ttext(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tgt_tfloat_float(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer tgt_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgt_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4846,7 +4846,7 @@ public static Pointer tgt_tfloat_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tgt_tint_int(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tgt_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgt_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4859,7 +4859,7 @@ public static Pointer tgt_tint_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tgt_ttext_text(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tgt_ttext_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgt_ttext_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4872,7 +4872,7 @@ public static Pointer tgt_ttext_text(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static int timestamp_to_date(int arg0) { + public static int timestamp_to_date(java.time.LocalDateTime arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "timestamp_to_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4885,7 +4885,7 @@ public static int timestamp_to_date(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer timestamptz_extent_transfn(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer timestamptz_extent_transfn(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "timestamptz_extent_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4898,7 +4898,7 @@ public static Pointer timestamptz_extent_transfn(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int timestamptz_get_bin(int arg0, Pointer arg1, int arg2) { + public static java.time.OffsetDateTime timestamptz_get_bin(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1, java.time.OffsetDateTime arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "timestamptz_get_bin requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4911,7 +4911,7 @@ public static int timestamptz_get_bin(int arg0, Pointer arg1, int arg2) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: transform/normalize (pure)

*/ - public static int timestamptz_shift(int arg0, Pointer arg1) { + public static java.time.OffsetDateTime timestamptz_shift(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "timestamptz_shift requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4924,7 +4924,7 @@ public static int timestamptz_shift(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer timestamptz_tcount_transfn(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer timestamptz_tcount_transfn(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "timestamptz_tcount_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4937,7 +4937,7 @@ public static Pointer timestamptz_tcount_transfn(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static int timestamptz_to_date(int arg0) { + public static int timestamptz_to_date(java.time.OffsetDateTime arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "timestamptz_to_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4950,7 +4950,7 @@ public static int timestamptz_to_date(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer timestamptz_to_set(int arg0) { + public static jnr.ffi.Pointer timestamptz_to_set(java.time.OffsetDateTime arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "timestamptz_to_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4963,7 +4963,7 @@ public static Pointer timestamptz_to_set(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer timestamptz_to_span(int arg0) { + public static jnr.ffi.Pointer timestamptz_to_span(java.time.OffsetDateTime arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "timestamptz_to_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4976,7 +4976,7 @@ public static Pointer timestamptz_to_span(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer timestamptz_to_spanset(int arg0) { + public static jnr.ffi.Pointer timestamptz_to_spanset(java.time.OffsetDateTime arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "timestamptz_to_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -4989,7 +4989,7 @@ public static Pointer timestamptz_to_spanset(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer timestamptz_to_tbox(int arg0) { + public static jnr.ffi.Pointer timestamptz_to_tbox(java.time.OffsetDateTime arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "timestamptz_to_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5002,7 +5002,7 @@ public static Pointer timestamptz_to_tbox(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int timestamptz_tprecision(int arg0, Pointer arg1, int arg2) { + public static java.time.OffsetDateTime timestamptz_tprecision(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1, java.time.OffsetDateTime arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "timestamptz_tprecision requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5015,7 +5015,7 @@ public static int timestamptz_tprecision(int arg0, Pointer arg1, int arg2) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer timestamptz_union_transfn(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer timestamptz_union_transfn(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "timestamptz_union_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5028,7 +5028,7 @@ public static Pointer timestamptz_union_transfn(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: transform/normalize (pure)

*/ - public static Pointer tintbox_expand(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tintbox_expand(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tintbox_expand requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5041,7 +5041,7 @@ public static Pointer tintbox_expand(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: transform/normalize (pure)

*/ - public static Pointer tintbox_shift_scale(Pointer arg0, int arg1, int arg2, int arg3, int arg4) { + public static jnr.ffi.Pointer tintbox_shift_scale(jnr.ffi.Pointer arg0, int arg1, int arg2, boolean arg3, boolean arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tintbox_shift_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5054,7 +5054,7 @@ public static Pointer tintbox_shift_scale(Pointer arg0, int arg1, int arg2, int *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tle_float_tfloat(double arg0, Pointer arg1) { + public static jnr.ffi.Pointer tle_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tle_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5067,7 +5067,7 @@ public static Pointer tle_float_tfloat(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tle_int_tint(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer tle_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tle_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5080,7 +5080,7 @@ public static Pointer tle_int_tint(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tle_temporal_temporal(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tle_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tle_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5093,7 +5093,7 @@ public static Pointer tle_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tle_text_ttext(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tle_text_ttext(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tle_text_ttext requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5106,7 +5106,7 @@ public static Pointer tle_text_ttext(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tle_tfloat_float(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer tle_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tle_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5119,7 +5119,7 @@ public static Pointer tle_tfloat_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tle_tint_int(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tle_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tle_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5132,7 +5132,7 @@ public static Pointer tle_tint_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tle_ttext_text(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tle_ttext_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tle_ttext_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5145,7 +5145,7 @@ public static Pointer tle_ttext_text(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tlt_float_tfloat(double arg0, Pointer arg1) { + public static jnr.ffi.Pointer tlt_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tlt_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5158,7 +5158,7 @@ public static Pointer tlt_float_tfloat(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tlt_int_tint(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer tlt_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tlt_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5171,7 +5171,7 @@ public static Pointer tlt_int_tint(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tlt_temporal_temporal(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tlt_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tlt_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5184,7 +5184,7 @@ public static Pointer tlt_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tlt_text_ttext(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tlt_text_ttext(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tlt_text_ttext requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5197,7 +5197,7 @@ public static Pointer tlt_text_ttext(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tlt_tfloat_float(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer tlt_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tlt_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5210,7 +5210,7 @@ public static Pointer tlt_tfloat_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tlt_tint_int(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tlt_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tlt_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5223,7 +5223,7 @@ public static Pointer tlt_tint_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tlt_ttext_text(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tlt_ttext_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tlt_ttext_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5236,7 +5236,7 @@ public static Pointer tlt_ttext_text(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tne_bool_tbool(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer tne_bool_tbool(boolean arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tne_bool_tbool requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5249,7 +5249,7 @@ public static Pointer tne_bool_tbool(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tne_float_tfloat(double arg0, Pointer arg1) { + public static jnr.ffi.Pointer tne_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tne_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5262,7 +5262,7 @@ public static Pointer tne_float_tfloat(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tne_int_tint(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer tne_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tne_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5275,7 +5275,7 @@ public static Pointer tne_int_tint(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tne_tbool_bool(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tne_tbool_bool(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tne_tbool_bool requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5288,7 +5288,7 @@ public static Pointer tne_tbool_bool(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tne_temporal_temporal(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tne_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tne_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5301,7 +5301,7 @@ public static Pointer tne_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tne_text_ttext(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tne_text_ttext(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tne_text_ttext requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5314,7 +5314,7 @@ public static Pointer tne_text_ttext(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tne_tfloat_float(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer tne_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tne_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5327,7 +5327,7 @@ public static Pointer tne_tfloat_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tne_tint_int(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tne_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tne_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5340,7 +5340,7 @@ public static Pointer tne_tint_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tne_ttext_text(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tne_ttext_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tne_ttext_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5353,7 +5353,7 @@ public static Pointer tne_ttext_text(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_bigint_set(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_bigint_set(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_bigint_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5366,7 +5366,7 @@ public static Pointer union_bigint_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_bigint_span(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer union_bigint_span(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_bigint_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5379,7 +5379,7 @@ public static Pointer union_bigint_span(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_bigint_spanset(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_bigint_spanset(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_bigint_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5392,7 +5392,7 @@ public static Pointer union_bigint_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_date_set(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_date_set(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_date_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5405,7 +5405,7 @@ public static Pointer union_date_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_date_span(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer union_date_span(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_date_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5418,7 +5418,7 @@ public static Pointer union_date_span(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_date_spanset(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_date_spanset(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_date_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5431,7 +5431,7 @@ public static Pointer union_date_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_float_set(double arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_float_set(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_float_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5444,7 +5444,7 @@ public static Pointer union_float_set(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_float_span(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer union_float_span(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_float_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5457,7 +5457,7 @@ public static Pointer union_float_span(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_float_spanset(double arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_float_spanset(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_float_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5470,7 +5470,7 @@ public static Pointer union_float_spanset(double arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_int_set(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_int_set(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_int_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5483,7 +5483,7 @@ public static Pointer union_int_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_int_span(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_int_span(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_int_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5496,7 +5496,7 @@ public static Pointer union_int_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_int_spanset(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_int_spanset(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_int_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5509,7 +5509,7 @@ public static Pointer union_int_spanset(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_set_bigint(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer union_set_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_set_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5522,7 +5522,7 @@ public static Pointer union_set_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_set_date(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer union_set_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_set_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5535,7 +5535,7 @@ public static Pointer union_set_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_set_float(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer union_set_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_set_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5548,7 +5548,7 @@ public static Pointer union_set_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_set_int(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer union_set_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_set_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5561,7 +5561,7 @@ public static Pointer union_set_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_set_set(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_set_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_set_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5574,7 +5574,7 @@ public static Pointer union_set_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_set_text(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_set_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_set_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5587,7 +5587,7 @@ public static Pointer union_set_text(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_set_timestamptz(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer union_set_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_set_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5600,7 +5600,7 @@ public static Pointer union_set_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_span_bigint(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer union_span_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_span_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5613,7 +5613,7 @@ public static Pointer union_span_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_span_date(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer union_span_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_span_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5626,7 +5626,7 @@ public static Pointer union_span_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_span_float(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer union_span_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_span_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5639,7 +5639,7 @@ public static Pointer union_span_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_span_int(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer union_span_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_span_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5652,7 +5652,7 @@ public static Pointer union_span_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_span_span(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_span_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_span_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5665,7 +5665,7 @@ public static Pointer union_span_span(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_span_spanset(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_span_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_span_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5678,7 +5678,7 @@ public static Pointer union_span_spanset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_span_timestamptz(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer union_span_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_span_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5691,7 +5691,7 @@ public static Pointer union_span_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_spanset_bigint(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer union_spanset_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_spanset_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5704,7 +5704,7 @@ public static Pointer union_spanset_bigint(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_spanset_date(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer union_spanset_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_spanset_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5717,7 +5717,7 @@ public static Pointer union_spanset_date(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_spanset_float(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer union_spanset_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_spanset_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5730,7 +5730,7 @@ public static Pointer union_spanset_float(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_spanset_int(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer union_spanset_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_spanset_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5743,7 +5743,7 @@ public static Pointer union_spanset_int(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_spanset_span(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_spanset_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_spanset_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5756,7 +5756,7 @@ public static Pointer union_spanset_span(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_spanset_spanset(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_spanset_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_spanset_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5769,7 +5769,7 @@ public static Pointer union_spanset_spanset(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_spanset_timestamptz(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer union_spanset_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_spanset_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5782,7 +5782,7 @@ public static Pointer union_spanset_timestamptz(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_tbox_tbox(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer union_tbox_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_tbox_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5795,7 +5795,7 @@ public static Pointer union_tbox_tbox(Pointer arg0, Pointer arg1, int arg2) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_text_set(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_text_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_text_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5808,7 +5808,7 @@ public static Pointer union_text_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_timestamptz_set(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_timestamptz_set(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_timestamptz_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5821,7 +5821,7 @@ public static Pointer union_timestamptz_set(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_timestamptz_span(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_timestamptz_span(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_timestamptz_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5834,7 +5834,7 @@ public static Pointer union_timestamptz_span(int arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_timestamptz_spanset(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_timestamptz_spanset(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_timestamptz_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5847,7 +5847,7 @@ public static Pointer union_timestamptz_spanset(int arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int adjacent_numspan_tnumber(Pointer arg0, Pointer arg1) { + public static boolean adjacent_numspan_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_numspan_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5860,7 +5860,7 @@ public static int adjacent_numspan_tnumber(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int adjacent_temporal_tstzspan(Pointer arg0, Pointer arg1) { + public static boolean adjacent_temporal_tstzspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_temporal_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5873,7 +5873,7 @@ public static int adjacent_temporal_tstzspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int adjacent_tnumber_numspan(Pointer arg0, Pointer arg1) { + public static boolean adjacent_tnumber_numspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_tnumber_numspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5886,7 +5886,7 @@ public static int adjacent_tnumber_numspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int adjacent_tnumber_tbox(Pointer arg0, Pointer arg1) { + public static boolean adjacent_tnumber_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_tnumber_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5899,7 +5899,7 @@ public static int adjacent_tnumber_tbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int adjacent_tstzspan_temporal(Pointer arg0, Pointer arg1) { + public static boolean adjacent_tstzspan_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_tstzspan_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5912,7 +5912,7 @@ public static int adjacent_tstzspan_temporal(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int after_temporal_tstzspan(Pointer arg0, Pointer arg1) { + public static boolean after_temporal_tstzspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_temporal_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5925,7 +5925,7 @@ public static int after_temporal_tstzspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int after_tnumber_tbox(Pointer arg0, Pointer arg1) { + public static boolean after_tnumber_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_tnumber_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5938,7 +5938,7 @@ public static int after_tnumber_tbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int after_tstzspan_temporal(Pointer arg0, Pointer arg1) { + public static boolean after_tstzspan_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_tstzspan_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5951,7 +5951,7 @@ public static int after_tstzspan_temporal(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int before_temporal_tstzspan(Pointer arg0, Pointer arg1) { + public static boolean before_temporal_tstzspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_temporal_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5964,7 +5964,7 @@ public static int before_temporal_tstzspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int before_tnumber_tbox(Pointer arg0, Pointer arg1) { + public static boolean before_tnumber_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_tnumber_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5977,7 +5977,7 @@ public static int before_tnumber_tbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int before_tstzspan_temporal(Pointer arg0, Pointer arg1) { + public static boolean before_tstzspan_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_tstzspan_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -5990,7 +5990,7 @@ public static int before_tstzspan_temporal(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int contained_numspan_tnumber(Pointer arg0, Pointer arg1) { + public static boolean contained_numspan_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_numspan_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6003,7 +6003,7 @@ public static int contained_numspan_tnumber(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int contained_temporal_tstzspan(Pointer arg0, Pointer arg1) { + public static boolean contained_temporal_tstzspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_temporal_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6016,7 +6016,7 @@ public static int contained_temporal_tstzspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int contained_tnumber_numspan(Pointer arg0, Pointer arg1) { + public static boolean contained_tnumber_numspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_tnumber_numspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6029,7 +6029,7 @@ public static int contained_tnumber_numspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int contained_tnumber_tbox(Pointer arg0, Pointer arg1) { + public static boolean contained_tnumber_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_tnumber_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6042,7 +6042,7 @@ public static int contained_tnumber_tbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int contained_tstzspan_temporal(Pointer arg0, Pointer arg1) { + public static boolean contained_tstzspan_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_tstzspan_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6055,7 +6055,7 @@ public static int contained_tstzspan_temporal(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int contains_numspan_tnumber(Pointer arg0, Pointer arg1) { + public static boolean contains_numspan_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_numspan_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6068,7 +6068,7 @@ public static int contains_numspan_tnumber(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int contains_temporal_tstzspan(Pointer arg0, Pointer arg1) { + public static boolean contains_temporal_tstzspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_temporal_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6081,7 +6081,7 @@ public static int contains_temporal_tstzspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int contains_tnumber_numspan(Pointer arg0, Pointer arg1) { + public static boolean contains_tnumber_numspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_tnumber_numspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6094,7 +6094,7 @@ public static int contains_tnumber_numspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int contains_tnumber_tbox(Pointer arg0, Pointer arg1) { + public static boolean contains_tnumber_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_tnumber_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6107,7 +6107,7 @@ public static int contains_tnumber_tbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int contains_tstzspan_temporal(Pointer arg0, Pointer arg1) { + public static boolean contains_tstzspan_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_tstzspan_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6120,7 +6120,7 @@ public static int contains_tstzspan_temporal(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_bigintset_bigintset(Pointer arg0, Pointer arg1) { + public static long distance_bigintset_bigintset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_bigintset_bigintset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6133,7 +6133,7 @@ public static int distance_bigintset_bigintset(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_bigintspan_bigintspan(Pointer arg0, Pointer arg1) { + public static long distance_bigintspan_bigintspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_bigintspan_bigintspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6146,7 +6146,7 @@ public static int distance_bigintspan_bigintspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_bigintspanset_bigintspan(Pointer arg0, Pointer arg1) { + public static long distance_bigintspanset_bigintspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_bigintspanset_bigintspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6159,7 +6159,7 @@ public static int distance_bigintspanset_bigintspan(Pointer arg0, Pointer arg1) *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_bigintspanset_bigintspanset(Pointer arg0, Pointer arg1) { + public static long distance_bigintspanset_bigintspanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_bigintspanset_bigintspanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6172,7 +6172,7 @@ public static int distance_bigintspanset_bigintspanset(Pointer arg0, Pointer arg *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_dateset_dateset(Pointer arg0, Pointer arg1) { + public static int distance_dateset_dateset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_dateset_dateset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6185,7 +6185,7 @@ public static int distance_dateset_dateset(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_datespan_datespan(Pointer arg0, Pointer arg1) { + public static int distance_datespan_datespan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_datespan_datespan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6198,7 +6198,7 @@ public static int distance_datespan_datespan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_datespanset_datespan(Pointer arg0, Pointer arg1) { + public static int distance_datespanset_datespan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_datespanset_datespan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6211,7 +6211,7 @@ public static int distance_datespanset_datespan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_datespanset_datespanset(Pointer arg0, Pointer arg1) { + public static int distance_datespanset_datespanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_datespanset_datespanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6224,7 +6224,7 @@ public static int distance_datespanset_datespanset(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double distance_floatset_floatset(Pointer arg0, Pointer arg1) { + public static double distance_floatset_floatset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_floatset_floatset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6237,7 +6237,7 @@ public static double distance_floatset_floatset(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double distance_floatspan_floatspan(Pointer arg0, Pointer arg1) { + public static double distance_floatspan_floatspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_floatspan_floatspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6250,7 +6250,7 @@ public static double distance_floatspan_floatspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double distance_floatspanset_floatspan(Pointer arg0, Pointer arg1) { + public static double distance_floatspanset_floatspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_floatspanset_floatspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6263,7 +6263,7 @@ public static double distance_floatspanset_floatspan(Pointer arg0, Pointer arg1) *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double distance_floatspanset_floatspanset(Pointer arg0, Pointer arg1) { + public static double distance_floatspanset_floatspanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_floatspanset_floatspanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6276,7 +6276,7 @@ public static double distance_floatspanset_floatspanset(Pointer arg0, Pointer ar *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_intset_intset(Pointer arg0, Pointer arg1) { + public static int distance_intset_intset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_intset_intset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6289,7 +6289,7 @@ public static int distance_intset_intset(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_intspan_intspan(Pointer arg0, Pointer arg1) { + public static int distance_intspan_intspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_intspan_intspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6302,7 +6302,7 @@ public static int distance_intspan_intspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_intspanset_intspan(Pointer arg0, Pointer arg1) { + public static int distance_intspanset_intspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_intspanset_intspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6315,7 +6315,7 @@ public static int distance_intspanset_intspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_intspanset_intspanset(Pointer arg0, Pointer arg1) { + public static int distance_intspanset_intspanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_intspanset_intspanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6328,7 +6328,7 @@ public static int distance_intspanset_intspanset(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_set_bigint(Pointer arg0, int arg1) { + public static long distance_set_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_set_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6341,7 +6341,7 @@ public static int distance_set_bigint(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_set_date(Pointer arg0, int arg1) { + public static int distance_set_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_set_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6354,7 +6354,7 @@ public static int distance_set_date(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double distance_set_float(Pointer arg0, double arg1) { + public static double distance_set_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_set_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6367,7 +6367,7 @@ public static double distance_set_float(Pointer arg0, double arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_set_int(Pointer arg0, int arg1) { + public static int distance_set_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_set_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6380,7 +6380,7 @@ public static int distance_set_int(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double distance_set_timestamptz(Pointer arg0, int arg1) { + public static double distance_set_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_set_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6393,7 +6393,7 @@ public static double distance_set_timestamptz(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_span_bigint(Pointer arg0, int arg1) { + public static long distance_span_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_span_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6406,7 +6406,7 @@ public static int distance_span_bigint(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_span_date(Pointer arg0, int arg1) { + public static int distance_span_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_span_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6419,7 +6419,7 @@ public static int distance_span_date(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double distance_span_float(Pointer arg0, double arg1) { + public static double distance_span_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_span_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6432,7 +6432,7 @@ public static double distance_span_float(Pointer arg0, double arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_span_int(Pointer arg0, int arg1) { + public static int distance_span_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_span_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6445,7 +6445,7 @@ public static int distance_span_int(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double distance_span_timestamptz(Pointer arg0, int arg1) { + public static double distance_span_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_span_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6458,7 +6458,7 @@ public static double distance_span_timestamptz(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_spanset_bigint(Pointer arg0, int arg1) { + public static long distance_spanset_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_spanset_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6471,7 +6471,7 @@ public static int distance_spanset_bigint(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_spanset_date(Pointer arg0, int arg1) { + public static int distance_spanset_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_spanset_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6484,7 +6484,7 @@ public static int distance_spanset_date(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double distance_spanset_float(Pointer arg0, double arg1) { + public static double distance_spanset_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_spanset_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6497,7 +6497,7 @@ public static double distance_spanset_float(Pointer arg0, double arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int distance_spanset_int(Pointer arg0, int arg1) { + public static int distance_spanset_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_spanset_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6510,7 +6510,7 @@ public static int distance_spanset_int(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double distance_spanset_timestamptz(Pointer arg0, int arg1) { + public static double distance_spanset_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_spanset_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6523,7 +6523,7 @@ public static double distance_spanset_timestamptz(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double distance_tstzset_tstzset(Pointer arg0, Pointer arg1) { + public static double distance_tstzset_tstzset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_tstzset_tstzset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6536,7 +6536,7 @@ public static double distance_tstzset_tstzset(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double distance_tstzspan_tstzspan(Pointer arg0, Pointer arg1) { + public static double distance_tstzspan_tstzspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_tstzspan_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6549,7 +6549,7 @@ public static double distance_tstzspan_tstzspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double distance_tstzspanset_tstzspan(Pointer arg0, Pointer arg1) { + public static double distance_tstzspanset_tstzspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_tstzspanset_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6562,7 +6562,7 @@ public static double distance_tstzspanset_tstzspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double distance_tstzspanset_tstzspanset(Pointer arg0, Pointer arg1) { + public static double distance_tstzspanset_tstzspanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_tstzspanset_tstzspanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6575,7 +6575,7 @@ public static double distance_tstzspanset_tstzspanset(Pointer arg0, Pointer arg1 *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int left_numspan_tnumber(Pointer arg0, Pointer arg1) { + public static boolean left_numspan_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_numspan_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6588,7 +6588,7 @@ public static int left_numspan_tnumber(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int left_tnumber_numspan(Pointer arg0, Pointer arg1) { + public static boolean left_tnumber_numspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_tnumber_numspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6601,7 +6601,7 @@ public static int left_tnumber_numspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int left_tnumber_tbox(Pointer arg0, Pointer arg1) { + public static boolean left_tnumber_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_tnumber_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6614,7 +6614,7 @@ public static int left_tnumber_tbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_bigint_set(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_bigint_set(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_bigint_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6627,7 +6627,7 @@ public static Pointer minus_bigint_set(int arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_bigint_span(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_bigint_span(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_bigint_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6640,7 +6640,7 @@ public static Pointer minus_bigint_span(int arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_bigint_spanset(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_bigint_spanset(long arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_bigint_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6679,7 +6679,7 @@ public static int minus_date_int(int arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_date_set(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_date_set(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_date_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6692,7 +6692,7 @@ public static Pointer minus_date_set(int arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_date_span(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_date_span(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_date_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6705,7 +6705,7 @@ public static Pointer minus_date_span(int arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_date_spanset(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_date_spanset(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_date_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6718,7 +6718,7 @@ public static Pointer minus_date_spanset(int arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_float_set(double arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_float_set(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_float_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6731,7 +6731,7 @@ public static Pointer minus_float_set(double arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_float_span(double arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_float_span(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_float_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6744,7 +6744,7 @@ public static Pointer minus_float_span(double arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_float_spanset(double arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_float_spanset(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_float_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6757,7 +6757,7 @@ public static Pointer minus_float_spanset(double arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_int_set(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_int_set(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_int_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6770,7 +6770,7 @@ public static Pointer minus_int_set(int arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_int_span(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_int_span(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_int_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6783,7 +6783,7 @@ public static Pointer minus_int_span(int arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_int_spanset(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_int_spanset(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_int_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6796,7 +6796,7 @@ public static Pointer minus_int_spanset(int arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_set_bigint(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer minus_set_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_set_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6809,7 +6809,7 @@ public static Pointer minus_set_bigint(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_set_date(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer minus_set_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_set_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6822,7 +6822,7 @@ public static Pointer minus_set_date(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_set_float(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer minus_set_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_set_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6835,7 +6835,7 @@ public static Pointer minus_set_float(Pointer arg0, double arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_set_int(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer minus_set_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_set_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6848,7 +6848,7 @@ public static Pointer minus_set_int(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_set_set(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_set_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_set_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6861,7 +6861,7 @@ public static Pointer minus_set_set(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_set_text(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_set_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_set_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6874,7 +6874,7 @@ public static Pointer minus_set_text(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_set_timestamptz(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer minus_set_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_set_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6887,7 +6887,7 @@ public static Pointer minus_set_timestamptz(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_span_bigint(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer minus_span_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_span_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6900,7 +6900,7 @@ public static Pointer minus_span_bigint(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_span_date(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer minus_span_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_span_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6913,7 +6913,7 @@ public static Pointer minus_span_date(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_span_float(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer minus_span_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_span_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6926,7 +6926,7 @@ public static Pointer minus_span_float(Pointer arg0, double arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_span_int(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer minus_span_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_span_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6939,7 +6939,7 @@ public static Pointer minus_span_int(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_span_span(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_span_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_span_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6952,7 +6952,7 @@ public static Pointer minus_span_span(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_span_spanset(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_span_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_span_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6965,7 +6965,7 @@ public static Pointer minus_span_spanset(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_span_timestamptz(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer minus_span_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_span_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6978,7 +6978,7 @@ public static Pointer minus_span_timestamptz(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_spanset_bigint(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer minus_spanset_bigint(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_spanset_bigint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -6991,7 +6991,7 @@ public static Pointer minus_spanset_bigint(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_spanset_date(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer minus_spanset_date(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_spanset_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7004,7 +7004,7 @@ public static Pointer minus_spanset_date(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_spanset_float(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer minus_spanset_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_spanset_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7017,7 +7017,7 @@ public static Pointer minus_spanset_float(Pointer arg0, double arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_spanset_int(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer minus_spanset_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_spanset_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7030,7 +7030,7 @@ public static Pointer minus_spanset_int(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_spanset_span(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_spanset_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_spanset_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7043,7 +7043,7 @@ public static Pointer minus_spanset_span(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_spanset_spanset(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_spanset_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_spanset_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7056,7 +7056,7 @@ public static Pointer minus_spanset_spanset(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_spanset_timestamptz(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer minus_spanset_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_spanset_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7069,7 +7069,7 @@ public static Pointer minus_spanset_timestamptz(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_text_set(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_text_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_text_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7082,7 +7082,7 @@ public static Pointer minus_text_set(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static int minus_timestamptz_interval(int arg0, Pointer arg1) { + public static java.time.OffsetDateTime minus_timestamptz_interval(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_timestamptz_interval requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7095,7 +7095,7 @@ public static int minus_timestamptz_interval(int arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_timestamptz_set(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_timestamptz_set(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_timestamptz_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7108,7 +7108,7 @@ public static Pointer minus_timestamptz_set(int arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_timestamptz_span(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_timestamptz_span(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_timestamptz_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7121,7 +7121,7 @@ public static Pointer minus_timestamptz_span(int arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_timestamptz_spanset(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_timestamptz_spanset(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_timestamptz_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7134,7 +7134,7 @@ public static Pointer minus_timestamptz_spanset(int arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_timestamptz_timestamptz(int arg0, int arg1) { + public static jnr.ffi.Pointer minus_timestamptz_timestamptz(java.time.OffsetDateTime arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_timestamptz_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7147,7 +7147,7 @@ public static Pointer minus_timestamptz_timestamptz(int arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double nad_tboxfloat_tboxfloat(Pointer arg0, Pointer arg1) { + public static double nad_tboxfloat_tboxfloat(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tboxfloat_tboxfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7160,7 +7160,7 @@ public static double nad_tboxfloat_tboxfloat(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int nad_tboxint_tboxint(Pointer arg0, Pointer arg1) { + public static int nad_tboxint_tboxint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tboxint_tboxint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7173,7 +7173,7 @@ public static int nad_tboxint_tboxint(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double nad_tfloat_float(Pointer arg0, double arg1) { + public static double nad_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7186,7 +7186,7 @@ public static double nad_tfloat_float(Pointer arg0, double arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double nad_tfloat_tbox(Pointer arg0, Pointer arg1) { + public static double nad_tfloat_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tfloat_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7199,7 +7199,7 @@ public static double nad_tfloat_tbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int nad_tint_int(Pointer arg0, int arg1) { + public static int nad_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7212,7 +7212,7 @@ public static int nad_tint_int(Pointer arg0, int arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static int nad_tint_tbox(Pointer arg0, Pointer arg1) { + public static int nad_tint_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tint_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7225,7 +7225,7 @@ public static int nad_tint_tbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overafter_temporal_tstzspan(Pointer arg0, Pointer arg1) { + public static boolean overafter_temporal_tstzspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_temporal_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7238,7 +7238,7 @@ public static int overafter_temporal_tstzspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overafter_tnumber_tbox(Pointer arg0, Pointer arg1) { + public static boolean overafter_tnumber_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_tnumber_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7251,7 +7251,7 @@ public static int overafter_tnumber_tbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overafter_tstzspan_temporal(Pointer arg0, Pointer arg1) { + public static boolean overafter_tstzspan_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_tstzspan_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7264,7 +7264,7 @@ public static int overafter_tstzspan_temporal(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overbefore_temporal_tstzspan(Pointer arg0, Pointer arg1) { + public static boolean overbefore_temporal_tstzspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_temporal_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7277,7 +7277,7 @@ public static int overbefore_temporal_tstzspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overbefore_tnumber_tbox(Pointer arg0, Pointer arg1) { + public static boolean overbefore_tnumber_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_tnumber_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7290,7 +7290,7 @@ public static int overbefore_tnumber_tbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overbefore_tstzspan_temporal(Pointer arg0, Pointer arg1) { + public static boolean overbefore_tstzspan_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_tstzspan_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7303,7 +7303,7 @@ public static int overbefore_tstzspan_temporal(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overlaps_numspan_tnumber(Pointer arg0, Pointer arg1) { + public static boolean overlaps_numspan_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overlaps_numspan_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7316,7 +7316,7 @@ public static int overlaps_numspan_tnumber(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overlaps_temporal_tstzspan(Pointer arg0, Pointer arg1) { + public static boolean overlaps_temporal_tstzspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overlaps_temporal_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7329,7 +7329,7 @@ public static int overlaps_temporal_tstzspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overlaps_tnumber_numspan(Pointer arg0, Pointer arg1) { + public static boolean overlaps_tnumber_numspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overlaps_tnumber_numspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7342,7 +7342,7 @@ public static int overlaps_tnumber_numspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overlaps_tnumber_tbox(Pointer arg0, Pointer arg1) { + public static boolean overlaps_tnumber_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overlaps_tnumber_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7355,7 +7355,7 @@ public static int overlaps_tnumber_tbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overlaps_tstzspan_temporal(Pointer arg0, Pointer arg1) { + public static boolean overlaps_tstzspan_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overlaps_tstzspan_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7368,7 +7368,7 @@ public static int overlaps_tstzspan_temporal(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overleft_numspan_tnumber(Pointer arg0, Pointer arg1) { + public static boolean overleft_numspan_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_numspan_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7381,7 +7381,7 @@ public static int overleft_numspan_tnumber(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overleft_tnumber_numspan(Pointer arg0, Pointer arg1) { + public static boolean overleft_tnumber_numspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_tnumber_numspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7394,7 +7394,7 @@ public static int overleft_tnumber_numspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overleft_tnumber_tbox(Pointer arg0, Pointer arg1) { + public static boolean overleft_tnumber_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_tnumber_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7407,7 +7407,7 @@ public static int overleft_tnumber_tbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overright_numspan_tnumber(Pointer arg0, Pointer arg1) { + public static boolean overright_numspan_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_numspan_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7420,7 +7420,7 @@ public static int overright_numspan_tnumber(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overright_tnumber_numspan(Pointer arg0, Pointer arg1) { + public static boolean overright_tnumber_numspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_tnumber_numspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7433,7 +7433,7 @@ public static int overright_tnumber_numspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overright_tnumber_tbox(Pointer arg0, Pointer arg1) { + public static boolean overright_tnumber_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_tnumber_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7446,7 +7446,7 @@ public static int overright_tnumber_tbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int right_numspan_tnumber(Pointer arg0, Pointer arg1) { + public static boolean right_numspan_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_numspan_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7459,7 +7459,7 @@ public static int right_numspan_tnumber(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int right_tnumber_numspan(Pointer arg0, Pointer arg1) { + public static boolean right_tnumber_numspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_tnumber_numspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7472,7 +7472,7 @@ public static int right_tnumber_numspan(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int right_tnumber_tbox(Pointer arg0, Pointer arg1) { + public static boolean right_tnumber_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_tnumber_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7485,7 +7485,7 @@ public static int right_tnumber_tbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer tdistance_tfloat_float(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer tdistance_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdistance_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7498,7 +7498,7 @@ public static Pointer tdistance_tfloat_float(Pointer arg0, double arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer tdistance_tint_int(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tdistance_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdistance_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7511,7 +7511,7 @@ public static Pointer tdistance_tint_int(Pointer arg0, int arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_eq_bool_tbool(int arg0, Pointer arg1) { + public static int always_eq_bool_tbool(boolean arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_bool_tbool requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7524,7 +7524,7 @@ public static int always_eq_bool_tbool(int arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_eq_float_tfloat(double arg0, Pointer arg1) { + public static int always_eq_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7537,7 +7537,7 @@ public static int always_eq_float_tfloat(double arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_eq_int_tint(int arg0, Pointer arg1) { + public static int always_eq_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7550,7 +7550,7 @@ public static int always_eq_int_tint(int arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_eq_tbool_bool(Pointer arg0, int arg1) { + public static int always_eq_tbool_bool(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_tbool_bool requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7563,7 +7563,7 @@ public static int always_eq_tbool_bool(Pointer arg0, int arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_eq_text_ttext(Pointer arg0, Pointer arg1) { + public static int always_eq_text_ttext(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_text_ttext requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7576,7 +7576,7 @@ public static int always_eq_text_ttext(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_eq_tfloat_float(Pointer arg0, double arg1) { + public static int always_eq_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7589,7 +7589,7 @@ public static int always_eq_tfloat_float(Pointer arg0, double arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_eq_tint_int(Pointer arg0, int arg1) { + public static int always_eq_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7602,7 +7602,7 @@ public static int always_eq_tint_int(Pointer arg0, int arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_eq_ttext_text(Pointer arg0, Pointer arg1) { + public static int always_eq_ttext_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_ttext_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7615,7 +7615,7 @@ public static int always_eq_ttext_text(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ge_float_tfloat(double arg0, Pointer arg1) { + public static int always_ge_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ge_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7628,7 +7628,7 @@ public static int always_ge_float_tfloat(double arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ge_int_tint(int arg0, Pointer arg1) { + public static int always_ge_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ge_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7641,7 +7641,7 @@ public static int always_ge_int_tint(int arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ge_text_ttext(Pointer arg0, Pointer arg1) { + public static int always_ge_text_ttext(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ge_text_ttext requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7654,7 +7654,7 @@ public static int always_ge_text_ttext(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ge_tfloat_float(Pointer arg0, double arg1) { + public static int always_ge_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ge_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7667,7 +7667,7 @@ public static int always_ge_tfloat_float(Pointer arg0, double arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ge_tint_int(Pointer arg0, int arg1) { + public static int always_ge_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ge_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7680,7 +7680,7 @@ public static int always_ge_tint_int(Pointer arg0, int arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ge_ttext_text(Pointer arg0, Pointer arg1) { + public static int always_ge_ttext_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ge_ttext_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7693,7 +7693,7 @@ public static int always_ge_ttext_text(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_gt_float_tfloat(double arg0, Pointer arg1) { + public static int always_gt_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_gt_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7706,7 +7706,7 @@ public static int always_gt_float_tfloat(double arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_gt_int_tint(int arg0, Pointer arg1) { + public static int always_gt_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_gt_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7719,7 +7719,7 @@ public static int always_gt_int_tint(int arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_gt_text_ttext(Pointer arg0, Pointer arg1) { + public static int always_gt_text_ttext(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_gt_text_ttext requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7732,7 +7732,7 @@ public static int always_gt_text_ttext(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_gt_tfloat_float(Pointer arg0, double arg1) { + public static int always_gt_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_gt_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7745,7 +7745,7 @@ public static int always_gt_tfloat_float(Pointer arg0, double arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_gt_tint_int(Pointer arg0, int arg1) { + public static int always_gt_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_gt_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7758,7 +7758,7 @@ public static int always_gt_tint_int(Pointer arg0, int arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_gt_ttext_text(Pointer arg0, Pointer arg1) { + public static int always_gt_ttext_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_gt_ttext_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7771,7 +7771,7 @@ public static int always_gt_ttext_text(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_le_float_tfloat(double arg0, Pointer arg1) { + public static int always_le_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_le_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7784,7 +7784,7 @@ public static int always_le_float_tfloat(double arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_le_int_tint(int arg0, Pointer arg1) { + public static int always_le_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_le_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7797,7 +7797,7 @@ public static int always_le_int_tint(int arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_le_text_ttext(Pointer arg0, Pointer arg1) { + public static int always_le_text_ttext(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_le_text_ttext requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7810,7 +7810,7 @@ public static int always_le_text_ttext(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_le_tfloat_float(Pointer arg0, double arg1) { + public static int always_le_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_le_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7823,7 +7823,7 @@ public static int always_le_tfloat_float(Pointer arg0, double arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_le_tint_int(Pointer arg0, int arg1) { + public static int always_le_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_le_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7836,7 +7836,7 @@ public static int always_le_tint_int(Pointer arg0, int arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_le_ttext_text(Pointer arg0, Pointer arg1) { + public static int always_le_ttext_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_le_ttext_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7849,7 +7849,7 @@ public static int always_le_ttext_text(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_lt_float_tfloat(double arg0, Pointer arg1) { + public static int always_lt_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_lt_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7862,7 +7862,7 @@ public static int always_lt_float_tfloat(double arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_lt_int_tint(int arg0, Pointer arg1) { + public static int always_lt_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_lt_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7875,7 +7875,7 @@ public static int always_lt_int_tint(int arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_lt_text_ttext(Pointer arg0, Pointer arg1) { + public static int always_lt_text_ttext(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_lt_text_ttext requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7888,7 +7888,7 @@ public static int always_lt_text_ttext(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_lt_tfloat_float(Pointer arg0, double arg1) { + public static int always_lt_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_lt_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7901,7 +7901,7 @@ public static int always_lt_tfloat_float(Pointer arg0, double arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_lt_tint_int(Pointer arg0, int arg1) { + public static int always_lt_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_lt_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7914,7 +7914,7 @@ public static int always_lt_tint_int(Pointer arg0, int arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_lt_ttext_text(Pointer arg0, Pointer arg1) { + public static int always_lt_ttext_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_lt_ttext_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7927,7 +7927,7 @@ public static int always_lt_ttext_text(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ne_bool_tbool(int arg0, Pointer arg1) { + public static int always_ne_bool_tbool(boolean arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_bool_tbool requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7940,7 +7940,7 @@ public static int always_ne_bool_tbool(int arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ne_float_tfloat(double arg0, Pointer arg1) { + public static int always_ne_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7953,7 +7953,7 @@ public static int always_ne_float_tfloat(double arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ne_int_tint(int arg0, Pointer arg1) { + public static int always_ne_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7966,7 +7966,7 @@ public static int always_ne_int_tint(int arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ne_tbool_bool(Pointer arg0, int arg1) { + public static int always_ne_tbool_bool(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_tbool_bool requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7979,7 +7979,7 @@ public static int always_ne_tbool_bool(Pointer arg0, int arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ne_text_ttext(Pointer arg0, Pointer arg1) { + public static int always_ne_text_ttext(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_text_ttext requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -7992,7 +7992,7 @@ public static int always_ne_text_ttext(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ne_tfloat_float(Pointer arg0, double arg1) { + public static int always_ne_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8005,7 +8005,7 @@ public static int always_ne_tfloat_float(Pointer arg0, double arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ne_tint_int(Pointer arg0, int arg1) { + public static int always_ne_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8018,7 +8018,7 @@ public static int always_ne_tint_int(Pointer arg0, int arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ne_ttext_text(Pointer arg0, Pointer arg1) { + public static int always_ne_ttext_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_ttext_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8031,7 +8031,7 @@ public static int always_ne_ttext_text(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_eq_bool_tbool(int arg0, Pointer arg1) { + public static int ever_eq_bool_tbool(boolean arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_bool_tbool requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8044,7 +8044,7 @@ public static int ever_eq_bool_tbool(int arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_eq_float_tfloat(double arg0, Pointer arg1) { + public static int ever_eq_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8057,7 +8057,7 @@ public static int ever_eq_float_tfloat(double arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_eq_int_tint(int arg0, Pointer arg1) { + public static int ever_eq_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8070,7 +8070,7 @@ public static int ever_eq_int_tint(int arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_eq_tbool_bool(Pointer arg0, int arg1) { + public static int ever_eq_tbool_bool(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_tbool_bool requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8083,7 +8083,7 @@ public static int ever_eq_tbool_bool(Pointer arg0, int arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_eq_text_ttext(Pointer arg0, Pointer arg1) { + public static int ever_eq_text_ttext(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_text_ttext requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8096,7 +8096,7 @@ public static int ever_eq_text_ttext(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_eq_tfloat_float(Pointer arg0, double arg1) { + public static int ever_eq_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8109,7 +8109,7 @@ public static int ever_eq_tfloat_float(Pointer arg0, double arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_eq_tint_int(Pointer arg0, int arg1) { + public static int ever_eq_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8122,7 +8122,7 @@ public static int ever_eq_tint_int(Pointer arg0, int arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_eq_ttext_text(Pointer arg0, Pointer arg1) { + public static int ever_eq_ttext_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_ttext_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8135,7 +8135,7 @@ public static int ever_eq_ttext_text(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ge_float_tfloat(double arg0, Pointer arg1) { + public static int ever_ge_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ge_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8148,7 +8148,7 @@ public static int ever_ge_float_tfloat(double arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ge_int_tint(int arg0, Pointer arg1) { + public static int ever_ge_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ge_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8161,7 +8161,7 @@ public static int ever_ge_int_tint(int arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ge_text_ttext(Pointer arg0, Pointer arg1) { + public static int ever_ge_text_ttext(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ge_text_ttext requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8174,7 +8174,7 @@ public static int ever_ge_text_ttext(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ge_tfloat_float(Pointer arg0, double arg1) { + public static int ever_ge_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ge_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8187,7 +8187,7 @@ public static int ever_ge_tfloat_float(Pointer arg0, double arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ge_tint_int(Pointer arg0, int arg1) { + public static int ever_ge_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ge_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8200,7 +8200,7 @@ public static int ever_ge_tint_int(Pointer arg0, int arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ge_ttext_text(Pointer arg0, Pointer arg1) { + public static int ever_ge_ttext_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ge_ttext_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8213,7 +8213,7 @@ public static int ever_ge_ttext_text(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_gt_float_tfloat(double arg0, Pointer arg1) { + public static int ever_gt_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_gt_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8226,7 +8226,7 @@ public static int ever_gt_float_tfloat(double arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_gt_int_tint(int arg0, Pointer arg1) { + public static int ever_gt_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_gt_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8239,7 +8239,7 @@ public static int ever_gt_int_tint(int arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_gt_text_ttext(Pointer arg0, Pointer arg1) { + public static int ever_gt_text_ttext(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_gt_text_ttext requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8252,7 +8252,7 @@ public static int ever_gt_text_ttext(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_gt_tfloat_float(Pointer arg0, double arg1) { + public static int ever_gt_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_gt_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8265,7 +8265,7 @@ public static int ever_gt_tfloat_float(Pointer arg0, double arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_gt_tint_int(Pointer arg0, int arg1) { + public static int ever_gt_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_gt_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8278,7 +8278,7 @@ public static int ever_gt_tint_int(Pointer arg0, int arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_gt_ttext_text(Pointer arg0, Pointer arg1) { + public static int ever_gt_ttext_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_gt_ttext_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8291,7 +8291,7 @@ public static int ever_gt_ttext_text(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_le_float_tfloat(double arg0, Pointer arg1) { + public static int ever_le_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_le_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8304,7 +8304,7 @@ public static int ever_le_float_tfloat(double arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_le_int_tint(int arg0, Pointer arg1) { + public static int ever_le_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_le_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8317,7 +8317,7 @@ public static int ever_le_int_tint(int arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_le_text_ttext(Pointer arg0, Pointer arg1) { + public static int ever_le_text_ttext(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_le_text_ttext requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8330,7 +8330,7 @@ public static int ever_le_text_ttext(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_le_tfloat_float(Pointer arg0, double arg1) { + public static int ever_le_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_le_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8343,7 +8343,7 @@ public static int ever_le_tfloat_float(Pointer arg0, double arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_le_tint_int(Pointer arg0, int arg1) { + public static int ever_le_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_le_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8356,7 +8356,7 @@ public static int ever_le_tint_int(Pointer arg0, int arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_le_ttext_text(Pointer arg0, Pointer arg1) { + public static int ever_le_ttext_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_le_ttext_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8369,7 +8369,7 @@ public static int ever_le_ttext_text(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_lt_float_tfloat(double arg0, Pointer arg1) { + public static int ever_lt_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_lt_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8382,7 +8382,7 @@ public static int ever_lt_float_tfloat(double arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_lt_int_tint(int arg0, Pointer arg1) { + public static int ever_lt_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_lt_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8395,7 +8395,7 @@ public static int ever_lt_int_tint(int arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_lt_text_ttext(Pointer arg0, Pointer arg1) { + public static int ever_lt_text_ttext(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_lt_text_ttext requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8408,7 +8408,7 @@ public static int ever_lt_text_ttext(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_lt_tfloat_float(Pointer arg0, double arg1) { + public static int ever_lt_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_lt_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8421,7 +8421,7 @@ public static int ever_lt_tfloat_float(Pointer arg0, double arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_lt_tint_int(Pointer arg0, int arg1) { + public static int ever_lt_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_lt_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8434,7 +8434,7 @@ public static int ever_lt_tint_int(Pointer arg0, int arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_lt_ttext_text(Pointer arg0, Pointer arg1) { + public static int ever_lt_ttext_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_lt_ttext_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8447,7 +8447,7 @@ public static int ever_lt_ttext_text(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ne_bool_tbool(int arg0, Pointer arg1) { + public static int ever_ne_bool_tbool(boolean arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_bool_tbool requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8460,7 +8460,7 @@ public static int ever_ne_bool_tbool(int arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ne_float_tfloat(double arg0, Pointer arg1) { + public static int ever_ne_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8473,7 +8473,7 @@ public static int ever_ne_float_tfloat(double arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ne_int_tint(int arg0, Pointer arg1) { + public static int ever_ne_int_tint(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8486,7 +8486,7 @@ public static int ever_ne_int_tint(int arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ne_tbool_bool(Pointer arg0, int arg1) { + public static int ever_ne_tbool_bool(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_tbool_bool requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8499,7 +8499,7 @@ public static int ever_ne_tbool_bool(Pointer arg0, int arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ne_text_ttext(Pointer arg0, Pointer arg1) { + public static int ever_ne_text_ttext(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_text_ttext requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8512,7 +8512,7 @@ public static int ever_ne_text_ttext(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ne_tfloat_float(Pointer arg0, double arg1) { + public static int ever_ne_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8525,7 +8525,7 @@ public static int ever_ne_tfloat_float(Pointer arg0, double arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ne_tint_int(Pointer arg0, int arg1) { + public static int ever_ne_tint_int(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8538,7 +8538,7 @@ public static int ever_ne_tint_int(Pointer arg0, int arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ne_ttext_text(Pointer arg0, Pointer arg1) { + public static int ever_ne_ttext_text(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_ttext_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8551,7 +8551,7 @@ public static int ever_ne_ttext_text(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int adjacent_temporal_temporal(Pointer arg0, Pointer arg1) { + public static boolean adjacent_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8564,7 +8564,7 @@ public static int adjacent_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int adjacent_tnumber_tnumber(Pointer arg0, Pointer arg1) { + public static boolean adjacent_tnumber_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_tnumber_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8577,7 +8577,7 @@ public static int adjacent_tnumber_tnumber(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int after_temporal_temporal(Pointer arg0, Pointer arg1) { + public static boolean after_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8590,7 +8590,7 @@ public static int after_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int after_tnumber_tnumber(Pointer arg0, Pointer arg1) { + public static boolean after_tnumber_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_tnumber_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8603,7 +8603,7 @@ public static int after_tnumber_tnumber(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int always_eq_temporal_temporal(Pointer arg0, Pointer arg1) { + public static int always_eq_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8616,7 +8616,7 @@ public static int always_eq_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int always_ge_temporal_temporal(Pointer arg0, Pointer arg1) { + public static int always_ge_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ge_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8629,7 +8629,7 @@ public static int always_ge_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int always_gt_temporal_temporal(Pointer arg0, Pointer arg1) { + public static int always_gt_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_gt_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8642,7 +8642,7 @@ public static int always_gt_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int always_le_temporal_temporal(Pointer arg0, Pointer arg1) { + public static int always_le_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_le_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8655,7 +8655,7 @@ public static int always_le_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int always_lt_temporal_temporal(Pointer arg0, Pointer arg1) { + public static int always_lt_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_lt_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8668,7 +8668,7 @@ public static int always_lt_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int always_ne_temporal_temporal(Pointer arg0, Pointer arg1) { + public static int always_ne_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8681,7 +8681,7 @@ public static int always_ne_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int before_temporal_temporal(Pointer arg0, Pointer arg1) { + public static boolean before_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8694,7 +8694,7 @@ public static int before_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int before_tnumber_tnumber(Pointer arg0, Pointer arg1) { + public static boolean before_tnumber_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_tnumber_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8707,7 +8707,7 @@ public static int before_tnumber_tnumber(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int contained_temporal_temporal(Pointer arg0, Pointer arg1) { + public static boolean contained_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8720,7 +8720,7 @@ public static int contained_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int contained_tnumber_tnumber(Pointer arg0, Pointer arg1) { + public static boolean contained_tnumber_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_tnumber_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8733,7 +8733,7 @@ public static int contained_tnumber_tnumber(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int contains_temporal_temporal(Pointer arg0, Pointer arg1) { + public static boolean contains_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8746,7 +8746,7 @@ public static int contains_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int contains_tnumber_tnumber(Pointer arg0, Pointer arg1) { + public static boolean contains_tnumber_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_tnumber_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8759,7 +8759,7 @@ public static int contains_tnumber_tnumber(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int ever_eq_temporal_temporal(Pointer arg0, Pointer arg1) { + public static int ever_eq_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8772,7 +8772,7 @@ public static int ever_eq_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int ever_ge_temporal_temporal(Pointer arg0, Pointer arg1) { + public static int ever_ge_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ge_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8785,7 +8785,7 @@ public static int ever_ge_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int ever_gt_temporal_temporal(Pointer arg0, Pointer arg1) { + public static int ever_gt_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_gt_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8798,7 +8798,7 @@ public static int ever_gt_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int ever_le_temporal_temporal(Pointer arg0, Pointer arg1) { + public static int ever_le_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_le_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8811,7 +8811,7 @@ public static int ever_le_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int ever_lt_temporal_temporal(Pointer arg0, Pointer arg1) { + public static int ever_lt_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_lt_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8824,7 +8824,7 @@ public static int ever_lt_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int ever_ne_temporal_temporal(Pointer arg0, Pointer arg1) { + public static int ever_ne_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8837,7 +8837,7 @@ public static int ever_ne_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int left_tnumber_tnumber(Pointer arg0, Pointer arg1) { + public static boolean left_tnumber_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_tnumber_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8850,7 +8850,7 @@ public static int left_tnumber_tnumber(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static double nad_tfloat_tfloat(Pointer arg0, Pointer arg1) { + public static double nad_tfloat_tfloat(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tfloat_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8863,7 +8863,7 @@ public static double nad_tfloat_tfloat(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static int nad_tint_tint(Pointer arg0, Pointer arg1) { + public static int nad_tint_tint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tint_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8876,7 +8876,7 @@ public static int nad_tint_tint(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int overafter_temporal_temporal(Pointer arg0, Pointer arg1) { + public static boolean overafter_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8889,7 +8889,7 @@ public static int overafter_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int overafter_tnumber_tnumber(Pointer arg0, Pointer arg1) { + public static boolean overafter_tnumber_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_tnumber_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8902,7 +8902,7 @@ public static int overafter_tnumber_tnumber(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int overbefore_temporal_temporal(Pointer arg0, Pointer arg1) { + public static boolean overbefore_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8915,7 +8915,7 @@ public static int overbefore_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int overbefore_tnumber_tnumber(Pointer arg0, Pointer arg1) { + public static boolean overbefore_tnumber_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_tnumber_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8928,7 +8928,7 @@ public static int overbefore_tnumber_tnumber(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int overlaps_temporal_temporal(Pointer arg0, Pointer arg1) { + public static boolean overlaps_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overlaps_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8941,7 +8941,7 @@ public static int overlaps_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int overlaps_tnumber_tnumber(Pointer arg0, Pointer arg1) { + public static boolean overlaps_tnumber_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overlaps_tnumber_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8954,7 +8954,7 @@ public static int overlaps_tnumber_tnumber(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int overleft_tnumber_tnumber(Pointer arg0, Pointer arg1) { + public static boolean overleft_tnumber_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_tnumber_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8967,7 +8967,7 @@ public static int overleft_tnumber_tnumber(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int overright_tnumber_tnumber(Pointer arg0, Pointer arg1) { + public static boolean overright_tnumber_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_tnumber_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8980,7 +8980,7 @@ public static int overright_tnumber_tnumber(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int right_tnumber_tnumber(Pointer arg0, Pointer arg1) { + public static boolean right_tnumber_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_tnumber_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -8993,7 +8993,7 @@ public static int right_tnumber_tnumber(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: same predicate on 2 temporals

*/ - public static int same_temporal_temporal(Pointer arg0, Pointer arg1) { + public static boolean same_temporal_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "same_temporal_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9006,7 +9006,7 @@ public static int same_temporal_temporal(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: same predicate on 2 temporals

*/ - public static int same_tnumber_tnumber(Pointer arg0, Pointer arg1) { + public static boolean same_tnumber_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "same_tnumber_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9019,7 +9019,7 @@ public static int same_tnumber_tnumber(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static Pointer tdistance_tnumber_tnumber(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdistance_tnumber_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdistance_tnumber_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9032,7 +9032,7 @@ public static Pointer tdistance_tnumber_tnumber(Pointer arg0, Pointer arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static int bool_in(String arg0) { + public static boolean bool_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bool_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9045,7 +9045,7 @@ public static int bool_in(String arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String bool_out(int arg0) { + public static java.lang.String bool_out(boolean arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bool_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9058,7 +9058,7 @@ public static String bool_out(int arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: string/CString conversion (low-level)

*/ - public static Pointer cstring2text(String arg0) { + public static jnr.ffi.Pointer cstring2text(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "cstring2text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9071,7 +9071,7 @@ public static Pointer cstring2text(String arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String float8_out(double arg0, int arg1) { + public static java.lang.String float8_out(double arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "float8_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9084,7 +9084,7 @@ public static String float8_out(double arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static void meos_array_add(Pointer arg0, Pointer arg1) { + public static void meos_array_add(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "meos_array_add requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9097,7 +9097,7 @@ public static void meos_array_add(Pointer arg0, Pointer arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static int meos_array_count(Pointer arg0) { + public static int meos_array_count(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "meos_array_count requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9110,7 +9110,7 @@ public static int meos_array_count(Pointer arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static Pointer meos_array_create(int arg0) { + public static jnr.ffi.Pointer meos_array_create(int arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "meos_array_create requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9123,7 +9123,7 @@ public static Pointer meos_array_create(int arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static void meos_array_destroy(Pointer arg0) { + public static void meos_array_destroy(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "meos_array_destroy requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9136,7 +9136,7 @@ public static void meos_array_destroy(Pointer arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static void meos_array_destroy_free(Pointer arg0) { + public static void meos_array_destroy_free(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "meos_array_destroy_free requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9149,7 +9149,7 @@ public static void meos_array_destroy_free(Pointer arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static Pointer meos_array_get(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer meos_array_get(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "meos_array_get requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9162,7 +9162,7 @@ public static Pointer meos_array_get(Pointer arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static void meos_array_reset(Pointer arg0) { + public static void meos_array_reset(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "meos_array_reset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9175,7 +9175,7 @@ public static void meos_array_reset(Pointer arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static void meos_array_reset_free(Pointer arg0) { + public static void meos_array_reset_free(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "meos_array_reset_free requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9240,7 +9240,7 @@ public static int meos_errno_set(int arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static void meos_error(int arg0, int arg1, String arg2) { + public static void meos_error(int arg0, int arg1, java.lang.String arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "meos_error requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9305,7 +9305,7 @@ public static void meos_finalize_ways() { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static String meos_get_datestyle() { + public static java.lang.String meos_get_datestyle() { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "meos_get_datestyle requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9318,7 +9318,7 @@ public static String meos_get_datestyle() { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static String meos_get_intervalstyle() { + public static java.lang.String meos_get_intervalstyle() { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "meos_get_intervalstyle requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9344,7 +9344,7 @@ public static void meos_initialize() { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static void meos_initialize_error_handler(error_handler_fn arg0) { + public static void meos_initialize_error_handler(functions.error_handler_fn arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "meos_initialize_error_handler requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9357,7 +9357,7 @@ public static void meos_initialize_error_handler(error_handler_fn arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static void meos_initialize_timezone(String arg0) { + public static void meos_initialize_timezone(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "meos_initialize_timezone requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9370,7 +9370,7 @@ public static void meos_initialize_timezone(String arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static int meos_set_datestyle(String arg0, Pointer arg1) { + public static boolean meos_set_datestyle(java.lang.String arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "meos_set_datestyle requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9383,7 +9383,7 @@ public static int meos_set_datestyle(String arg0, Pointer arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static int meos_set_intervalstyle(String arg0, int arg1) { + public static boolean meos_set_intervalstyle(java.lang.String arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "meos_set_intervalstyle requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9396,7 +9396,7 @@ public static int meos_set_intervalstyle(String arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static void meos_set_spatial_ref_sys_csv(String arg0) { + public static void meos_set_spatial_ref_sys_csv(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "meos_set_spatial_ref_sys_csv requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9409,7 +9409,7 @@ public static void meos_set_spatial_ref_sys_csv(String arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static int pg_date_in(String arg0) { + public static int pg_date_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pg_date_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9422,7 +9422,7 @@ public static int pg_date_in(String arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String pg_date_out(int arg0) { + public static java.lang.String pg_date_out(int arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pg_date_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9435,7 +9435,7 @@ public static String pg_date_out(int arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: string/CString conversion (low-level)

*/ - public static int pg_interval_cmp(Pointer arg0, Pointer arg1) { + public static int pg_interval_cmp(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pg_interval_cmp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9448,7 +9448,7 @@ public static int pg_interval_cmp(Pointer arg0, Pointer arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static Pointer pg_interval_in(String arg0, int arg1) { + public static jnr.ffi.Pointer pg_interval_in(java.lang.String arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pg_interval_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9461,7 +9461,7 @@ public static Pointer pg_interval_in(String arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String pg_interval_out(Pointer arg0) { + public static java.lang.String pg_interval_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pg_interval_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9474,7 +9474,7 @@ public static String pg_interval_out(Pointer arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static int pg_timestamp_in(String arg0, int arg1) { + public static java.time.LocalDateTime pg_timestamp_in(java.lang.String arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pg_timestamp_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9487,7 +9487,7 @@ public static int pg_timestamp_in(String arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String pg_timestamp_out(int arg0) { + public static java.lang.String pg_timestamp_out(java.time.LocalDateTime arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pg_timestamp_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9500,7 +9500,7 @@ public static String pg_timestamp_out(int arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static int pg_timestamptz_in(String arg0, int arg1) { + public static java.time.OffsetDateTime pg_timestamptz_in(java.lang.String arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pg_timestamptz_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9513,7 +9513,7 @@ public static int pg_timestamptz_in(String arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String pg_timestamptz_out(int arg0) { + public static java.lang.String pg_timestamptz_out(java.time.OffsetDateTime arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pg_timestamptz_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9526,7 +9526,7 @@ public static String pg_timestamptz_out(int arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static Pointer rtree_create_bigintspan() { + public static jnr.ffi.Pointer rtree_create_bigintspan() { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "rtree_create_bigintspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9539,7 +9539,7 @@ public static Pointer rtree_create_bigintspan() { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static Pointer rtree_create_datespan() { + public static jnr.ffi.Pointer rtree_create_datespan() { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "rtree_create_datespan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9552,7 +9552,7 @@ public static Pointer rtree_create_datespan() { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static Pointer rtree_create_floatspan() { + public static jnr.ffi.Pointer rtree_create_floatspan() { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "rtree_create_floatspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9565,7 +9565,7 @@ public static Pointer rtree_create_floatspan() { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static Pointer rtree_create_intspan() { + public static jnr.ffi.Pointer rtree_create_intspan() { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "rtree_create_intspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9578,7 +9578,7 @@ public static Pointer rtree_create_intspan() { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static Pointer rtree_create_stbox() { + public static jnr.ffi.Pointer rtree_create_stbox() { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "rtree_create_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9591,7 +9591,7 @@ public static Pointer rtree_create_stbox() { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static Pointer rtree_create_tbox() { + public static jnr.ffi.Pointer rtree_create_tbox() { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "rtree_create_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9604,7 +9604,7 @@ public static Pointer rtree_create_tbox() { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static Pointer rtree_create_tstzspan() { + public static jnr.ffi.Pointer rtree_create_tstzspan() { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "rtree_create_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9617,7 +9617,7 @@ public static Pointer rtree_create_tstzspan() { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static void rtree_free(Pointer arg0) { + public static void rtree_free(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "rtree_free requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9630,7 +9630,7 @@ public static void rtree_free(Pointer arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static void rtree_insert(Pointer arg0, Pointer arg1, int arg2) { + public static void rtree_insert(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, int arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "rtree_insert requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9643,7 +9643,7 @@ public static void rtree_insert(Pointer arg0, Pointer arg1, int arg2) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static void rtree_insert_temporal(Pointer arg0, Pointer arg1, int arg2) { + public static void rtree_insert_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, int arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "rtree_insert_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9656,7 +9656,7 @@ public static void rtree_insert_temporal(Pointer arg0, Pointer arg1, int arg2) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static int rtree_search(Pointer arg0, int arg1, Pointer arg2, Pointer arg3) { + public static int rtree_search(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "rtree_search requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9669,7 +9669,7 @@ public static int rtree_search(Pointer arg0, int arg1, Pointer arg2, Pointer arg *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: MEOS infra / catalog / utility

*/ - public static int rtree_search_temporal(Pointer arg0, int arg1, Pointer arg2, Pointer arg3) { + public static int rtree_search_temporal(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "rtree_search_temporal requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9682,7 +9682,7 @@ public static int rtree_search_temporal(Pointer arg0, int arg1, Pointer arg2, Po *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: string/CString conversion (low-level)

*/ - public static String text2cstring(Pointer arg0) { + public static java.lang.String text2cstring(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "text2cstring requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9695,7 +9695,7 @@ public static String text2cstring(Pointer arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static Pointer text_in(String arg0) { + public static jnr.ffi.Pointer text_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "text_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -9708,7 +9708,7 @@ public static Pointer text_in(String arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String text_out(Pointer arg0) { + public static java.lang.String text_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "text_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreeGeo.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreeGeo.java index 1ffdba8..45d9ff6 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreeGeo.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreeGeo.java @@ -22,7 +22,7 @@ private MeosOpsFreeGeo() { /* utility */ } *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int above_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean above_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "above_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static int above_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int above_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean above_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "above_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -48,7 +48,7 @@ public static int above_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int adjacent_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean adjacent_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -61,7 +61,7 @@ public static int adjacent_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int adjacent_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean adjacent_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -74,7 +74,7 @@ public static int adjacent_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int after_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean after_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -87,7 +87,7 @@ public static int after_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int after_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean after_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -100,7 +100,7 @@ public static int after_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int back_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean back_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "back_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -113,7 +113,7 @@ public static int back_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int back_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean back_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "back_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -126,12 +126,12 @@ public static int back_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int bearing_point_point(Pointer arg0, Pointer arg1, Pointer arg2) { + public static jnr.ffi.Pointer bearing_point_point(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "bearing_point_point requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.bearing_point_point(arg0, arg1, arg2); + return GeneratedFunctions.bearing_point_point(arg0, arg1); } /** @@ -139,7 +139,7 @@ public static int bearing_point_point(Pointer arg0, Pointer arg1, Pointer arg2) *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int before_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean before_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -152,7 +152,7 @@ public static int before_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int before_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean before_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -165,7 +165,7 @@ public static int before_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int below_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean below_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "below_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -178,7 +178,7 @@ public static int below_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int below_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean below_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "below_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -191,7 +191,7 @@ public static int below_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: make/from_base of instant/scalar

*/ - public static Pointer box3d_make(double arg0, double arg1, double arg2, double arg3, double arg4, double arg5, int arg6) { + public static jnr.ffi.Pointer box3d_make(double arg0, double arg1, double arg2, double arg3, double arg4, double arg5, int arg6) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "box3d_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -204,7 +204,7 @@ public static Pointer box3d_make(double arg0, double arg1, double arg2, double a *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer box3d_to_stbox(Pointer arg0) { + public static jnr.ffi.Pointer box3d_to_stbox(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "box3d_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static Pointer box3d_to_stbox(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_geo_set(Pointer arg0, Pointer arg1) { + public static boolean contained_geo_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_geo_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -230,7 +230,7 @@ public static int contained_geo_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean contained_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -243,7 +243,7 @@ public static int contained_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contained_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean contained_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -256,7 +256,7 @@ public static int contained_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_set_geo(Pointer arg0, Pointer arg1) { + public static boolean contains_set_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_set_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -269,7 +269,7 @@ public static int contains_set_geo(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean contains_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -282,7 +282,7 @@ public static int contains_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean contains_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -295,7 +295,7 @@ public static int contains_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int front_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean front_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "front_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -308,7 +308,7 @@ public static int front_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int front_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean front_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "front_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -321,7 +321,7 @@ public static int front_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: make/from_base of instant/scalar

*/ - public static Pointer gbox_make(int arg0, double arg1, double arg2, double arg3, double arg4, double arg5, double arg6) { + public static jnr.ffi.Pointer gbox_make(boolean arg0, double arg1, double arg2, double arg3, double arg4, double arg5, double arg6) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "gbox_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -334,7 +334,7 @@ public static Pointer gbox_make(int arg0, double arg1, double arg2, double arg3, *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer gbox_to_stbox(Pointer arg0) { + public static jnr.ffi.Pointer gbox_to_stbox(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "gbox_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -347,7 +347,7 @@ public static Pointer gbox_to_stbox(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geo_cluster_dbscan(Pointer arg0, int arg1, double arg2, int arg3, Pointer arg4) { + public static jnr.ffi.Pointer geo_cluster_dbscan(jnr.ffi.Pointer arg0, int arg1, double arg2, int arg3, jnr.ffi.Pointer arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_cluster_dbscan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -360,7 +360,7 @@ public static Pointer geo_cluster_dbscan(Pointer arg0, int arg1, double arg2, in *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geo_cluster_intersecting(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer geo_cluster_intersecting(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_cluster_intersecting requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -373,7 +373,7 @@ public static Pointer geo_cluster_intersecting(Pointer arg0, int arg1, Pointer a *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geo_cluster_kmeans(Pointer arg0, int arg1, int arg2) { + public static jnr.ffi.Pointer geo_cluster_kmeans(jnr.ffi.Pointer arg0, int arg1, int arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_cluster_kmeans requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -386,7 +386,7 @@ public static Pointer geo_cluster_kmeans(Pointer arg0, int arg1, int arg2) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geo_cluster_within(Pointer arg0, int arg1, double arg2, Pointer arg3) { + public static jnr.ffi.Pointer geo_cluster_within(jnr.ffi.Pointer arg0, int arg1, double arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_cluster_within requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -399,7 +399,7 @@ public static Pointer geo_cluster_within(Pointer arg0, int arg1, double arg2, Po *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geo_collect_garray(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer geo_collect_garray(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_collect_garray requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -412,7 +412,7 @@ public static Pointer geo_collect_garray(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geo_copy(Pointer arg0) { + public static jnr.ffi.Pointer geo_copy(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_copy requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -425,7 +425,7 @@ public static Pointer geo_copy(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int geo_equals(Pointer arg0, Pointer arg1) { + public static int geo_equals(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_equals requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -438,7 +438,7 @@ public static int geo_equals(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static Pointer geo_geo_n(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer geo_geo_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_geo_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -451,7 +451,7 @@ public static Pointer geo_geo_n(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int geo_is_empty(Pointer arg0) { + public static boolean geo_is_empty(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_is_empty requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -464,7 +464,7 @@ public static int geo_is_empty(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int geo_is_unitary(Pointer arg0) { + public static boolean geo_is_unitary(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_is_unitary requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -477,7 +477,7 @@ public static int geo_is_unitary(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: make/from_base of instant/scalar

*/ - public static Pointer geo_makeline_garray(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer geo_makeline_garray(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_makeline_garray requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -490,7 +490,7 @@ public static Pointer geo_makeline_garray(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int geo_num_geos(Pointer arg0) { + public static int geo_num_geos(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_num_geos requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -503,7 +503,7 @@ public static int geo_num_geos(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int geo_num_points(Pointer arg0) { + public static int geo_num_points(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_num_points requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -516,7 +516,7 @@ public static int geo_num_points(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geo_pointarr(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer geo_pointarr(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_pointarr requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -529,7 +529,7 @@ public static Pointer geo_pointarr(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geo_points(Pointer arg0) { + public static jnr.ffi.Pointer geo_points(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_points requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -542,7 +542,7 @@ public static Pointer geo_points(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geo_reverse(Pointer arg0) { + public static jnr.ffi.Pointer geo_reverse(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_reverse requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -555,7 +555,7 @@ public static Pointer geo_reverse(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: transform/normalize (pure)

*/ - public static Pointer geo_round(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer geo_round(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_round requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -568,7 +568,7 @@ public static Pointer geo_round(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int geo_same(Pointer arg0, Pointer arg1) { + public static boolean geo_same(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_same requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -581,7 +581,7 @@ public static int geo_same(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geo_set_srid(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer geo_set_srid(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_set_srid requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -594,7 +594,7 @@ public static Pointer geo_set_srid(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geo_split_each_n_stboxes(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer geo_split_each_n_stboxes(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_split_each_n_stboxes requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -607,7 +607,7 @@ public static Pointer geo_split_each_n_stboxes(Pointer arg0, int arg1, Pointer a *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geo_split_n_stboxes(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer geo_split_n_stboxes(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_split_n_stboxes requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -620,7 +620,7 @@ public static Pointer geo_split_n_stboxes(Pointer arg0, int arg1, Pointer arg2) *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int geo_srid(Pointer arg0) { + public static int geo_srid(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_srid requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -633,7 +633,7 @@ public static int geo_srid(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geo_stboxes(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer geo_stboxes(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_stboxes requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -646,7 +646,7 @@ public static Pointer geo_stboxes(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer geo_timestamptz_to_stbox(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer geo_timestamptz_to_stbox(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_timestamptz_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -659,7 +659,7 @@ public static Pointer geo_timestamptz_to_stbox(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer geo_to_set(Pointer arg0) { + public static jnr.ffi.Pointer geo_to_set(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_to_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -672,7 +672,7 @@ public static Pointer geo_to_set(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer geo_to_stbox(Pointer arg0) { + public static jnr.ffi.Pointer geo_to_stbox(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -685,7 +685,7 @@ public static Pointer geo_to_stbox(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geo_transform(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer geo_transform(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_transform requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -698,7 +698,7 @@ public static Pointer geo_transform(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geo_transform_pipeline(Pointer arg0, String arg1, int arg2, int arg3) { + public static jnr.ffi.Pointer geo_transform_pipeline(jnr.ffi.Pointer arg0, java.lang.String arg1, int arg2, boolean arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_transform_pipeline requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -711,7 +711,7 @@ public static Pointer geo_transform_pipeline(Pointer arg0, String arg1, int arg2 *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer geo_tstzspan_to_stbox(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer geo_tstzspan_to_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_tstzspan_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -724,7 +724,7 @@ public static Pointer geo_tstzspan_to_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static String geo_typename(int arg0) { + public static java.lang.String geo_typename(int arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_typename requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -737,7 +737,7 @@ public static String geo_typename(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geo_union_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer geo_union_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_union_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -750,7 +750,7 @@ public static Pointer geo_union_transfn(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static double geog_area(Pointer arg0, int arg1) { + public static double geog_area(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geog_area requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -763,7 +763,7 @@ public static double geog_area(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geog_centroid(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer geog_centroid(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geog_centroid requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -776,7 +776,7 @@ public static Pointer geog_centroid(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static double geog_distance(Pointer arg0, Pointer arg1) { + public static double geog_distance(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geog_distance requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -789,7 +789,7 @@ public static double geog_distance(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int geog_dwithin(Pointer arg0, Pointer arg1, double arg2, int arg3) { + public static boolean geog_dwithin(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2, boolean arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geog_dwithin requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -802,7 +802,7 @@ public static int geog_dwithin(Pointer arg0, Pointer arg1, double arg2, int arg3 *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geog_from_binary(String arg0) { + public static jnr.ffi.Pointer geog_from_binary(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geog_from_binary requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -815,7 +815,7 @@ public static Pointer geog_from_binary(String arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int geog_intersects(Pointer arg0, Pointer arg1, int arg2) { + public static boolean geog_intersects(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geog_intersects requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -828,7 +828,7 @@ public static int geog_intersects(Pointer arg0, Pointer arg1, int arg2) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static double geog_length(Pointer arg0, int arg1) { + public static double geog_length(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geog_length requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -841,7 +841,7 @@ public static double geog_length(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static double geog_perimeter(Pointer arg0, int arg1) { + public static double geog_perimeter(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geog_perimeter requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -854,7 +854,7 @@ public static double geog_perimeter(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer geog_to_geom(Pointer arg0) { + public static jnr.ffi.Pointer geog_to_geom(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geog_to_geom requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -867,7 +867,7 @@ public static Pointer geog_to_geom(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geom_array_union(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer geom_array_union(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_array_union requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -880,12 +880,12 @@ public static Pointer geom_array_union(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int geom_azimuth(Pointer arg0, Pointer arg1, Pointer arg2) { + public static jnr.ffi.Pointer geom_azimuth(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_azimuth requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.geom_azimuth(arg0, arg1, arg2); + return GeneratedFunctions.geom_azimuth(arg0, arg1); } /** @@ -893,7 +893,7 @@ public static int geom_azimuth(Pointer arg0, Pointer arg1, Pointer arg2) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geom_boundary(Pointer arg0) { + public static jnr.ffi.Pointer geom_boundary(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_boundary requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -906,7 +906,7 @@ public static Pointer geom_boundary(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geom_buffer(Pointer arg0, double arg1, String arg2) { + public static jnr.ffi.Pointer geom_buffer(jnr.ffi.Pointer arg0, double arg1, java.lang.String arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_buffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -919,7 +919,7 @@ public static Pointer geom_buffer(Pointer arg0, double arg1, String arg2) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geom_centroid(Pointer arg0) { + public static jnr.ffi.Pointer geom_centroid(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_centroid requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -932,7 +932,7 @@ public static Pointer geom_centroid(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int geom_contains(Pointer arg0, Pointer arg1) { + public static boolean geom_contains(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_contains requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -945,7 +945,7 @@ public static int geom_contains(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geom_convex_hull(Pointer arg0) { + public static jnr.ffi.Pointer geom_convex_hull(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_convex_hull requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -958,7 +958,7 @@ public static Pointer geom_convex_hull(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int geom_covers(Pointer arg0, Pointer arg1) { + public static boolean geom_covers(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_covers requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -971,7 +971,7 @@ public static int geom_covers(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geom_difference2d(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer geom_difference2d(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_difference2d requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -984,7 +984,7 @@ public static Pointer geom_difference2d(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int geom_disjoint2d(Pointer arg0, Pointer arg1) { + public static boolean geom_disjoint2d(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_disjoint2d requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -997,7 +997,7 @@ public static int geom_disjoint2d(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static double geom_distance2d(Pointer arg0, Pointer arg1) { + public static double geom_distance2d(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_distance2d requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1010,7 +1010,7 @@ public static double geom_distance2d(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static double geom_distance3d(Pointer arg0, Pointer arg1) { + public static double geom_distance3d(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_distance3d requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1023,7 +1023,7 @@ public static double geom_distance3d(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int geom_dwithin2d(Pointer arg0, Pointer arg1, double arg2) { + public static boolean geom_dwithin2d(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_dwithin2d requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1036,7 +1036,7 @@ public static int geom_dwithin2d(Pointer arg0, Pointer arg1, double arg2) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int geom_dwithin3d(Pointer arg0, Pointer arg1, double arg2) { + public static boolean geom_dwithin3d(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_dwithin3d requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1049,7 +1049,7 @@ public static int geom_dwithin3d(Pointer arg0, Pointer arg1, double arg2) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geom_intersection2d(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer geom_intersection2d(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_intersection2d requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1062,7 +1062,7 @@ public static Pointer geom_intersection2d(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geom_intersection2d_coll(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer geom_intersection2d_coll(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_intersection2d_coll requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1075,7 +1075,7 @@ public static Pointer geom_intersection2d_coll(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int geom_intersects2d(Pointer arg0, Pointer arg1) { + public static boolean geom_intersects2d(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_intersects2d requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1088,7 +1088,7 @@ public static int geom_intersects2d(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int geom_intersects3d(Pointer arg0, Pointer arg1) { + public static boolean geom_intersects3d(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_intersects3d requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1101,7 +1101,7 @@ public static int geom_intersects3d(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static double geom_length(Pointer arg0) { + public static double geom_length(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_length requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1114,7 +1114,7 @@ public static double geom_length(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geom_min_bounding_radius(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer geom_min_bounding_radius(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_min_bounding_radius requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1127,7 +1127,7 @@ public static Pointer geom_min_bounding_radius(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static double geom_perimeter(Pointer arg0) { + public static double geom_perimeter(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_perimeter requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1140,7 +1140,7 @@ public static double geom_perimeter(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int geom_relate_pattern(Pointer arg0, Pointer arg1, String arg2) { + public static boolean geom_relate_pattern(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, java.lang.String arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_relate_pattern requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1153,7 +1153,7 @@ public static int geom_relate_pattern(Pointer arg0, Pointer arg1, String arg2) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geom_shortestline2d(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer geom_shortestline2d(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_shortestline2d requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1166,7 +1166,7 @@ public static Pointer geom_shortestline2d(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geom_shortestline3d(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer geom_shortestline3d(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_shortestline3d requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1179,7 +1179,7 @@ public static Pointer geom_shortestline3d(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer geom_to_geog(Pointer arg0) { + public static jnr.ffi.Pointer geom_to_geog(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_to_geog requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1192,7 +1192,7 @@ public static Pointer geom_to_geog(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int geom_touches(Pointer arg0, Pointer arg1) { + public static boolean geom_touches(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_touches requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1205,7 +1205,7 @@ public static int geom_touches(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geom_unary_union(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer geom_unary_union(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_unary_union requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1218,7 +1218,7 @@ public static Pointer geom_unary_union(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_geo_set(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer intersection_geo_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_geo_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1231,7 +1231,7 @@ public static Pointer intersection_geo_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_set_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer intersection_set_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_set_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1244,7 +1244,7 @@ public static Pointer intersection_set_geo(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_stbox_stbox(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer intersection_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1257,7 +1257,7 @@ public static Pointer intersection_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean left_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1270,7 +1270,7 @@ public static int left_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int left_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean left_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1283,7 +1283,7 @@ public static int left_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int line_numpoints(Pointer arg0) { + public static int line_numpoints(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "line_numpoints requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1296,7 +1296,7 @@ public static int line_numpoints(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overabove_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean overabove_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overabove_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1309,7 +1309,7 @@ public static int overabove_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overabove_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean overabove_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overabove_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1322,7 +1322,7 @@ public static int overabove_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overafter_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean overafter_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1335,7 +1335,7 @@ public static int overafter_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overafter_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean overafter_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1348,7 +1348,7 @@ public static int overafter_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overback_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean overback_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overback_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1361,7 +1361,7 @@ public static int overback_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overback_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean overback_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overback_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1374,7 +1374,7 @@ public static int overback_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overbefore_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean overbefore_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1387,7 +1387,7 @@ public static int overbefore_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overbefore_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean overbefore_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1400,7 +1400,7 @@ public static int overbefore_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overbelow_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean overbelow_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbelow_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1413,7 +1413,7 @@ public static int overbelow_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overbelow_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean overbelow_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbelow_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1426,7 +1426,7 @@ public static int overbelow_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overfront_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean overfront_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overfront_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1439,7 +1439,7 @@ public static int overfront_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overfront_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean overfront_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overfront_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1452,7 +1452,7 @@ public static int overfront_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overlaps_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean overlaps_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overlaps_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1465,7 +1465,7 @@ public static int overlaps_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overlaps_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean overlaps_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overlaps_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1478,7 +1478,7 @@ public static int overlaps_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean overleft_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1491,7 +1491,7 @@ public static int overleft_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overleft_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean overleft_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1504,7 +1504,7 @@ public static int overleft_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean overright_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1517,7 +1517,7 @@ public static int overright_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int overright_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean overright_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1530,7 +1530,7 @@ public static int overright_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean right_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1543,7 +1543,7 @@ public static int right_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int right_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean right_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1556,7 +1556,7 @@ public static int right_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: same predicate (pure box equality)

*/ - public static int same_stbox_stbox(Pointer arg0, Pointer arg1) { + public static boolean same_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "same_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1569,7 +1569,7 @@ public static int same_stbox_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: same predicate (pure box equality)

*/ - public static int same_stbox_tspatial(Pointer arg0, Pointer arg1) { + public static boolean same_stbox_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "same_stbox_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1582,7 +1582,7 @@ public static int same_stbox_tspatial(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: same predicate (pure box equality)

*/ - public static int same_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean same_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "same_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1595,7 +1595,7 @@ public static int same_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int spatialset_srid(Pointer arg0) { + public static int spatialset_srid(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spatialset_srid requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1608,7 +1608,7 @@ public static int spatialset_srid(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer spatialset_to_stbox(Pointer arg0) { + public static jnr.ffi.Pointer spatialset_to_stbox(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spatialset_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1621,7 +1621,7 @@ public static Pointer spatialset_to_stbox(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: transform/normalize (pure)

*/ - public static Pointer stboxarr_round(Pointer arg0, int arg1, int arg2) { + public static jnr.ffi.Pointer stboxarr_round(jnr.ffi.Pointer arg0, int arg1, int arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stboxarr_round requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1634,7 +1634,7 @@ public static Pointer stboxarr_round(Pointer arg0, int arg1, int arg2) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer teq_geo_tgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer teq_geo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "teq_geo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1647,7 +1647,7 @@ public static Pointer teq_geo_tgeo(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer teq_tgeo_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer teq_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "teq_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1660,7 +1660,7 @@ public static Pointer teq_tgeo_geo(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: make/from_base of instant/scalar

*/ - public static Pointer tgeoinst_make(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tgeoinst_make(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeoinst_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1673,7 +1673,7 @@ public static Pointer tgeoinst_make(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer timestamptz_to_stbox(int arg0) { + public static jnr.ffi.Pointer timestamptz_to_stbox(java.time.OffsetDateTime arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "timestamptz_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1686,7 +1686,7 @@ public static Pointer timestamptz_to_stbox(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tne_geo_tgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tne_geo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tne_geo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1699,7 +1699,7 @@ public static Pointer tne_geo_tgeo(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tne_tgeo_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tne_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tne_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1712,7 +1712,7 @@ public static Pointer tne_tgeo_geo(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: make/from_base of instant/scalar

*/ - public static Pointer tpointinst_make(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tpointinst_make(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpointinst_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1725,7 +1725,7 @@ public static Pointer tpointinst_make(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_geo_set(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_geo_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_geo_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1738,7 +1738,7 @@ public static Pointer union_geo_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_set_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_set_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_set_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1751,7 +1751,7 @@ public static Pointer union_set_geo(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_stbox_stbox(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer union_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1764,7 +1764,7 @@ public static Pointer union_stbox_stbox(Pointer arg0, Pointer arg1, int arg2) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int above_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean above_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "above_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1777,7 +1777,7 @@ public static int above_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int acontains_geo_tgeo(Pointer arg0, Pointer arg1) { + public static int acontains_geo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "acontains_geo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1790,7 +1790,7 @@ public static int acontains_geo_tgeo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int acontains_tgeo_geo(Pointer arg0, Pointer arg1) { + public static int acontains_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "acontains_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1803,7 +1803,7 @@ public static int acontains_tgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int adisjoint_tgeo_geo(Pointer arg0, Pointer arg1) { + public static int adisjoint_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adisjoint_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1816,7 +1816,7 @@ public static int adisjoint_tgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int adjacent_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean adjacent_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1829,7 +1829,7 @@ public static int adjacent_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int adwithin_tgeo_geo(Pointer arg0, Pointer arg1, double arg2) { + public static int adwithin_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adwithin_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1842,7 +1842,7 @@ public static int adwithin_tgeo_geo(Pointer arg0, Pointer arg1, double arg2) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int after_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean after_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1855,7 +1855,7 @@ public static int after_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int aintersects_tgeo_geo(Pointer arg0, Pointer arg1) { + public static int aintersects_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "aintersects_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1868,7 +1868,7 @@ public static int aintersects_tgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int atouches_tgeo_geo(Pointer arg0, Pointer arg1) { + public static int atouches_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "atouches_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1881,7 +1881,7 @@ public static int atouches_tgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int atouches_tpoint_geo(Pointer arg0, Pointer arg1) { + public static int atouches_tpoint_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "atouches_tpoint_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1894,7 +1894,7 @@ public static int atouches_tpoint_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int back_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean back_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "back_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1907,7 +1907,7 @@ public static int back_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int before_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean before_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1920,7 +1920,7 @@ public static int before_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int below_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean below_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "below_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1933,7 +1933,7 @@ public static int below_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int contained_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean contained_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1946,7 +1946,7 @@ public static int contained_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int contains_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean contains_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1959,7 +1959,7 @@ public static int contains_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int econtains_geo_tgeo(Pointer arg0, Pointer arg1) { + public static int econtains_geo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "econtains_geo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1972,7 +1972,7 @@ public static int econtains_geo_tgeo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int econtains_tgeo_geo(Pointer arg0, Pointer arg1) { + public static int econtains_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "econtains_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1985,7 +1985,7 @@ public static int econtains_tgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int ecovers_geo_tgeo(Pointer arg0, Pointer arg1) { + public static int ecovers_geo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ecovers_geo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1998,7 +1998,7 @@ public static int ecovers_geo_tgeo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int ecovers_tgeo_geo(Pointer arg0, Pointer arg1) { + public static int ecovers_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ecovers_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2011,7 +2011,7 @@ public static int ecovers_tgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int edisjoint_tgeo_geo(Pointer arg0, Pointer arg1) { + public static int edisjoint_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "edisjoint_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2024,7 +2024,7 @@ public static int edisjoint_tgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int edwithin_tgeo_geo(Pointer arg0, Pointer arg1, double arg2) { + public static int edwithin_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "edwithin_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2037,7 +2037,7 @@ public static int edwithin_tgeo_geo(Pointer arg0, Pointer arg1, double arg2) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int eintersects_tgeo_geo(Pointer arg0, Pointer arg1) { + public static int eintersects_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "eintersects_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2050,7 +2050,7 @@ public static int eintersects_tgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int etouches_tgeo_geo(Pointer arg0, Pointer arg1) { + public static int etouches_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "etouches_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2063,7 +2063,7 @@ public static int etouches_tgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 1 temporal

*/ - public static int etouches_tpoint_geo(Pointer arg0, Pointer arg1) { + public static int etouches_tpoint_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "etouches_tpoint_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2076,7 +2076,7 @@ public static int etouches_tpoint_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int front_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean front_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "front_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2089,7 +2089,7 @@ public static int front_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int left_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean left_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2102,7 +2102,7 @@ public static int left_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_geo_set(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_geo_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_geo_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2115,7 +2115,7 @@ public static Pointer minus_geo_set(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_set_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_set_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_set_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2128,7 +2128,7 @@ public static Pointer minus_set_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double nad_stbox_geo(Pointer arg0, Pointer arg1) { + public static double nad_stbox_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_stbox_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2141,7 +2141,7 @@ public static double nad_stbox_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double nad_stbox_stbox(Pointer arg0, Pointer arg1) { + public static double nad_stbox_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_stbox_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2154,7 +2154,7 @@ public static double nad_stbox_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double nad_tgeo_geo(Pointer arg0, Pointer arg1) { + public static double nad_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2167,7 +2167,7 @@ public static double nad_tgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double nad_tgeo_stbox(Pointer arg0, Pointer arg1) { + public static double nad_tgeo_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tgeo_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2180,7 +2180,7 @@ public static double nad_tgeo_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer nai_tgeo_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer nai_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nai_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2193,7 +2193,7 @@ public static Pointer nai_tgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overabove_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean overabove_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overabove_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2206,7 +2206,7 @@ public static int overabove_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overafter_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean overafter_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2219,7 +2219,7 @@ public static int overafter_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overback_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean overback_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overback_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2232,7 +2232,7 @@ public static int overback_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overbefore_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean overbefore_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2245,7 +2245,7 @@ public static int overbefore_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overbelow_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean overbelow_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbelow_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2258,7 +2258,7 @@ public static int overbelow_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overfront_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean overfront_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overfront_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2271,7 +2271,7 @@ public static int overfront_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overlaps_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean overlaps_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overlaps_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2284,7 +2284,7 @@ public static int overlaps_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overleft_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean overleft_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2297,7 +2297,7 @@ public static int overleft_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int overright_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean overright_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2310,7 +2310,7 @@ public static int overright_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: topology/position rel on 1 temporal + scalar

*/ - public static int right_tspatial_stbox(Pointer arg0, Pointer arg1) { + public static boolean right_tspatial_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_tspatial_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2323,7 +2323,7 @@ public static int right_tspatial_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer shortestline_tgeo_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer shortestline_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "shortestline_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2336,7 +2336,7 @@ public static Pointer shortestline_tgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tcontains_geo_tgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcontains_geo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcontains_geo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2349,7 +2349,7 @@ public static Pointer tcontains_geo_tgeo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tcontains_tgeo_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcontains_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcontains_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2362,7 +2362,7 @@ public static Pointer tcontains_tgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tcovers_geo_tgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcovers_geo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcovers_geo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2375,7 +2375,7 @@ public static Pointer tcovers_geo_tgeo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tcovers_tgeo_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcovers_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcovers_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2388,7 +2388,7 @@ public static Pointer tcovers_tgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tdisjoint_geo_tgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdisjoint_geo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdisjoint_geo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2401,7 +2401,7 @@ public static Pointer tdisjoint_geo_tgeo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tdisjoint_tgeo_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdisjoint_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdisjoint_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2414,7 +2414,7 @@ public static Pointer tdisjoint_tgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer tdistance_tgeo_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdistance_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdistance_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2427,7 +2427,7 @@ public static Pointer tdistance_tgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tdwithin_geo_tgeo(Pointer arg0, Pointer arg1, double arg2) { + public static jnr.ffi.Pointer tdwithin_geo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdwithin_geo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2440,7 +2440,7 @@ public static Pointer tdwithin_geo_tgeo(Pointer arg0, Pointer arg1, double arg2) *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tdwithin_tgeo_geo(Pointer arg0, Pointer arg1, double arg2) { + public static jnr.ffi.Pointer tdwithin_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdwithin_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2453,7 +2453,7 @@ public static Pointer tdwithin_tgeo_geo(Pointer arg0, Pointer arg1, double arg2) *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tintersects_geo_tgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tintersects_geo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tintersects_geo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2466,7 +2466,7 @@ public static Pointer tintersects_geo_tgeo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer tintersects_tgeo_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tintersects_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tintersects_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2479,7 +2479,7 @@ public static Pointer tintersects_tgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer ttouches_geo_tgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer ttouches_geo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttouches_geo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2492,7 +2492,7 @@ public static Pointer ttouches_geo_tgeo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 1 temporal

*/ - public static Pointer ttouches_tgeo_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer ttouches_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttouches_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2505,7 +2505,7 @@ public static Pointer ttouches_tgeo_geo(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_eq_geo_tgeo(Pointer arg0, Pointer arg1) { + public static int always_eq_geo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_geo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2518,7 +2518,7 @@ public static int always_eq_geo_tgeo(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_eq_tgeo_geo(Pointer arg0, Pointer arg1) { + public static int always_eq_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2531,7 +2531,7 @@ public static int always_eq_tgeo_geo(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ne_geo_tgeo(Pointer arg0, Pointer arg1) { + public static int always_ne_geo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_geo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2544,7 +2544,7 @@ public static int always_ne_geo_tgeo(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ne_tgeo_geo(Pointer arg0, Pointer arg1) { + public static int always_ne_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2557,7 +2557,7 @@ public static int always_ne_tgeo_geo(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_eq_geo_tgeo(Pointer arg0, Pointer arg1) { + public static int ever_eq_geo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_geo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2570,7 +2570,7 @@ public static int ever_eq_geo_tgeo(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_eq_tgeo_geo(Pointer arg0, Pointer arg1) { + public static int ever_eq_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2583,7 +2583,7 @@ public static int ever_eq_tgeo_geo(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ne_geo_tgeo(Pointer arg0, Pointer arg1) { + public static int ever_ne_geo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_geo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2596,7 +2596,7 @@ public static int ever_ne_geo_tgeo(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ne_tgeo_geo(Pointer arg0, Pointer arg1) { + public static int ever_ne_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_tgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2609,7 +2609,7 @@ public static int ever_ne_tgeo_geo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int above_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean above_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "above_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2622,7 +2622,7 @@ public static int above_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 2 temporals

*/ - public static int acontains_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static int acontains_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "acontains_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2635,7 +2635,7 @@ public static int acontains_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 2 temporals

*/ - public static int adisjoint_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static int adisjoint_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adisjoint_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2648,7 +2648,7 @@ public static int adisjoint_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int adjacent_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean adjacent_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adjacent_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2661,7 +2661,7 @@ public static int adjacent_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 2 temporals

*/ - public static int adwithin_tgeo_tgeo(Pointer arg0, Pointer arg1, double arg2) { + public static int adwithin_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "adwithin_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2674,7 +2674,7 @@ public static int adwithin_tgeo_tgeo(Pointer arg0, Pointer arg1, double arg2) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int after_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean after_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "after_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2687,7 +2687,7 @@ public static int after_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 2 temporals

*/ - public static int aintersects_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static int aintersects_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "aintersects_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2700,7 +2700,7 @@ public static int aintersects_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int always_eq_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static int always_eq_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2713,7 +2713,7 @@ public static int always_eq_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int always_ne_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static int always_ne_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2726,7 +2726,7 @@ public static int always_ne_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 2 temporals

*/ - public static int atouches_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static int atouches_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "atouches_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2739,7 +2739,7 @@ public static int atouches_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int back_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean back_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "back_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2752,7 +2752,7 @@ public static int back_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int before_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean before_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "before_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2765,7 +2765,7 @@ public static int before_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int below_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean below_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "below_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2778,7 +2778,7 @@ public static int below_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int contained_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean contained_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2791,7 +2791,7 @@ public static int contained_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int contains_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean contains_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2804,7 +2804,7 @@ public static int contains_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 2 temporals

*/ - public static int econtains_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static int econtains_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "econtains_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2817,7 +2817,7 @@ public static int econtains_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 2 temporals

*/ - public static int ecovers_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static int ecovers_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ecovers_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2830,7 +2830,7 @@ public static int ecovers_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 2 temporals

*/ - public static int edisjoint_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static int edisjoint_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "edisjoint_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2843,7 +2843,7 @@ public static int edisjoint_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 2 temporals

*/ - public static int edwithin_tgeo_tgeo(Pointer arg0, Pointer arg1, double arg2) { + public static int edwithin_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "edwithin_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2856,7 +2856,7 @@ public static int edwithin_tgeo_tgeo(Pointer arg0, Pointer arg1, double arg2) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 2 temporals

*/ - public static int eintersects_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static int eintersects_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "eintersects_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2869,7 +2869,7 @@ public static int eintersects_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always spatial-rel on 2 temporals

*/ - public static int etouches_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static int etouches_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "etouches_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2882,7 +2882,7 @@ public static int etouches_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int ever_eq_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static int ever_eq_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2895,7 +2895,7 @@ public static int ever_eq_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int ever_ne_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static int ever_ne_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2908,7 +2908,7 @@ public static int ever_ne_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int front_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean front_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "front_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2921,7 +2921,7 @@ public static int front_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int left_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean left_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "left_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2934,7 +2934,7 @@ public static int left_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static double nad_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static double nad_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2947,7 +2947,7 @@ public static double nad_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static Pointer nai_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer nai_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nai_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2960,7 +2960,7 @@ public static Pointer nai_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int overabove_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean overabove_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overabove_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2973,7 +2973,7 @@ public static int overabove_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int overafter_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean overafter_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overafter_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2986,7 +2986,7 @@ public static int overafter_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int overback_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean overback_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overback_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -2999,7 +2999,7 @@ public static int overback_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int overbefore_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean overbefore_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbefore_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3012,7 +3012,7 @@ public static int overbefore_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int overbelow_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean overbelow_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overbelow_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3025,7 +3025,7 @@ public static int overbelow_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int overfront_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean overfront_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overfront_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3038,7 +3038,7 @@ public static int overfront_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int overlaps_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean overlaps_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overlaps_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3051,7 +3051,7 @@ public static int overlaps_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int overleft_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean overleft_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overleft_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3064,7 +3064,7 @@ public static int overleft_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int overright_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean overright_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "overright_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3077,7 +3077,7 @@ public static int overright_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 temporals

*/ - public static int right_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean right_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "right_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3090,7 +3090,7 @@ public static int right_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: same predicate on 2 temporals

*/ - public static int same_tspatial_tspatial(Pointer arg0, Pointer arg1) { + public static boolean same_tspatial_tspatial(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "same_tspatial_tspatial requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3103,7 +3103,7 @@ public static int same_tspatial_tspatial(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static Pointer shortestline_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer shortestline_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "shortestline_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3116,7 +3116,7 @@ public static Pointer shortestline_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 2 temporals

*/ - public static Pointer tcontains_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcontains_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcontains_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3129,7 +3129,7 @@ public static Pointer tcontains_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 2 temporals

*/ - public static Pointer tcovers_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcovers_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcovers_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3142,7 +3142,7 @@ public static Pointer tcovers_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 2 temporals

*/ - public static Pointer tdisjoint_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdisjoint_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdisjoint_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3155,7 +3155,7 @@ public static Pointer tdisjoint_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static Pointer tdistance_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdistance_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdistance_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3168,7 +3168,7 @@ public static Pointer tdistance_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 2 temporals

*/ - public static Pointer tdwithin_tgeo_tgeo(Pointer arg0, Pointer arg1, double arg2) { + public static jnr.ffi.Pointer tdwithin_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdwithin_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3181,7 +3181,7 @@ public static Pointer tdwithin_tgeo_tgeo(Pointer arg0, Pointer arg1, double arg2 *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 2 temporals

*/ - public static Pointer tintersects_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tintersects_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tintersects_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3194,7 +3194,7 @@ public static Pointer tintersects_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: temporal spatial-rel lift on 2 temporals

*/ - public static Pointer ttouches_tgeo_tgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer ttouches_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttouches_tgeo_tgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3207,7 +3207,7 @@ public static Pointer ttouches_tgeo_tgeo(Pointer arg0, Pointer arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String box3d_out(Pointer arg0, int arg1) { + public static java.lang.String box3d_out(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "box3d_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3220,7 +3220,7 @@ public static String box3d_out(Pointer arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String gbox_out(Pointer arg0, int arg1) { + public static java.lang.String gbox_out(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "gbox_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3233,7 +3233,7 @@ public static String gbox_out(Pointer arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: name has IO token

*/ - public static Pointer geo_as_ewkb(Pointer arg0, String arg1, Pointer arg2) { + public static jnr.ffi.Pointer geo_as_ewkb(jnr.ffi.Pointer arg0, java.lang.String arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_as_ewkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3246,7 +3246,7 @@ public static Pointer geo_as_ewkb(Pointer arg0, String arg1, Pointer arg2) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String geo_as_ewkt(Pointer arg0, int arg1) { + public static java.lang.String geo_as_ewkt(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_as_ewkt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3259,7 +3259,7 @@ public static String geo_as_ewkt(Pointer arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String geo_as_geojson(Pointer arg0, int arg1, int arg2, String arg3) { + public static java.lang.String geo_as_geojson(jnr.ffi.Pointer arg0, int arg1, int arg2, java.lang.String arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_as_geojson requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3272,7 +3272,7 @@ public static String geo_as_geojson(Pointer arg0, int arg1, int arg2, String arg *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: name has IO token

*/ - public static String geo_as_hexewkb(Pointer arg0, String arg1) { + public static java.lang.String geo_as_hexewkb(jnr.ffi.Pointer arg0, java.lang.String arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_as_hexewkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3285,7 +3285,7 @@ public static String geo_as_hexewkb(Pointer arg0, String arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String geo_as_text(Pointer arg0, int arg1) { + public static java.lang.String geo_as_text(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_as_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3298,7 +3298,7 @@ public static String geo_as_text(Pointer arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: name has IO token

*/ - public static Pointer geo_from_ewkb(Pointer arg0, long arg1, int arg2) { + public static jnr.ffi.Pointer geo_from_ewkb(jnr.ffi.Pointer arg0, long arg1, int arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_from_ewkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3311,7 +3311,7 @@ public static Pointer geo_from_ewkb(Pointer arg0, long arg1, int arg2) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static Pointer geo_from_geojson(String arg0) { + public static jnr.ffi.Pointer geo_from_geojson(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_from_geojson requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3324,7 +3324,7 @@ public static Pointer geo_from_geojson(String arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static Pointer geo_from_text(String arg0, int arg1) { + public static jnr.ffi.Pointer geo_from_text(java.lang.String arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_from_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3337,7 +3337,7 @@ public static Pointer geo_from_text(String arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String geo_out(Pointer arg0) { + public static java.lang.String geo_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3350,7 +3350,7 @@ public static String geo_out(Pointer arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: name has IO token

*/ - public static Pointer geog_from_hexewkb(String arg0) { + public static jnr.ffi.Pointer geog_from_hexewkb(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geog_from_hexewkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3363,7 +3363,7 @@ public static Pointer geog_from_hexewkb(String arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static Pointer geog_in(String arg0, int arg1) { + public static jnr.ffi.Pointer geog_in(java.lang.String arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geog_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3376,7 +3376,7 @@ public static Pointer geog_in(String arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: name has IO token

*/ - public static Pointer geom_from_hexewkb(String arg0) { + public static jnr.ffi.Pointer geom_from_hexewkb(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_from_hexewkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3389,7 +3389,7 @@ public static Pointer geom_from_hexewkb(String arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static Pointer geom_in(String arg0, int arg1) { + public static jnr.ffi.Pointer geom_in(java.lang.String arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3402,7 +3402,7 @@ public static Pointer geom_in(String arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String spatialset_as_ewkt(Pointer arg0, int arg1) { + public static java.lang.String spatialset_as_ewkt(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spatialset_as_ewkt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -3415,7 +3415,7 @@ public static String spatialset_as_ewkt(Pointer arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String spatialset_as_text(Pointer arg0, int arg1) { + public static java.lang.String spatialset_as_text(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spatialset_as_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreeNpoint.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreeNpoint.java index 735b32f..182b45b 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreeNpoint.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreeNpoint.java @@ -22,7 +22,7 @@ private MeosOpsFreeNpoint() { /* utility */ } *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 scalars (box/span algebra)

*/ - public static int contained_npoint_set(Pointer arg0, Pointer arg1) { + public static boolean contained_npoint_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_npoint_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static int contained_npoint_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_set_npoint(Pointer arg0, Pointer arg1) { + public static boolean contains_set_npoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_set_npoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -48,7 +48,7 @@ public static int contains_set_npoint(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geom_to_nsegment(Pointer arg0) { + public static jnr.ffi.Pointer geom_to_nsegment(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geom_to_nsegment requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -74,7 +74,7 @@ public static int get_srid_ways() { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_set_npoint(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer intersection_set_npoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_set_npoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -87,7 +87,7 @@ public static Pointer intersection_set_npoint(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int npoint_cmp(Pointer arg0, Pointer arg1) { + public static int npoint_cmp(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_cmp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -100,7 +100,7 @@ public static int npoint_cmp(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int npoint_eq(Pointer arg0, Pointer arg1) { + public static boolean npoint_eq(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_eq requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -113,7 +113,7 @@ public static int npoint_eq(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int npoint_ge(Pointer arg0, Pointer arg1) { + public static boolean npoint_ge(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_ge requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -126,7 +126,7 @@ public static int npoint_ge(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int npoint_gt(Pointer arg0, Pointer arg1) { + public static boolean npoint_gt(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_gt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -139,7 +139,7 @@ public static int npoint_gt(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int npoint_hash(Pointer arg0) { + public static int npoint_hash(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_hash requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -152,7 +152,7 @@ public static int npoint_hash(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int npoint_hash_extended(Pointer arg0, int arg1) { + public static long npoint_hash_extended(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_hash_extended requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -165,7 +165,7 @@ public static int npoint_hash_extended(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int npoint_le(Pointer arg0, Pointer arg1) { + public static boolean npoint_le(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_le requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -178,7 +178,7 @@ public static int npoint_le(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int npoint_lt(Pointer arg0, Pointer arg1) { + public static boolean npoint_lt(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_lt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -191,7 +191,7 @@ public static int npoint_lt(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: make/from_base of instant/scalar

*/ - public static Pointer npoint_make(int arg0, double arg1) { + public static jnr.ffi.Pointer npoint_make(long arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -204,7 +204,7 @@ public static Pointer npoint_make(int arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int npoint_ne(Pointer arg0, Pointer arg1) { + public static boolean npoint_ne(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_ne requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static int npoint_ne(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static double npoint_position(Pointer arg0) { + public static double npoint_position(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_position requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -230,7 +230,7 @@ public static double npoint_position(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: transform/normalize (pure)

*/ - public static Pointer npoint_round(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer npoint_round(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_round requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -243,7 +243,7 @@ public static Pointer npoint_round(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int npoint_route(Pointer arg0) { + public static long npoint_route(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_route requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -256,7 +256,7 @@ public static int npoint_route(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int npoint_same(Pointer arg0, Pointer arg1) { + public static boolean npoint_same(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_same requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -269,7 +269,7 @@ public static int npoint_same(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int npoint_srid(Pointer arg0) { + public static int npoint_srid(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_srid requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -282,7 +282,7 @@ public static int npoint_srid(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer npoint_timestamptz_to_stbox(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer npoint_timestamptz_to_stbox(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_timestamptz_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -295,7 +295,7 @@ public static Pointer npoint_timestamptz_to_stbox(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer npoint_to_geompoint(Pointer arg0) { + public static jnr.ffi.Pointer npoint_to_geompoint(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_to_geompoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -308,7 +308,7 @@ public static Pointer npoint_to_geompoint(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer npoint_to_nsegment(Pointer arg0) { + public static jnr.ffi.Pointer npoint_to_nsegment(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_to_nsegment requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -321,7 +321,7 @@ public static Pointer npoint_to_nsegment(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer npoint_to_set(Pointer arg0) { + public static jnr.ffi.Pointer npoint_to_set(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_to_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -334,7 +334,7 @@ public static Pointer npoint_to_set(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer npoint_to_stbox(Pointer arg0) { + public static jnr.ffi.Pointer npoint_to_stbox(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -347,7 +347,7 @@ public static Pointer npoint_to_stbox(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer npoint_tstzspan_to_stbox(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer npoint_tstzspan_to_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_tstzspan_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -360,7 +360,7 @@ public static Pointer npoint_tstzspan_to_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer npoint_union_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer npoint_union_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_union_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -373,7 +373,7 @@ public static Pointer npoint_union_transfn(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int nsegment_cmp(Pointer arg0, Pointer arg1) { + public static int nsegment_cmp(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nsegment_cmp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -386,7 +386,7 @@ public static int nsegment_cmp(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int nsegment_eq(Pointer arg0, Pointer arg1) { + public static boolean nsegment_eq(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nsegment_eq requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -399,7 +399,7 @@ public static int nsegment_eq(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int nsegment_ge(Pointer arg0, Pointer arg1) { + public static boolean nsegment_ge(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nsegment_ge requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -412,7 +412,7 @@ public static int nsegment_ge(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int nsegment_gt(Pointer arg0, Pointer arg1) { + public static boolean nsegment_gt(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nsegment_gt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -425,7 +425,7 @@ public static int nsegment_gt(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int nsegment_le(Pointer arg0, Pointer arg1) { + public static boolean nsegment_le(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nsegment_le requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -438,7 +438,7 @@ public static int nsegment_le(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int nsegment_lt(Pointer arg0, Pointer arg1) { + public static boolean nsegment_lt(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nsegment_lt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -451,7 +451,7 @@ public static int nsegment_lt(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: make/from_base of instant/scalar

*/ - public static Pointer nsegment_make(int arg0, double arg1, double arg2) { + public static jnr.ffi.Pointer nsegment_make(long arg0, double arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nsegment_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -464,7 +464,7 @@ public static Pointer nsegment_make(int arg0, double arg1, double arg2) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int nsegment_ne(Pointer arg0, Pointer arg1) { + public static boolean nsegment_ne(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nsegment_ne requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -477,7 +477,7 @@ public static int nsegment_ne(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: transform/normalize (pure)

*/ - public static Pointer nsegment_round(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer nsegment_round(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nsegment_round requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -490,7 +490,7 @@ public static Pointer nsegment_round(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int nsegment_route(Pointer arg0) { + public static long nsegment_route(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nsegment_route requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -503,7 +503,7 @@ public static int nsegment_route(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int nsegment_srid(Pointer arg0) { + public static int nsegment_srid(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nsegment_srid requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -516,7 +516,7 @@ public static int nsegment_srid(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer nsegment_to_geom(Pointer arg0) { + public static jnr.ffi.Pointer nsegment_to_geom(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nsegment_to_geom requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -529,7 +529,7 @@ public static Pointer nsegment_to_geom(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer nsegment_to_stbox(Pointer arg0) { + public static jnr.ffi.Pointer nsegment_to_stbox(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nsegment_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -542,7 +542,7 @@ public static Pointer nsegment_to_stbox(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar in/out (default-stateless catch-all)

*/ - public static int route_exists(int arg0) { + public static boolean route_exists(long arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "route_exists requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -555,7 +555,7 @@ public static int route_exists(int arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer teq_tnpoint_npoint(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer teq_tnpoint_npoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "teq_tnpoint_npoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -568,7 +568,7 @@ public static Pointer teq_tnpoint_npoint(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tne_tnpoint_npoint(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tne_tnpoint_npoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tne_tnpoint_npoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -581,7 +581,7 @@ public static Pointer tne_tnpoint_npoint(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_set_npoint(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_set_npoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_set_npoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -594,7 +594,7 @@ public static Pointer union_set_npoint(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_npoint_set(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_npoint_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_npoint_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -607,7 +607,7 @@ public static Pointer minus_npoint_set(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_set_npoint(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_set_npoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_set_npoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -620,7 +620,7 @@ public static Pointer minus_set_npoint(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double nad_tnpoint_geo(Pointer arg0, Pointer arg1) { + public static double nad_tnpoint_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tnpoint_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -633,7 +633,7 @@ public static double nad_tnpoint_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double nad_tnpoint_npoint(Pointer arg0, Pointer arg1) { + public static double nad_tnpoint_npoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tnpoint_npoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -646,7 +646,7 @@ public static double nad_tnpoint_npoint(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double nad_tnpoint_stbox(Pointer arg0, Pointer arg1) { + public static double nad_tnpoint_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tnpoint_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -659,7 +659,7 @@ public static double nad_tnpoint_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer nai_tnpoint_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer nai_tnpoint_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nai_tnpoint_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -672,7 +672,7 @@ public static Pointer nai_tnpoint_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer nai_tnpoint_npoint(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer nai_tnpoint_npoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nai_tnpoint_npoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -685,7 +685,7 @@ public static Pointer nai_tnpoint_npoint(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer shortestline_tnpoint_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer shortestline_tnpoint_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "shortestline_tnpoint_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -698,7 +698,7 @@ public static Pointer shortestline_tnpoint_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer shortestline_tnpoint_npoint(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer shortestline_tnpoint_npoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "shortestline_tnpoint_npoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -711,7 +711,7 @@ public static Pointer shortestline_tnpoint_npoint(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer tdistance_tnpoint_npoint(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdistance_tnpoint_npoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdistance_tnpoint_npoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -724,7 +724,7 @@ public static Pointer tdistance_tnpoint_npoint(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer tdistance_tnpoint_point(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdistance_tnpoint_point(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdistance_tnpoint_point requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -737,7 +737,7 @@ public static Pointer tdistance_tnpoint_point(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_eq_npoint_tnpoint(Pointer arg0, Pointer arg1) { + public static int always_eq_npoint_tnpoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_npoint_tnpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -750,7 +750,7 @@ public static int always_eq_npoint_tnpoint(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_eq_tnpoint_npoint(Pointer arg0, Pointer arg1) { + public static int always_eq_tnpoint_npoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_tnpoint_npoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -763,7 +763,7 @@ public static int always_eq_tnpoint_npoint(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ne_npoint_tnpoint(Pointer arg0, Pointer arg1) { + public static int always_ne_npoint_tnpoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_npoint_tnpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -776,7 +776,7 @@ public static int always_ne_npoint_tnpoint(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ne_tnpoint_npoint(Pointer arg0, Pointer arg1) { + public static int always_ne_tnpoint_npoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_tnpoint_npoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -789,7 +789,7 @@ public static int always_ne_tnpoint_npoint(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_eq_npoint_tnpoint(Pointer arg0, Pointer arg1) { + public static int ever_eq_npoint_tnpoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_npoint_tnpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -802,7 +802,7 @@ public static int ever_eq_npoint_tnpoint(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_eq_tnpoint_npoint(Pointer arg0, Pointer arg1) { + public static int ever_eq_tnpoint_npoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_tnpoint_npoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -815,7 +815,7 @@ public static int ever_eq_tnpoint_npoint(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ne_npoint_tnpoint(Pointer arg0, Pointer arg1) { + public static int ever_ne_npoint_tnpoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_npoint_tnpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -828,7 +828,7 @@ public static int ever_ne_npoint_tnpoint(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ne_tnpoint_npoint(Pointer arg0, Pointer arg1) { + public static int ever_ne_tnpoint_npoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_tnpoint_npoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -841,7 +841,7 @@ public static int ever_ne_tnpoint_npoint(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: sequence-derived metric

*/ - public static double route_length(int arg0) { + public static double route_length(long arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "route_length requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -854,7 +854,7 @@ public static double route_length(int arg0) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int always_eq_tnpoint_tnpoint(Pointer arg0, Pointer arg1) { + public static int always_eq_tnpoint_tnpoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_tnpoint_tnpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -867,7 +867,7 @@ public static int always_eq_tnpoint_tnpoint(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int always_ne_tnpoint_tnpoint(Pointer arg0, Pointer arg1) { + public static int always_ne_tnpoint_tnpoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_tnpoint_tnpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -880,7 +880,7 @@ public static int always_ne_tnpoint_tnpoint(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int ever_eq_tnpoint_tnpoint(Pointer arg0, Pointer arg1) { + public static int ever_eq_tnpoint_tnpoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_tnpoint_tnpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -893,7 +893,7 @@ public static int ever_eq_tnpoint_tnpoint(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int ever_ne_tnpoint_tnpoint(Pointer arg0, Pointer arg1) { + public static int ever_ne_tnpoint_tnpoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_tnpoint_tnpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -906,7 +906,7 @@ public static int ever_ne_tnpoint_tnpoint(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static double nad_tnpoint_tnpoint(Pointer arg0, Pointer arg1) { + public static double nad_tnpoint_tnpoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tnpoint_tnpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -919,7 +919,7 @@ public static double nad_tnpoint_tnpoint(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static Pointer nai_tnpoint_tnpoint(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer nai_tnpoint_tnpoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nai_tnpoint_tnpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -932,7 +932,7 @@ public static Pointer nai_tnpoint_tnpoint(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static Pointer shortestline_tnpoint_tnpoint(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer shortestline_tnpoint_tnpoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "shortestline_tnpoint_tnpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -945,7 +945,7 @@ public static Pointer shortestline_tnpoint_tnpoint(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static Pointer tdistance_tnpoint_tnpoint(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdistance_tnpoint_tnpoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdistance_tnpoint_tnpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -958,7 +958,7 @@ public static Pointer tdistance_tnpoint_tnpoint(Pointer arg0, Pointer arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String npoint_as_ewkt(Pointer arg0, int arg1) { + public static java.lang.String npoint_as_ewkt(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_as_ewkt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -971,7 +971,7 @@ public static String npoint_as_ewkt(Pointer arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String npoint_as_hexwkb(Pointer arg0, byte arg1) { + public static java.lang.String npoint_as_hexwkb(jnr.ffi.Pointer arg0, byte arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_as_hexwkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -984,7 +984,7 @@ public static String npoint_as_hexwkb(Pointer arg0, byte arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String npoint_as_text(Pointer arg0, int arg1) { + public static java.lang.String npoint_as_text(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_as_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -997,7 +997,7 @@ public static String npoint_as_text(Pointer arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static Pointer npoint_as_wkb(Pointer arg0, byte arg1) { + public static jnr.ffi.Pointer npoint_as_wkb(jnr.ffi.Pointer arg0, byte arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_as_wkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1010,7 +1010,7 @@ public static Pointer npoint_as_wkb(Pointer arg0, byte arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static Pointer npoint_from_hexwkb(String arg0) { + public static jnr.ffi.Pointer npoint_from_hexwkb(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_from_hexwkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1023,7 +1023,7 @@ public static Pointer npoint_from_hexwkb(String arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static Pointer npoint_from_wkb(Pointer arg0, long arg1) { + public static jnr.ffi.Pointer npoint_from_wkb(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_from_wkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1036,7 +1036,7 @@ public static Pointer npoint_from_wkb(Pointer arg0, long arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static Pointer npoint_in(String arg0) { + public static jnr.ffi.Pointer npoint_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1049,7 +1049,7 @@ public static Pointer npoint_in(String arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String npoint_out(Pointer arg0, int arg1) { + public static java.lang.String npoint_out(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npoint_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1062,7 +1062,7 @@ public static String npoint_out(Pointer arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static Pointer nsegment_in(String arg0) { + public static jnr.ffi.Pointer nsegment_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nsegment_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1075,7 +1075,7 @@ public static Pointer nsegment_in(String arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String nsegment_out(Pointer arg0, int arg1) { + public static java.lang.String nsegment_out(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nsegment_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreePose.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreePose.java index 5d6c0ff..1a1c6e2 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreePose.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreePose.java @@ -22,7 +22,7 @@ private MeosOpsFreePose() { /* utility */ } *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: topology/position rel on 2 scalars (box/span algebra)

*/ - public static int contained_pose_set(Pointer arg0, Pointer arg1) { + public static boolean contained_pose_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contained_pose_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static int contained_pose_set(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static int contains_set_pose(Pointer arg0, Pointer arg1) { + public static boolean contains_set_pose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "contains_set_pose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -48,7 +48,7 @@ public static int contains_set_pose(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer intersection_set_pose(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer intersection_set_pose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intersection_set_pose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -61,7 +61,7 @@ public static Pointer intersection_set_pose(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int pose_cmp(Pointer arg0, Pointer arg1) { + public static int pose_cmp(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_cmp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -74,7 +74,7 @@ public static int pose_cmp(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer pose_copy(Pointer arg0) { + public static jnr.ffi.Pointer pose_copy(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_copy requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -87,7 +87,7 @@ public static Pointer pose_copy(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int pose_eq(Pointer arg0, Pointer arg1) { + public static boolean pose_eq(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_eq requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -100,7 +100,7 @@ public static int pose_eq(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int pose_ge(Pointer arg0, Pointer arg1) { + public static boolean pose_ge(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_ge requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -113,7 +113,7 @@ public static int pose_ge(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int pose_gt(Pointer arg0, Pointer arg1) { + public static boolean pose_gt(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_gt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -126,7 +126,7 @@ public static int pose_gt(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int pose_hash(Pointer arg0) { + public static int pose_hash(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_hash requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -139,7 +139,7 @@ public static int pose_hash(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int pose_hash_extended(Pointer arg0, int arg1) { + public static long pose_hash_extended(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_hash_extended requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -152,7 +152,7 @@ public static int pose_hash_extended(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int pose_le(Pointer arg0, Pointer arg1) { + public static boolean pose_le(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_le requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -165,7 +165,7 @@ public static int pose_le(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int pose_lt(Pointer arg0, Pointer arg1) { + public static boolean pose_lt(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_lt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -178,7 +178,7 @@ public static int pose_lt(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer pose_make_2d(double arg0, double arg1, double arg2, int arg3) { + public static jnr.ffi.Pointer pose_make_2d(double arg0, double arg1, double arg2, int arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_make_2d requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -191,7 +191,7 @@ public static Pointer pose_make_2d(double arg0, double arg1, double arg2, int ar *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer pose_make_3d(double arg0, double arg1, double arg2, double arg3, double arg4, double arg5, double arg6, int arg7) { + public static jnr.ffi.Pointer pose_make_3d(double arg0, double arg1, double arg2, double arg3, double arg4, double arg5, double arg6, int arg7) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_make_3d requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -204,7 +204,7 @@ public static Pointer pose_make_3d(double arg0, double arg1, double arg2, double *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer pose_make_point2d(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer pose_make_point2d(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_make_point2d requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static Pointer pose_make_point2d(Pointer arg0, double arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer pose_make_point3d(Pointer arg0, double arg1, double arg2, double arg3, double arg4) { + public static jnr.ffi.Pointer pose_make_point3d(jnr.ffi.Pointer arg0, double arg1, double arg2, double arg3, double arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_make_point3d requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -230,7 +230,7 @@ public static Pointer pose_make_point3d(Pointer arg0, double arg1, double arg2, *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: scalar comparison/hash

*/ - public static int pose_ne(Pointer arg0, Pointer arg1) { + public static boolean pose_ne(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_ne requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -243,7 +243,7 @@ public static int pose_ne(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int pose_nsame(Pointer arg0, Pointer arg1) { + public static boolean pose_nsame(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_nsame requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -256,7 +256,7 @@ public static int pose_nsame(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer pose_orientation(Pointer arg0) { + public static jnr.ffi.Pointer pose_orientation(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_orientation requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -269,7 +269,7 @@ public static Pointer pose_orientation(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static double pose_rotation(Pointer arg0) { + public static double pose_rotation(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_rotation requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -282,7 +282,7 @@ public static double pose_rotation(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: transform/normalize (pure)

*/ - public static Pointer pose_round(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer pose_round(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_round requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -295,7 +295,7 @@ public static Pointer pose_round(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int pose_same(Pointer arg0, Pointer arg1) { + public static boolean pose_same(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_same requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -308,7 +308,7 @@ public static int pose_same(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static void pose_set_srid(Pointer arg0, int arg1) { + public static void pose_set_srid(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_set_srid requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -321,7 +321,7 @@ public static void pose_set_srid(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static int pose_srid(Pointer arg0) { + public static int pose_srid(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_srid requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -334,7 +334,7 @@ public static int pose_srid(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer pose_timestamptz_to_stbox(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer pose_timestamptz_to_stbox(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_timestamptz_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -347,7 +347,7 @@ public static Pointer pose_timestamptz_to_stbox(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer pose_to_point(Pointer arg0) { + public static jnr.ffi.Pointer pose_to_point(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_to_point requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -360,7 +360,7 @@ public static Pointer pose_to_point(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer pose_to_set(Pointer arg0) { + public static jnr.ffi.Pointer pose_to_set(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_to_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -373,7 +373,7 @@ public static Pointer pose_to_set(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer pose_to_stbox(Pointer arg0) { + public static jnr.ffi.Pointer pose_to_stbox(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -386,7 +386,7 @@ public static Pointer pose_to_stbox(Pointer arg0) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer pose_transform(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer pose_transform(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_transform requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -399,7 +399,7 @@ public static Pointer pose_transform(Pointer arg0, int arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer pose_transform_pipeline(Pointer arg0, String arg1, int arg2, int arg3) { + public static jnr.ffi.Pointer pose_transform_pipeline(jnr.ffi.Pointer arg0, java.lang.String arg1, int arg2, boolean arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_transform_pipeline requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -412,7 +412,7 @@ public static Pointer pose_transform_pipeline(Pointer arg0, String arg1, int arg *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: name pattern is _to_

*/ - public static Pointer pose_tstzspan_to_stbox(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer pose_tstzspan_to_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_tstzspan_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -425,7 +425,7 @@ public static Pointer pose_tstzspan_to_stbox(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer pose_union_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer pose_union_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_union_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -438,7 +438,7 @@ public static Pointer pose_union_transfn(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: transform/normalize (pure)

*/ - public static Pointer posearr_round(Pointer arg0, int arg1, int arg2) { + public static jnr.ffi.Pointer posearr_round(jnr.ffi.Pointer arg0, int arg1, int arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "posearr_round requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -451,7 +451,7 @@ public static Pointer posearr_round(Pointer arg0, int arg1, int arg2) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer teq_pose_tpose(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer teq_pose_tpose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "teq_pose_tpose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -464,7 +464,7 @@ public static Pointer teq_pose_tpose(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer teq_tpose_pose(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer teq_tpose_pose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "teq_tpose_pose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -477,7 +477,7 @@ public static Pointer teq_tpose_pose(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tne_pose_tpose(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tne_pose_tpose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tne_pose_tpose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -490,7 +490,7 @@ public static Pointer tne_pose_tpose(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tne_tpose_pose(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tne_tpose_pose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tne_tpose_pose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -503,7 +503,7 @@ public static Pointer tne_tpose_pose(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: set/span/box algebra (pure)

*/ - public static Pointer union_set_pose(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer union_set_pose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "union_set_pose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -516,7 +516,7 @@ public static Pointer union_set_pose(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double distance_pose_geo(Pointer arg0, Pointer arg1) { + public static double distance_pose_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_pose_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -529,7 +529,7 @@ public static double distance_pose_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double distance_pose_pose(Pointer arg0, Pointer arg1) { + public static double distance_pose_pose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_pose_pose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -542,7 +542,7 @@ public static double distance_pose_pose(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double distance_pose_stbox(Pointer arg0, Pointer arg1) { + public static double distance_pose_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "distance_pose_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -555,7 +555,7 @@ public static double distance_pose_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_pose_set(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_pose_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_pose_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -568,7 +568,7 @@ public static Pointer minus_pose_set(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: restriction name pattern

*/ - public static Pointer minus_set_pose(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer minus_set_pose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "minus_set_pose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -581,7 +581,7 @@ public static Pointer minus_set_pose(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double nad_tpose_geo(Pointer arg0, Pointer arg1) { + public static double nad_tpose_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tpose_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -594,7 +594,7 @@ public static double nad_tpose_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double nad_tpose_pose(Pointer arg0, Pointer arg1) { + public static double nad_tpose_pose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tpose_pose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -607,7 +607,7 @@ public static double nad_tpose_pose(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double nad_tpose_stbox(Pointer arg0, Pointer arg1) { + public static double nad_tpose_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tpose_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -620,7 +620,7 @@ public static double nad_tpose_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer nai_tpose_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer nai_tpose_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nai_tpose_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -633,7 +633,7 @@ public static Pointer nai_tpose_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer nai_tpose_pose(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer nai_tpose_pose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nai_tpose_pose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -646,7 +646,7 @@ public static Pointer nai_tpose_pose(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer shortestline_tpose_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer shortestline_tpose_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "shortestline_tpose_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -659,7 +659,7 @@ public static Pointer shortestline_tpose_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer shortestline_tpose_pose(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer shortestline_tpose_pose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "shortestline_tpose_pose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -672,7 +672,7 @@ public static Pointer shortestline_tpose_pose(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer tdistance_tpose_point(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdistance_tpose_point(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdistance_tpose_point requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -685,7 +685,7 @@ public static Pointer tdistance_tpose_point(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer tdistance_tpose_pose(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdistance_tpose_pose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdistance_tpose_pose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -698,7 +698,7 @@ public static Pointer tdistance_tpose_pose(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_eq_pose_tpose(Pointer arg0, Pointer arg1) { + public static int always_eq_pose_tpose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_pose_tpose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -711,7 +711,7 @@ public static int always_eq_pose_tpose(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_eq_tpose_pose(Pointer arg0, Pointer arg1) { + public static int always_eq_tpose_pose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_tpose_pose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -724,7 +724,7 @@ public static int always_eq_tpose_pose(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ne_pose_tpose(Pointer arg0, Pointer arg1) { + public static int always_ne_pose_tpose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_pose_tpose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -737,7 +737,7 @@ public static int always_ne_pose_tpose(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ne_tpose_pose(Pointer arg0, Pointer arg1) { + public static int always_ne_tpose_pose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_tpose_pose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -750,7 +750,7 @@ public static int always_ne_tpose_pose(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_eq_pose_tpose(Pointer arg0, Pointer arg1) { + public static int ever_eq_pose_tpose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_pose_tpose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -763,7 +763,7 @@ public static int ever_eq_pose_tpose(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_eq_tpose_pose(Pointer arg0, Pointer arg1) { + public static int ever_eq_tpose_pose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_tpose_pose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -776,7 +776,7 @@ public static int ever_eq_tpose_pose(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ne_pose_tpose(Pointer arg0, Pointer arg1) { + public static int ever_ne_pose_tpose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_pose_tpose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -789,7 +789,7 @@ public static int ever_ne_pose_tpose(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ne_tpose_pose(Pointer arg0, Pointer arg1) { + public static int ever_ne_tpose_pose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_tpose_pose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -802,7 +802,7 @@ public static int ever_ne_tpose_pose(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int always_eq_tpose_tpose(Pointer arg0, Pointer arg1) { + public static int always_eq_tpose_tpose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_tpose_tpose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -815,7 +815,7 @@ public static int always_eq_tpose_tpose(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int always_ne_tpose_tpose(Pointer arg0, Pointer arg1) { + public static int always_ne_tpose_tpose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_tpose_tpose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -828,7 +828,7 @@ public static int always_ne_tpose_tpose(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int ever_eq_tpose_tpose(Pointer arg0, Pointer arg1) { + public static int ever_eq_tpose_tpose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_tpose_tpose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -841,7 +841,7 @@ public static int ever_eq_tpose_tpose(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int ever_ne_tpose_tpose(Pointer arg0, Pointer arg1) { + public static int ever_ne_tpose_tpose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_tpose_tpose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -854,7 +854,7 @@ public static int ever_ne_tpose_tpose(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static double nad_tpose_tpose(Pointer arg0, Pointer arg1) { + public static double nad_tpose_tpose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_tpose_tpose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -867,7 +867,7 @@ public static double nad_tpose_tpose(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static Pointer nai_tpose_tpose(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer nai_tpose_tpose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nai_tpose_tpose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -880,7 +880,7 @@ public static Pointer nai_tpose_tpose(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static Pointer shortestline_tpose_tpose(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer shortestline_tpose_tpose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "shortestline_tpose_tpose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -893,7 +893,7 @@ public static Pointer shortestline_tpose_tpose(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static Pointer tdistance_tpose_tpose(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdistance_tpose_tpose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdistance_tpose_tpose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -906,7 +906,7 @@ public static Pointer tdistance_tpose_tpose(Pointer arg0, Pointer arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String pose_as_ewkt(Pointer arg0, int arg1) { + public static java.lang.String pose_as_ewkt(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_as_ewkt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -919,7 +919,7 @@ public static String pose_as_ewkt(Pointer arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String pose_as_hexwkb(Pointer arg0, byte arg1, Pointer arg2) { + public static java.lang.String pose_as_hexwkb(jnr.ffi.Pointer arg0, byte arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_as_hexwkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -932,7 +932,7 @@ public static String pose_as_hexwkb(Pointer arg0, byte arg1, Pointer arg2) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String pose_as_text(Pointer arg0, int arg1) { + public static java.lang.String pose_as_text(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_as_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -945,7 +945,7 @@ public static String pose_as_text(Pointer arg0, int arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static Pointer pose_as_wkb(Pointer arg0, byte arg1) { + public static jnr.ffi.Pointer pose_as_wkb(jnr.ffi.Pointer arg0, byte arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_as_wkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -958,7 +958,7 @@ public static Pointer pose_as_wkb(Pointer arg0, byte arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static Pointer pose_from_hexwkb(String arg0) { + public static jnr.ffi.Pointer pose_from_hexwkb(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_from_hexwkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -971,7 +971,7 @@ public static Pointer pose_from_hexwkb(String arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static Pointer pose_from_wkb(Pointer arg0, long arg1) { + public static jnr.ffi.Pointer pose_from_wkb(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_from_wkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -984,7 +984,7 @@ public static Pointer pose_from_wkb(Pointer arg0, long arg1) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static Pointer pose_in(String arg0) { + public static jnr.ffi.Pointer pose_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -997,7 +997,7 @@ public static Pointer pose_in(String arg0) { *

I/O / catalog / lifecycle helper.

*

Free function (not class-classified). Classification rule: IO/serialization

*/ - public static String pose_out(Pointer arg0, int arg1) { + public static java.lang.String pose_out(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "pose_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreeRgeo.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreeRgeo.java index 25a916a..0562738 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreeRgeo.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsFreeRgeo.java @@ -22,7 +22,7 @@ private MeosOpsFreeRgeo() { /* utility */ } *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: base-type fn, default pure

*/ - public static Pointer geo_tpose_to_trgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer geo_tpose_to_trgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geo_tpose_to_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer geo_tpose_to_trgeo(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer teq_geo_trgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer teq_geo_trgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "teq_geo_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -48,7 +48,7 @@ public static Pointer teq_geo_trgeo(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer teq_trgeo_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer teq_trgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "teq_trgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -61,7 +61,7 @@ public static Pointer teq_trgeo_geo(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tne_geo_trgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tne_geo_trgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tne_geo_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -74,7 +74,7 @@ public static Pointer tne_geo_trgeo(Pointer arg0, Pointer arg1) { *

Pure per-event; safe in any Flink scalar position.

*

Free function (not class-classified). Classification rule: temporal comparison (per-instant)

*/ - public static Pointer tne_trgeo_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tne_trgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tne_trgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -87,7 +87,7 @@ public static Pointer tne_trgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double nad_stbox_trgeo(Pointer arg0, Pointer arg1) { + public static double nad_stbox_trgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_stbox_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -100,7 +100,7 @@ public static double nad_stbox_trgeo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double nad_trgeo_geo(Pointer arg0, Pointer arg1) { + public static double nad_trgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_trgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -113,7 +113,7 @@ public static double nad_trgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static double nad_trgeo_stbox(Pointer arg0, Pointer arg1) { + public static double nad_trgeo_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_trgeo_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -126,7 +126,7 @@ public static double nad_trgeo_stbox(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer nai_trgeo_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer nai_trgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nai_trgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -139,7 +139,7 @@ public static Pointer nai_trgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer shortestline_trgeo_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer shortestline_trgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "shortestline_trgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -152,7 +152,7 @@ public static Pointer shortestline_trgeo_geo(Pointer arg0, Pointer arg1) { *

Per-event with bounded per-key state (MEOS handle).

*

Free function (not class-classified). Classification rule: distance op

*/ - public static Pointer tdistance_trgeo_geo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdistance_trgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdistance_trgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -165,7 +165,7 @@ public static Pointer tdistance_trgeo_geo(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_eq_geo_trgeo(Pointer arg0, Pointer arg1) { + public static int always_eq_geo_trgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_geo_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -178,7 +178,7 @@ public static int always_eq_geo_trgeo(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_eq_trgeo_geo(Pointer arg0, Pointer arg1) { + public static int always_eq_trgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_trgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -191,7 +191,7 @@ public static int always_eq_trgeo_geo(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ne_geo_trgeo(Pointer arg0, Pointer arg1) { + public static int always_ne_geo_trgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_geo_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -204,7 +204,7 @@ public static int always_ne_geo_trgeo(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int always_ne_trgeo_geo(Pointer arg0, Pointer arg1) { + public static int always_ne_trgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_trgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static int always_ne_trgeo_geo(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_eq_geo_trgeo(Pointer arg0, Pointer arg1) { + public static int ever_eq_geo_trgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_geo_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -230,7 +230,7 @@ public static int ever_eq_geo_trgeo(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_eq_trgeo_geo(Pointer arg0, Pointer arg1) { + public static int ever_eq_trgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_trgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -243,7 +243,7 @@ public static int ever_eq_trgeo_geo(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ne_geo_trgeo(Pointer arg0, Pointer arg1) { + public static int ever_ne_geo_trgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_geo_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -256,7 +256,7 @@ public static int ever_ne_geo_trgeo(Pointer arg0, Pointer arg1) { *

Requires window operator — caller wraps in AggregateFunction.

*

Free function (not class-classified). Classification rule: ever/always over 1 temporal

*/ - public static int ever_ne_trgeo_geo(Pointer arg0, Pointer arg1) { + public static int ever_ne_trgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_trgeo_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -269,7 +269,7 @@ public static int ever_ne_trgeo_geo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int always_eq_trgeo_trgeo(Pointer arg0, Pointer arg1) { + public static int always_eq_trgeo_trgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_eq_trgeo_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -282,7 +282,7 @@ public static int always_eq_trgeo_trgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int always_ne_trgeo_trgeo(Pointer arg0, Pointer arg1) { + public static int always_ne_trgeo_trgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "always_ne_trgeo_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -295,7 +295,7 @@ public static int always_ne_trgeo_trgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int ever_eq_trgeo_trgeo(Pointer arg0, Pointer arg1) { + public static int ever_eq_trgeo_trgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_eq_trgeo_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -308,7 +308,7 @@ public static int ever_eq_trgeo_trgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: ever/always over 2 temporals

*/ - public static int ever_ne_trgeo_trgeo(Pointer arg0, Pointer arg1) { + public static int ever_ne_trgeo_trgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ever_ne_trgeo_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -321,7 +321,7 @@ public static int ever_ne_trgeo_trgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static double nad_trgeo_tpoint(Pointer arg0, Pointer arg1) { + public static double nad_trgeo_tpoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_trgeo_tpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -334,7 +334,7 @@ public static double nad_trgeo_tpoint(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static double nad_trgeo_trgeo(Pointer arg0, Pointer arg1) { + public static double nad_trgeo_trgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nad_trgeo_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -347,7 +347,7 @@ public static double nad_trgeo_trgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static Pointer nai_trgeo_tpoint(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer nai_trgeo_tpoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nai_trgeo_tpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -360,7 +360,7 @@ public static Pointer nai_trgeo_tpoint(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static Pointer nai_trgeo_trgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer nai_trgeo_trgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "nai_trgeo_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -373,7 +373,7 @@ public static Pointer nai_trgeo_trgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static Pointer shortestline_trgeo_tpoint(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer shortestline_trgeo_tpoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "shortestline_trgeo_tpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -386,7 +386,7 @@ public static Pointer shortestline_trgeo_tpoint(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static Pointer shortestline_trgeo_trgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer shortestline_trgeo_trgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "shortestline_trgeo_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -399,7 +399,7 @@ public static Pointer shortestline_trgeo_trgeo(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static Pointer tdistance_trgeo_tpoint(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdistance_trgeo_tpoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdistance_trgeo_tpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -412,7 +412,7 @@ public static Pointer tdistance_trgeo_tpoint(Pointer arg0, Pointer arg1) { *

Pairwise across streams — caller wraps in a join.

*

Free function (not class-classified). Classification rule: distance on 2 temporals

*/ - public static Pointer tdistance_trgeo_trgeo(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tdistance_trgeo_trgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tdistance_trgeo_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsGeogSet.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsGeogSet.java index 1aec3dd..e9558d1 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsGeogSet.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsGeogSet.java @@ -21,7 +21,7 @@ private MeosOpsGeogSet() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer geogset_in(String arg0) { + public static jnr.ffi.Pointer geogset_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geogset_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsGeomSet.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsGeomSet.java index 576fb83..c53bee9 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsGeomSet.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsGeomSet.java @@ -21,7 +21,7 @@ private MeosOpsGeomSet() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer geoset_make(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer geoset_make(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geoset_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer geoset_make(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer geoset_end_value(Pointer arg0) { + public static jnr.ffi.Pointer geoset_end_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geoset_end_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer geoset_end_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer geoset_start_value(Pointer arg0) { + public static jnr.ffi.Pointer geoset_start_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geoset_start_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,12 +63,12 @@ public static Pointer geoset_start_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int geoset_value_n(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer geoset_value_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geoset_value_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.geoset_value_n(arg0, arg1, arg2); + return GeneratedFunctions.geoset_value_n(arg0, arg1); } /** @@ -77,7 +77,7 @@ public static int geoset_value_n(Pointer arg0, int arg1, Pointer arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer geoset_values(Pointer arg0) { + public static jnr.ffi.Pointer geoset_values(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geoset_values requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer geoset_values(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer geomset_in(String arg0) { + public static jnr.ffi.Pointer geomset_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "geomset_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsIntSet.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsIntSet.java index dba93b0..67fc71f 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsIntSet.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsIntSet.java @@ -21,7 +21,7 @@ private MeosOpsIntSet() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer intset_make(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer intset_make(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intset_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer intset_make(Pointer arg0, int arg1) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer intset_to_floatset(Pointer arg0) { + public static jnr.ffi.Pointer intset_to_floatset(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intset_to_floatset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer intset_to_floatset(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int intset_end_value(Pointer arg0) { + public static int intset_end_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intset_end_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static int intset_end_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer intset_shift_scale(Pointer arg0, int arg1, int arg2, int arg3, int arg4) { + public static jnr.ffi.Pointer intset_shift_scale(jnr.ffi.Pointer arg0, int arg1, int arg2, boolean arg3, boolean arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intset_shift_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer intset_shift_scale(Pointer arg0, int arg1, int arg2, int a *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int intset_start_value(Pointer arg0) { + public static int intset_start_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intset_start_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,12 +91,12 @@ public static int intset_start_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int intset_value_n(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer intset_value_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intset_value_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.intset_value_n(arg0, arg1, arg2); + return GeneratedFunctions.intset_value_n(arg0, arg1); } /** @@ -105,7 +105,7 @@ public static int intset_value_n(Pointer arg0, int arg1, Pointer arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer intset_values(Pointer arg0) { + public static jnr.ffi.Pointer intset_values(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intset_values requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static Pointer intset_values(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer intset_in(String arg0) { + public static jnr.ffi.Pointer intset_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intset_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer intset_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String intset_out(Pointer arg0) { + public static java.lang.String intset_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intset_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsIntSpan.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsIntSpan.java index f3c941e..890e311 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsIntSpan.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsIntSpan.java @@ -21,7 +21,7 @@ private MeosOpsIntSpan() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer intspan_make(int arg0, int arg1, int arg2, int arg3) { + public static jnr.ffi.Pointer intspan_make(int arg0, int arg1, boolean arg2, boolean arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intspan_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer intspan_make(int arg0, int arg1, int arg2, int arg3) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer intspan_to_floatspan(Pointer arg0) { + public static jnr.ffi.Pointer intspan_to_floatspan(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intspan_to_floatspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer intspan_to_floatspan(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer intspan_bins(Pointer arg0, int arg1, int arg2, Pointer arg3) { + public static jnr.ffi.Pointer intspan_bins(jnr.ffi.Pointer arg0, int arg1, int arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intspan_bins requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer intspan_bins(Pointer arg0, int arg1, int arg2, Pointer arg *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer intspan_expand(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer intspan_expand(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intspan_expand requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer intspan_expand(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int intspan_lower(Pointer arg0) { + public static int intspan_lower(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intspan_lower requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static int intspan_lower(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer intspan_shift_scale(Pointer arg0, int arg1, int arg2, int arg3, int arg4) { + public static jnr.ffi.Pointer intspan_shift_scale(jnr.ffi.Pointer arg0, int arg1, int arg2, boolean arg3, boolean arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intspan_shift_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer intspan_shift_scale(Pointer arg0, int arg1, int arg2, int *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int intspan_upper(Pointer arg0) { + public static int intspan_upper(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intspan_upper requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static int intspan_upper(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int intspan_width(Pointer arg0) { + public static int intspan_width(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intspan_width requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static int intspan_width(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer intspan_in(String arg0) { + public static jnr.ffi.Pointer intspan_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intspan_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static Pointer intspan_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String intspan_out(Pointer arg0) { + public static java.lang.String intspan_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intspan_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsIntSpanSet.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsIntSpanSet.java index 076c8b5..6e98092 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsIntSpanSet.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsIntSpanSet.java @@ -21,7 +21,7 @@ private MeosOpsIntSpanSet() { /* utility */ } *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer intspanset_to_floatspanset(Pointer arg0) { + public static jnr.ffi.Pointer intspanset_to_floatspanset(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intspanset_to_floatspanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer intspanset_to_floatspanset(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer intspanset_bins(Pointer arg0, int arg1, int arg2, Pointer arg3) { + public static jnr.ffi.Pointer intspanset_bins(jnr.ffi.Pointer arg0, int arg1, int arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intspanset_bins requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer intspanset_bins(Pointer arg0, int arg1, int arg2, Pointer *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int intspanset_lower(Pointer arg0) { + public static int intspanset_lower(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intspanset_lower requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static int intspanset_lower(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer intspanset_shift_scale(Pointer arg0, int arg1, int arg2, int arg3, int arg4) { + public static jnr.ffi.Pointer intspanset_shift_scale(jnr.ffi.Pointer arg0, int arg1, int arg2, boolean arg3, boolean arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intspanset_shift_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer intspanset_shift_scale(Pointer arg0, int arg1, int arg2, i *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int intspanset_upper(Pointer arg0) { + public static int intspanset_upper(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intspanset_upper requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static int intspanset_upper(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int intspanset_width(Pointer arg0, int arg1) { + public static int intspanset_width(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intspanset_width requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static int intspanset_width(Pointer arg0, int arg1) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer intspanset_in(String arg0) { + public static jnr.ffi.Pointer intspanset_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intspanset_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static Pointer intspanset_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String intspanset_out(Pointer arg0) { + public static java.lang.String intspanset_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "intspanset_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsNpointSet.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsNpointSet.java index fa076d2..8ee8056 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsNpointSet.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsNpointSet.java @@ -21,7 +21,7 @@ private MeosOpsNpointSet() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer npointset_make(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer npointset_make(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npointset_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer npointset_make(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer npointset_end_value(Pointer arg0) { + public static jnr.ffi.Pointer npointset_end_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npointset_end_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer npointset_end_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer npointset_routes(Pointer arg0) { + public static jnr.ffi.Pointer npointset_routes(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npointset_routes requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer npointset_routes(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer npointset_start_value(Pointer arg0) { + public static jnr.ffi.Pointer npointset_start_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npointset_start_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,12 +77,12 @@ public static Pointer npointset_start_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int npointset_value_n(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer npointset_value_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npointset_value_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.npointset_value_n(arg0, arg1, arg2); + return GeneratedFunctions.npointset_value_n(arg0, arg1); } /** @@ -91,7 +91,7 @@ public static int npointset_value_n(Pointer arg0, int arg1, Pointer arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer npointset_values(Pointer arg0) { + public static jnr.ffi.Pointer npointset_values(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npointset_values requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer npointset_values(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer npointset_in(String arg0) { + public static jnr.ffi.Pointer npointset_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npointset_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static Pointer npointset_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String npointset_out(Pointer arg0, int arg1) { + public static java.lang.String npointset_out(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "npointset_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsParityGaps.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsParityGaps.java index 8132180..6cdaa9b 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsParityGaps.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsParityGaps.java @@ -11,7 +11,7 @@ public final class MeosOpsParityGaps { private MeosOpsParityGaps() { /* utility */ } /** MEOS {@code bearing_tpoint_point} — meos_geo.h · scalar / stateless. */ - public static jnr.ffi.Pointer bearing_tpoint_point(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, int arg2) { + public static jnr.ffi.Pointer bearing_tpoint_point(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("bearing_tpoint_point requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.bearing_tpoint_point(arg0, arg1, arg2); @@ -88,7 +88,7 @@ public static jnr.ffi.Pointer intersection_pose_set(jnr.ffi.Pointer arg0, jnr.ff } /** MEOS {@code line_interpolate_point} — meos_geo.h · scalar / stateless. */ - public static jnr.ffi.Pointer line_interpolate_point(jnr.ffi.Pointer arg0, double arg1, int arg2) { + public static jnr.ffi.Pointer line_interpolate_point(jnr.ffi.Pointer arg0, double arg1, boolean arg2) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("line_interpolate_point requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.line_interpolate_point(arg0, arg1, arg2); @@ -122,6 +122,41 @@ public static double mindistance_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer return functions.GeneratedFunctions.mindistance_tgeo_tgeo(arg0, arg1, arg2); } + /** MEOS {@code mul_float_tfloat} — meos.h · scalar / stateless. */ + public static jnr.ffi.Pointer mul_float_tfloat(double arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("mul_float_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); + return functions.GeneratedFunctions.mul_float_tfloat(arg0, arg1); + } + + /** MEOS {@code mul_int_tint} — meos.h · scalar / stateless. */ + public static jnr.ffi.Pointer mul_int_tint(int arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("mul_int_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); + return functions.GeneratedFunctions.mul_int_tint(arg0, arg1); + } + + /** MEOS {@code mul_tfloat_float} — meos.h · scalar / stateless. */ + public static jnr.ffi.Pointer mul_tfloat_float(jnr.ffi.Pointer arg0, double arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("mul_tfloat_float requires libmeos — set -Dmobilityflink.meos.enabled=true"); + return functions.GeneratedFunctions.mul_tfloat_float(arg0, arg1); + } + + /** MEOS {@code mul_tint_int} — meos.h · scalar / stateless. */ + public static jnr.ffi.Pointer mul_tint_int(jnr.ffi.Pointer arg0, int arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("mul_tint_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); + return functions.GeneratedFunctions.mul_tint_int(arg0, arg1); + } + + /** MEOS {@code mul_tnumber_tnumber} — meos.h · scalar / stateless. */ + public static jnr.ffi.Pointer mul_tnumber_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("mul_tnumber_tnumber requires libmeos — set -Dmobilityflink.meos.enabled=true"); + return functions.GeneratedFunctions.mul_tnumber_tnumber(arg0, arg1); + } + /** MEOS {@code nsegment_end_position} — meos_npoint.h · scalar / stateless. */ public static double nsegment_end_position(jnr.ffi.Pointer arg0) { if (!MeosOpsRuntime.MEOS_AVAILABLE) @@ -137,7 +172,7 @@ public static double nsegment_start_position(jnr.ffi.Pointer arg0) { } /** MEOS {@code route_geom} — meos_npoint.h · scalar / stateless. */ - public static jnr.ffi.Pointer route_geom(int arg0) { + public static jnr.ffi.Pointer route_geom(long arg0) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("route_geom requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.route_geom(arg0); @@ -158,21 +193,21 @@ public static jnr.ffi.Pointer spatialset_transform(jnr.ffi.Pointer arg0, int arg } /** MEOS {@code spatialset_transform_pipeline} — meos_geo.h · scalar / stateless. */ - public static jnr.ffi.Pointer spatialset_transform_pipeline(jnr.ffi.Pointer arg0, java.lang.String arg1, int arg2, int arg3) { + public static jnr.ffi.Pointer spatialset_transform_pipeline(jnr.ffi.Pointer arg0, java.lang.String arg1, int arg2, boolean arg3) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("spatialset_transform_pipeline requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.spatialset_transform_pipeline(arg0, arg1, arg2, arg3); } /** MEOS {@code tand_bool_tbool} — meos.h · scalar / stateless. */ - public static jnr.ffi.Pointer tand_bool_tbool(int arg0, jnr.ffi.Pointer arg1) { + public static jnr.ffi.Pointer tand_bool_tbool(boolean arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("tand_bool_tbool requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.tand_bool_tbool(arg0, arg1); } /** MEOS {@code tand_tbool_bool} — meos.h · scalar / stateless. */ - public static jnr.ffi.Pointer tand_tbool_bool(jnr.ffi.Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tand_tbool_bool(jnr.ffi.Pointer arg0, boolean arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("tand_tbool_bool requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.tand_tbool_bool(arg0, arg1); @@ -186,28 +221,28 @@ public static jnr.ffi.Pointer tand_tbool_tbool(jnr.ffi.Pointer arg0, jnr.ffi.Poi } /** MEOS {@code tboolseq_from_base_tstzset} — meos.h · whole-sequence constructor — not a per-event op. */ - public static jnr.ffi.Pointer tboolseq_from_base_tstzset(int arg0, jnr.ffi.Pointer arg1) { + public static jnr.ffi.Pointer tboolseq_from_base_tstzset(boolean arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("tboolseq_from_base_tstzset requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.tboolseq_from_base_tstzset(arg0, arg1); } /** MEOS {@code tboolseq_from_base_tstzspan} — meos.h · whole-sequence constructor — not a per-event op. */ - public static jnr.ffi.Pointer tboolseq_from_base_tstzspan(int arg0, jnr.ffi.Pointer arg1) { + public static jnr.ffi.Pointer tboolseq_from_base_tstzspan(boolean arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("tboolseq_from_base_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.tboolseq_from_base_tstzspan(arg0, arg1); } /** MEOS {@code tboolseqset_from_base_tstzspanset} — meos.h · whole-sequence constructor — not a per-event op. */ - public static jnr.ffi.Pointer tboolseqset_from_base_tstzspanset(int arg0, jnr.ffi.Pointer arg1) { + public static jnr.ffi.Pointer tboolseqset_from_base_tstzspanset(boolean arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("tboolseqset_from_base_tstzspanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.tboolseqset_from_base_tstzspanset(arg0, arg1); } /** MEOS {@code tfloatbox_time_tiles} — meos.h · multidimensional tiling (windowed). */ - public static jnr.ffi.Pointer tfloatbox_time_tiles(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, int arg2, jnr.ffi.Pointer arg3) { + public static jnr.ffi.Pointer tfloatbox_time_tiles(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, java.time.OffsetDateTime arg2, jnr.ffi.Pointer arg3) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("tfloatbox_time_tiles requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.tfloatbox_time_tiles(arg0, arg1, arg2, arg3); @@ -221,7 +256,7 @@ public static jnr.ffi.Pointer tfloatbox_value_tiles(jnr.ffi.Pointer arg0, double } /** MEOS {@code tfloatbox_value_time_tiles} — meos.h · multidimensional tiling (windowed). */ - public static jnr.ffi.Pointer tfloatbox_value_time_tiles(jnr.ffi.Pointer arg0, double arg1, jnr.ffi.Pointer arg2, double arg3, int arg4, jnr.ffi.Pointer arg5) { + public static jnr.ffi.Pointer tfloatbox_value_time_tiles(jnr.ffi.Pointer arg0, double arg1, jnr.ffi.Pointer arg2, double arg3, java.time.OffsetDateTime arg4, jnr.ffi.Pointer arg5) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("tfloatbox_value_time_tiles requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.tfloatbox_value_time_tiles(arg0, arg1, arg2, arg3, arg4, arg5); @@ -277,7 +312,7 @@ public static jnr.ffi.Pointer tgeoseqset_from_base_tstzspanset(jnr.ffi.Pointer a } /** MEOS {@code tintbox_time_tiles} — meos.h · multidimensional tiling (windowed). */ - public static jnr.ffi.Pointer tintbox_time_tiles(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, int arg2, jnr.ffi.Pointer arg3) { + public static jnr.ffi.Pointer tintbox_time_tiles(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, java.time.OffsetDateTime arg2, jnr.ffi.Pointer arg3) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("tintbox_time_tiles requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.tintbox_time_tiles(arg0, arg1, arg2, arg3); @@ -291,7 +326,7 @@ public static jnr.ffi.Pointer tintbox_value_tiles(jnr.ffi.Pointer arg0, int arg1 } /** MEOS {@code tintbox_value_time_tiles} — meos.h · multidimensional tiling (windowed). */ - public static jnr.ffi.Pointer tintbox_value_time_tiles(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2, int arg3, int arg4, jnr.ffi.Pointer arg5) { + public static jnr.ffi.Pointer tintbox_value_time_tiles(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2, int arg3, java.time.OffsetDateTime arg4, jnr.ffi.Pointer arg5) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("tintbox_value_time_tiles requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.tintbox_value_time_tiles(arg0, arg1, arg2, arg3, arg4, arg5); @@ -326,14 +361,14 @@ public static jnr.ffi.Pointer tnot_tbool(jnr.ffi.Pointer arg0) { } /** MEOS {@code tor_bool_tbool} — meos.h · scalar / stateless. */ - public static jnr.ffi.Pointer tor_bool_tbool(int arg0, jnr.ffi.Pointer arg1) { + public static jnr.ffi.Pointer tor_bool_tbool(boolean arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("tor_bool_tbool requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.tor_bool_tbool(arg0, arg1); } /** MEOS {@code tor_tbool_bool} — meos.h · scalar / stateless. */ - public static jnr.ffi.Pointer tor_tbool_bool(jnr.ffi.Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tor_tbool_bool(jnr.ffi.Pointer arg0, boolean arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("tor_tbool_bool requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.tor_tbool_bool(arg0, arg1); @@ -361,7 +396,7 @@ public static jnr.ffi.Pointer tpointseq_from_base_tstzspan(jnr.ffi.Pointer arg0, } /** MEOS {@code tpointseq_make_coords} — meos_geo.h · whole-sequence constructor — not a per-event op. */ - public static jnr.ffi.Pointer tpointseq_make_coords(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2, jnr.ffi.Pointer arg3, int arg4, int arg5, int arg6, int arg7, int arg8, int arg9, int arg10) { + public static jnr.ffi.Pointer tpointseq_make_coords(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2, jnr.ffi.Pointer arg3, int arg4, int arg5, boolean arg6, boolean arg7, boolean arg8, int arg9, boolean arg10) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("tpointseq_make_coords requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.tpointseq_make_coords(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); @@ -375,14 +410,14 @@ public static jnr.ffi.Pointer tpointseqset_from_base_tstzspanset(jnr.ffi.Pointer } /** MEOS {@code tsequence_make} — meos.h · whole-sequence constructor — not a per-event op. */ - public static jnr.ffi.Pointer tsequence_make(jnr.ffi.Pointer arg0, int arg1, int arg2, int arg3, int arg4, int arg5) { + public static jnr.ffi.Pointer tsequence_make(jnr.ffi.Pointer arg0, int arg1, boolean arg2, boolean arg3, int arg4, boolean arg5) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("tsequence_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.tsequence_make(arg0, arg1, arg2, arg3, arg4, arg5); } /** MEOS {@code tsequenceset_make} — meos.h · whole-sequence constructor — not a per-event op. */ - public static jnr.ffi.Pointer tsequenceset_make(jnr.ffi.Pointer arg0, int arg1, int arg2) { + public static jnr.ffi.Pointer tsequenceset_make(jnr.ffi.Pointer arg0, int arg1, boolean arg2) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("tsequenceset_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.tsequenceset_make(arg0, arg1, arg2); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsPoseSet.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsPoseSet.java index 9fe36d8..8434bcb 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsPoseSet.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsPoseSet.java @@ -21,7 +21,7 @@ private MeosOpsPoseSet() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer poseset_make(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer poseset_make(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "poseset_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer poseset_make(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer poseset_end_value(Pointer arg0) { + public static jnr.ffi.Pointer poseset_end_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "poseset_end_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer poseset_end_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer poseset_start_value(Pointer arg0) { + public static jnr.ffi.Pointer poseset_start_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "poseset_start_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,12 +63,12 @@ public static Pointer poseset_start_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int poseset_value_n(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer poseset_value_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "poseset_value_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.poseset_value_n(arg0, arg1, arg2); + return GeneratedFunctions.poseset_value_n(arg0, arg1); } /** @@ -77,7 +77,7 @@ public static int poseset_value_n(Pointer arg0, int arg1, Pointer arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer poseset_values(Pointer arg0) { + public static jnr.ffi.Pointer poseset_values(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "poseset_values requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer poseset_values(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer poseset_in(String arg0) { + public static jnr.ffi.Pointer poseset_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "poseset_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer poseset_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String poseset_out(Pointer arg0, int arg1) { + public static java.lang.String poseset_out(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "poseset_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsSTBox.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsSTBox.java index f4c767b..02dac11 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsSTBox.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsSTBox.java @@ -21,7 +21,7 @@ private MeosOpsSTBox() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer stbox_copy(Pointer arg0) { + public static jnr.ffi.Pointer stbox_copy(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_copy requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer stbox_copy(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer stbox_make(int arg0, int arg1, int arg2, int arg3, double arg4, double arg5, double arg6, double arg7, double arg8, double arg9, Pointer arg10) { + public static jnr.ffi.Pointer stbox_make(boolean arg0, boolean arg1, boolean arg2, int arg3, double arg4, double arg5, double arg6, double arg7, double arg8, double arg9, jnr.ffi.Pointer arg10) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer stbox_make(int arg0, int arg1, int arg2, int arg3, double *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer stbox_to_box3d(Pointer arg0) { + public static jnr.ffi.Pointer stbox_to_box3d(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_to_box3d requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer stbox_to_box3d(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer stbox_to_gbox(Pointer arg0) { + public static jnr.ffi.Pointer stbox_to_gbox(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_to_gbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer stbox_to_gbox(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer stbox_to_geo(Pointer arg0) { + public static jnr.ffi.Pointer stbox_to_geo(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_to_geo requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer stbox_to_geo(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer stbox_to_tstzspan(Pointer arg0) { + public static jnr.ffi.Pointer stbox_to_tstzspan(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_to_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer stbox_to_tstzspan(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double stbox_area(Pointer arg0, int arg1) { + public static double stbox_area(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_area requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static double stbox_area(Pointer arg0, int arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int stbox_cmp(Pointer arg0, Pointer arg1) { + public static int stbox_cmp(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_cmp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static int stbox_cmp(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int stbox_eq(Pointer arg0, Pointer arg1) { + public static boolean stbox_eq(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_eq requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static int stbox_eq(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer stbox_expand_space(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer stbox_expand_space(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_expand_space requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static Pointer stbox_expand_space(Pointer arg0, double arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer stbox_expand_time(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer stbox_expand_time(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_expand_time requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static Pointer stbox_expand_time(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int stbox_ge(Pointer arg0, Pointer arg1) { + public static boolean stbox_ge(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_ge requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static int stbox_ge(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer stbox_get_space(Pointer arg0) { + public static jnr.ffi.Pointer stbox_get_space(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_get_space requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -203,7 +203,7 @@ public static Pointer stbox_get_space(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer stbox_get_space_tile(Pointer arg0, double arg1, double arg2, double arg3, Pointer arg4) { + public static jnr.ffi.Pointer stbox_get_space_tile(jnr.ffi.Pointer arg0, double arg1, double arg2, double arg3, jnr.ffi.Pointer arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_get_space_tile requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static Pointer stbox_get_space_tile(Pointer arg0, double arg1, double arg *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer stbox_get_space_time_tile(Pointer arg0, int arg1, double arg2, double arg3, double arg4, Pointer arg5, Pointer arg6, int arg7) { + public static jnr.ffi.Pointer stbox_get_space_time_tile(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1, double arg2, double arg3, double arg4, jnr.ffi.Pointer arg5, jnr.ffi.Pointer arg6, java.time.OffsetDateTime arg7) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_get_space_time_tile requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -231,7 +231,7 @@ public static Pointer stbox_get_space_time_tile(Pointer arg0, int arg1, double a *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer stbox_get_time_tile(int arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer stbox_get_time_tile(java.time.OffsetDateTime arg0, jnr.ffi.Pointer arg1, java.time.OffsetDateTime arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_get_time_tile requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -245,7 +245,7 @@ public static Pointer stbox_get_time_tile(int arg0, Pointer arg1, int arg2) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int stbox_gt(Pointer arg0, Pointer arg1) { + public static boolean stbox_gt(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_gt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -259,7 +259,7 @@ public static int stbox_gt(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int stbox_hash(Pointer arg0) { + public static int stbox_hash(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_hash requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -273,7 +273,7 @@ public static int stbox_hash(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int stbox_hash_extended(Pointer arg0, int arg1) { + public static long stbox_hash_extended(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_hash_extended requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -287,7 +287,7 @@ public static int stbox_hash_extended(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int stbox_hast(Pointer arg0) { + public static boolean stbox_hast(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_hast requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -301,7 +301,7 @@ public static int stbox_hast(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int stbox_hasx(Pointer arg0) { + public static boolean stbox_hasx(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_hasx requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -315,7 +315,7 @@ public static int stbox_hasx(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int stbox_hasz(Pointer arg0) { + public static boolean stbox_hasz(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_hasz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -329,7 +329,7 @@ public static int stbox_hasz(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int stbox_isgeodetic(Pointer arg0) { + public static boolean stbox_isgeodetic(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_isgeodetic requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -343,7 +343,7 @@ public static int stbox_isgeodetic(Pointer arg0) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int stbox_le(Pointer arg0, Pointer arg1) { + public static boolean stbox_le(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_le requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -357,7 +357,7 @@ public static int stbox_le(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int stbox_lt(Pointer arg0, Pointer arg1) { + public static boolean stbox_lt(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_lt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -371,7 +371,7 @@ public static int stbox_lt(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int stbox_ne(Pointer arg0, Pointer arg1) { + public static boolean stbox_ne(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_ne requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -385,7 +385,7 @@ public static int stbox_ne(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double stbox_perimeter(Pointer arg0, int arg1) { + public static double stbox_perimeter(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_perimeter requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -399,7 +399,7 @@ public static double stbox_perimeter(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer stbox_quad_split(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer stbox_quad_split(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_quad_split requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -413,7 +413,7 @@ public static Pointer stbox_quad_split(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer stbox_round(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer stbox_round(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_round requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -427,7 +427,7 @@ public static Pointer stbox_round(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer stbox_set_srid(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer stbox_set_srid(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_set_srid requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -441,7 +441,7 @@ public static Pointer stbox_set_srid(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer stbox_shift_scale_time(Pointer arg0, Pointer arg1, Pointer arg2) { + public static jnr.ffi.Pointer stbox_shift_scale_time(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_shift_scale_time requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -455,7 +455,7 @@ public static Pointer stbox_shift_scale_time(Pointer arg0, Pointer arg1, Pointer *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer stbox_space_tiles(Pointer arg0, double arg1, double arg2, double arg3, Pointer arg4, int arg5, Pointer arg6) { + public static jnr.ffi.Pointer stbox_space_tiles(jnr.ffi.Pointer arg0, double arg1, double arg2, double arg3, jnr.ffi.Pointer arg4, boolean arg5, jnr.ffi.Pointer arg6) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_space_tiles requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -469,7 +469,7 @@ public static Pointer stbox_space_tiles(Pointer arg0, double arg1, double arg2, *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer stbox_space_time_tiles(Pointer arg0, double arg1, double arg2, double arg3, Pointer arg4, Pointer arg5, int arg6, int arg7, Pointer arg8) { + public static jnr.ffi.Pointer stbox_space_time_tiles(jnr.ffi.Pointer arg0, double arg1, double arg2, double arg3, jnr.ffi.Pointer arg4, jnr.ffi.Pointer arg5, java.time.OffsetDateTime arg6, boolean arg7, jnr.ffi.Pointer arg8) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_space_time_tiles requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -483,7 +483,7 @@ public static Pointer stbox_space_time_tiles(Pointer arg0, double arg1, double a *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int stbox_srid(Pointer arg0) { + public static int stbox_srid(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_srid requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -497,7 +497,7 @@ public static int stbox_srid(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer stbox_time_tiles(Pointer arg0, Pointer arg1, int arg2, int arg3, Pointer arg4) { + public static jnr.ffi.Pointer stbox_time_tiles(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, java.time.OffsetDateTime arg2, boolean arg3, jnr.ffi.Pointer arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_time_tiles requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -511,12 +511,12 @@ public static Pointer stbox_time_tiles(Pointer arg0, Pointer arg1, int arg2, int *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int stbox_tmax(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer stbox_tmax(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_tmax requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.stbox_tmax(arg0, arg1); + return GeneratedFunctions.stbox_tmax(arg0); } /** @@ -525,12 +525,12 @@ public static int stbox_tmax(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int stbox_tmax_inc(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer stbox_tmax_inc(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_tmax_inc requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.stbox_tmax_inc(arg0, arg1); + return GeneratedFunctions.stbox_tmax_inc(arg0); } /** @@ -539,12 +539,12 @@ public static int stbox_tmax_inc(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int stbox_tmin(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer stbox_tmin(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_tmin requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.stbox_tmin(arg0, arg1); + return GeneratedFunctions.stbox_tmin(arg0); } /** @@ -553,12 +553,12 @@ public static int stbox_tmin(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int stbox_tmin_inc(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer stbox_tmin_inc(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_tmin_inc requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.stbox_tmin_inc(arg0, arg1); + return GeneratedFunctions.stbox_tmin_inc(arg0); } /** @@ -567,7 +567,7 @@ public static int stbox_tmin_inc(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer stbox_transform(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer stbox_transform(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_transform requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -581,7 +581,7 @@ public static Pointer stbox_transform(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer stbox_transform_pipeline(Pointer arg0, String arg1, int arg2, int arg3) { + public static jnr.ffi.Pointer stbox_transform_pipeline(jnr.ffi.Pointer arg0, java.lang.String arg1, int arg2, boolean arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_transform_pipeline requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -595,7 +595,7 @@ public static Pointer stbox_transform_pipeline(Pointer arg0, String arg1, int ar *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double stbox_volume(Pointer arg0) { + public static double stbox_volume(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_volume requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -609,12 +609,12 @@ public static double stbox_volume(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int stbox_xmax(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer stbox_xmax(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_xmax requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.stbox_xmax(arg0, arg1); + return GeneratedFunctions.stbox_xmax(arg0); } /** @@ -623,12 +623,12 @@ public static int stbox_xmax(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int stbox_xmin(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer stbox_xmin(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_xmin requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.stbox_xmin(arg0, arg1); + return GeneratedFunctions.stbox_xmin(arg0); } /** @@ -637,12 +637,12 @@ public static int stbox_xmin(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int stbox_ymax(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer stbox_ymax(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_ymax requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.stbox_ymax(arg0, arg1); + return GeneratedFunctions.stbox_ymax(arg0); } /** @@ -651,12 +651,12 @@ public static int stbox_ymax(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int stbox_ymin(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer stbox_ymin(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_ymin requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.stbox_ymin(arg0, arg1); + return GeneratedFunctions.stbox_ymin(arg0); } /** @@ -665,12 +665,12 @@ public static int stbox_ymin(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int stbox_zmax(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer stbox_zmax(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_zmax requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.stbox_zmax(arg0, arg1); + return GeneratedFunctions.stbox_zmax(arg0); } /** @@ -679,12 +679,12 @@ public static int stbox_zmax(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int stbox_zmin(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer stbox_zmin(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_zmin requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.stbox_zmin(arg0, arg1); + return GeneratedFunctions.stbox_zmin(arg0); } /** @@ -693,7 +693,7 @@ public static int stbox_zmin(Pointer arg0, Pointer arg1) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String stbox_as_hexwkb(Pointer arg0, byte arg1, Pointer arg2) { + public static java.lang.String stbox_as_hexwkb(jnr.ffi.Pointer arg0, byte arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_as_hexwkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -707,7 +707,7 @@ public static String stbox_as_hexwkb(Pointer arg0, byte arg1, Pointer arg2) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static Pointer stbox_as_wkb(Pointer arg0, byte arg1) { + public static jnr.ffi.Pointer stbox_as_wkb(jnr.ffi.Pointer arg0, byte arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_as_wkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -721,7 +721,7 @@ public static Pointer stbox_as_wkb(Pointer arg0, byte arg1) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer stbox_from_hexwkb(String arg0) { + public static jnr.ffi.Pointer stbox_from_hexwkb(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_from_hexwkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -735,7 +735,7 @@ public static Pointer stbox_from_hexwkb(String arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer stbox_from_wkb(Pointer arg0, long arg1) { + public static jnr.ffi.Pointer stbox_from_wkb(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_from_wkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -749,7 +749,7 @@ public static Pointer stbox_from_wkb(Pointer arg0, long arg1) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer stbox_in(String arg0) { + public static jnr.ffi.Pointer stbox_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -763,7 +763,7 @@ public static Pointer stbox_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String stbox_out(Pointer arg0, int arg1) { + public static java.lang.String stbox_out(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "stbox_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsSet.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsSet.java index bb386bb..d30e220 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsSet.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsSet.java @@ -21,7 +21,7 @@ private MeosOpsSet() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer set_copy(Pointer arg0) { + public static jnr.ffi.Pointer set_copy(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_copy requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer set_copy(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer set_to_span(Pointer arg0) { + public static jnr.ffi.Pointer set_to_span(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_to_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer set_to_span(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer set_to_spanset(Pointer arg0) { + public static jnr.ffi.Pointer set_to_spanset(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_to_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer set_to_spanset(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer set_to_tbox(Pointer arg0) { + public static jnr.ffi.Pointer set_to_tbox(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_to_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer set_to_tbox(Pointer arg0) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int set_cmp(Pointer arg0, Pointer arg1) { + public static int set_cmp(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_cmp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static int set_cmp(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int set_eq(Pointer arg0, Pointer arg1) { + public static boolean set_eq(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_eq requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static int set_eq(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int set_ge(Pointer arg0, Pointer arg1) { + public static boolean set_ge(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_ge requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static int set_ge(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int set_gt(Pointer arg0, Pointer arg1) { + public static boolean set_gt(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_gt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static int set_gt(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int set_hash(Pointer arg0) { + public static int set_hash(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_hash requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static int set_hash(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int set_hash_extended(Pointer arg0, int arg1) { + public static long set_hash_extended(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_hash_extended requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static int set_hash_extended(Pointer arg0, int arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int set_le(Pointer arg0, Pointer arg1) { + public static boolean set_le(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_le requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static int set_le(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int set_lt(Pointer arg0, Pointer arg1) { + public static boolean set_lt(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_lt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static int set_lt(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int set_ne(Pointer arg0, Pointer arg1) { + public static boolean set_ne(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_ne requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -203,7 +203,7 @@ public static int set_ne(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int set_num_values(Pointer arg0) { + public static int set_num_values(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_num_values requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static int set_num_values(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer set_round(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer set_round(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_round requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -231,7 +231,7 @@ public static Pointer set_round(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer set_spans(Pointer arg0) { + public static jnr.ffi.Pointer set_spans(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_spans requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -245,7 +245,7 @@ public static Pointer set_spans(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer set_split_each_n_spans(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer set_split_each_n_spans(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_split_each_n_spans requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -259,7 +259,7 @@ public static Pointer set_split_each_n_spans(Pointer arg0, int arg1, Pointer arg *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer set_split_n_spans(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer set_split_n_spans(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_split_n_spans requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -273,7 +273,7 @@ public static Pointer set_split_n_spans(Pointer arg0, int arg1, Pointer arg2) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer set_extent_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer set_extent_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_extent_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -287,7 +287,7 @@ public static Pointer set_extent_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer set_union_finalfn(Pointer arg0) { + public static jnr.ffi.Pointer set_union_finalfn(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_union_finalfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -301,7 +301,7 @@ public static Pointer set_union_finalfn(Pointer arg0) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer set_union_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer set_union_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_union_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -315,7 +315,7 @@ public static Pointer set_union_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String set_as_hexwkb(Pointer arg0, byte arg1) { + public static java.lang.String set_as_hexwkb(jnr.ffi.Pointer arg0, byte arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_as_hexwkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -329,7 +329,7 @@ public static String set_as_hexwkb(Pointer arg0, byte arg1) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static Pointer set_as_wkb(Pointer arg0, byte arg1) { + public static jnr.ffi.Pointer set_as_wkb(jnr.ffi.Pointer arg0, byte arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_as_wkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -343,7 +343,7 @@ public static Pointer set_as_wkb(Pointer arg0, byte arg1) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer set_from_hexwkb(String arg0) { + public static jnr.ffi.Pointer set_from_hexwkb(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_from_hexwkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -357,7 +357,7 @@ public static Pointer set_from_hexwkb(String arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer set_from_wkb(Pointer arg0, long arg1) { + public static jnr.ffi.Pointer set_from_wkb(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "set_from_wkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsSpan.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsSpan.java index 25ea23d..dd862f1 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsSpan.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsSpan.java @@ -21,7 +21,7 @@ private MeosOpsSpan() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer span_copy(Pointer arg0) { + public static jnr.ffi.Pointer span_copy(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "span_copy requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer span_copy(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer span_to_spanset(Pointer arg0) { + public static jnr.ffi.Pointer span_to_spanset(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "span_to_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer span_to_spanset(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer span_to_tbox(Pointer arg0) { + public static jnr.ffi.Pointer span_to_tbox(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "span_to_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer span_to_tbox(Pointer arg0) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int span_cmp(Pointer arg0, Pointer arg1) { + public static int span_cmp(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "span_cmp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static int span_cmp(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int span_eq(Pointer arg0, Pointer arg1) { + public static boolean span_eq(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "span_eq requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static int span_eq(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int span_ge(Pointer arg0, Pointer arg1) { + public static boolean span_ge(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "span_ge requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static int span_ge(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int span_gt(Pointer arg0, Pointer arg1) { + public static boolean span_gt(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "span_gt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static int span_gt(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int span_hash(Pointer arg0) { + public static int span_hash(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "span_hash requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static int span_hash(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int span_hash_extended(Pointer arg0, int arg1) { + public static long span_hash_extended(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "span_hash_extended requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static int span_hash_extended(Pointer arg0, int arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int span_le(Pointer arg0, Pointer arg1) { + public static boolean span_le(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "span_le requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static int span_le(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int span_lower_inc(Pointer arg0) { + public static boolean span_lower_inc(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "span_lower_inc requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static int span_lower_inc(Pointer arg0) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int span_lt(Pointer arg0, Pointer arg1) { + public static boolean span_lt(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "span_lt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static int span_lt(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int span_ne(Pointer arg0, Pointer arg1) { + public static boolean span_ne(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "span_ne requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -203,7 +203,7 @@ public static int span_ne(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int span_upper_inc(Pointer arg0) { + public static boolean span_upper_inc(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "span_upper_inc requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static int span_upper_inc(Pointer arg0) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer span_extent_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer span_extent_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "span_extent_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -231,7 +231,7 @@ public static Pointer span_extent_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer span_union_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer span_union_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "span_union_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -245,7 +245,7 @@ public static Pointer span_union_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String span_as_hexwkb(Pointer arg0, byte arg1) { + public static java.lang.String span_as_hexwkb(jnr.ffi.Pointer arg0, byte arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "span_as_hexwkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -259,7 +259,7 @@ public static String span_as_hexwkb(Pointer arg0, byte arg1) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static Pointer span_as_wkb(Pointer arg0, byte arg1) { + public static jnr.ffi.Pointer span_as_wkb(jnr.ffi.Pointer arg0, byte arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "span_as_wkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -273,7 +273,7 @@ public static Pointer span_as_wkb(Pointer arg0, byte arg1) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer span_from_hexwkb(String arg0) { + public static jnr.ffi.Pointer span_from_hexwkb(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "span_from_hexwkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -287,7 +287,7 @@ public static Pointer span_from_hexwkb(String arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer span_from_wkb(Pointer arg0, long arg1) { + public static jnr.ffi.Pointer span_from_wkb(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "span_from_wkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsSpanSet.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsSpanSet.java index 6908fa7..72a47ae 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsSpanSet.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsSpanSet.java @@ -21,7 +21,7 @@ private MeosOpsSpanSet() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer spanset_copy(Pointer arg0) { + public static jnr.ffi.Pointer spanset_copy(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_copy requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer spanset_copy(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer spanset_make(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer spanset_make(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer spanset_make(Pointer arg0, int arg1) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer spanset_to_tbox(Pointer arg0) { + public static jnr.ffi.Pointer spanset_to_tbox(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_to_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer spanset_to_tbox(Pointer arg0) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int spanset_cmp(Pointer arg0, Pointer arg1) { + public static int spanset_cmp(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_cmp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static int spanset_cmp(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer spanset_end_span(Pointer arg0) { + public static jnr.ffi.Pointer spanset_end_span(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_end_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer spanset_end_span(Pointer arg0) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int spanset_eq(Pointer arg0, Pointer arg1) { + public static boolean spanset_eq(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_eq requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static int spanset_eq(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int spanset_ge(Pointer arg0, Pointer arg1) { + public static boolean spanset_ge(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_ge requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static int spanset_ge(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int spanset_gt(Pointer arg0, Pointer arg1) { + public static boolean spanset_gt(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_gt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static int spanset_gt(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int spanset_hash(Pointer arg0) { + public static int spanset_hash(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_hash requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static int spanset_hash(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int spanset_hash_extended(Pointer arg0, int arg1) { + public static long spanset_hash_extended(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_hash_extended requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static int spanset_hash_extended(Pointer arg0, int arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int spanset_le(Pointer arg0, Pointer arg1) { + public static boolean spanset_le(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_le requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static int spanset_le(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int spanset_lower_inc(Pointer arg0) { + public static boolean spanset_lower_inc(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_lower_inc requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static int spanset_lower_inc(Pointer arg0) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int spanset_lt(Pointer arg0, Pointer arg1) { + public static boolean spanset_lt(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_lt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -203,7 +203,7 @@ public static int spanset_lt(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int spanset_ne(Pointer arg0, Pointer arg1) { + public static boolean spanset_ne(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_ne requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static int spanset_ne(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int spanset_num_spans(Pointer arg0) { + public static int spanset_num_spans(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_num_spans requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -231,7 +231,7 @@ public static int spanset_num_spans(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer spanset_span(Pointer arg0) { + public static jnr.ffi.Pointer spanset_span(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -245,7 +245,7 @@ public static Pointer spanset_span(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer spanset_span_n(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer spanset_span_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_span_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -259,7 +259,7 @@ public static Pointer spanset_span_n(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer spanset_spanarr(Pointer arg0) { + public static jnr.ffi.Pointer spanset_spanarr(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_spanarr requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -273,7 +273,7 @@ public static Pointer spanset_spanarr(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer spanset_spans(Pointer arg0) { + public static jnr.ffi.Pointer spanset_spans(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_spans requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -287,7 +287,7 @@ public static Pointer spanset_spans(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer spanset_split_each_n_spans(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer spanset_split_each_n_spans(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_split_each_n_spans requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -301,7 +301,7 @@ public static Pointer spanset_split_each_n_spans(Pointer arg0, int arg1, Pointer *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer spanset_split_n_spans(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer spanset_split_n_spans(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_split_n_spans requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -315,7 +315,7 @@ public static Pointer spanset_split_n_spans(Pointer arg0, int arg1, Pointer arg2 *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer spanset_start_span(Pointer arg0) { + public static jnr.ffi.Pointer spanset_start_span(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_start_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -329,7 +329,7 @@ public static Pointer spanset_start_span(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int spanset_upper_inc(Pointer arg0) { + public static boolean spanset_upper_inc(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_upper_inc requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -343,7 +343,7 @@ public static int spanset_upper_inc(Pointer arg0) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer spanset_extent_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer spanset_extent_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_extent_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -357,7 +357,7 @@ public static Pointer spanset_extent_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer spanset_union_finalfn(Pointer arg0) { + public static jnr.ffi.Pointer spanset_union_finalfn(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_union_finalfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -371,7 +371,7 @@ public static Pointer spanset_union_finalfn(Pointer arg0) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer spanset_union_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer spanset_union_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_union_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -385,7 +385,7 @@ public static Pointer spanset_union_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String spanset_as_hexwkb(Pointer arg0, byte arg1) { + public static java.lang.String spanset_as_hexwkb(jnr.ffi.Pointer arg0, byte arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_as_hexwkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -399,7 +399,7 @@ public static String spanset_as_hexwkb(Pointer arg0, byte arg1) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static Pointer spanset_as_wkb(Pointer arg0, byte arg1) { + public static jnr.ffi.Pointer spanset_as_wkb(jnr.ffi.Pointer arg0, byte arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_as_wkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -413,7 +413,7 @@ public static Pointer spanset_as_wkb(Pointer arg0, byte arg1) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer spanset_from_hexwkb(String arg0) { + public static jnr.ffi.Pointer spanset_from_hexwkb(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_from_hexwkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -427,7 +427,7 @@ public static Pointer spanset_from_hexwkb(String arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer spanset_from_wkb(Pointer arg0, long arg1) { + public static jnr.ffi.Pointer spanset_from_wkb(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "spanset_from_wkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsSqlSurface.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsSqlSurface.java index b9a71de..f076677 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsSqlSurface.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsSqlSurface.java @@ -13,21 +13,21 @@ public final class MeosOpsSqlSurface { private MeosOpsSqlSurface() { /* utility */ } /** MEOS {@code adjacent_span_value} — SQL-surface function (meos_internal). */ - public static int adjacent_span_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean adjacent_span_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("adjacent_span_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.adjacent_span_value(arg0, arg1); } /** MEOS {@code adjacent_spanset_value} — SQL-surface function (meos_internal). */ - public static int adjacent_spanset_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean adjacent_spanset_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("adjacent_spanset_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.adjacent_spanset_value(arg0, arg1); } /** MEOS {@code adjacent_value_spanset} — SQL-surface function (meos_internal). */ - public static int adjacent_value_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean adjacent_value_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("adjacent_value_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.adjacent_value_spanset(arg0, arg1); @@ -118,42 +118,42 @@ public static int always_ne_temporal_base(jnr.ffi.Pointer arg0, jnr.ffi.Pointer } /** MEOS {@code contained_value_set} — SQL-surface function (meos_internal). */ - public static int contained_value_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean contained_value_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("contained_value_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.contained_value_set(arg0, arg1); } /** MEOS {@code contained_value_span} — SQL-surface function (meos_internal). */ - public static int contained_value_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean contained_value_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("contained_value_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.contained_value_span(arg0, arg1); } /** MEOS {@code contained_value_spanset} — SQL-surface function (meos_internal). */ - public static int contained_value_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean contained_value_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("contained_value_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.contained_value_spanset(arg0, arg1); } /** MEOS {@code contains_set_value} — SQL-surface function (meos_internal). */ - public static int contains_set_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean contains_set_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("contains_set_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.contains_set_value(arg0, arg1); } /** MEOS {@code contains_span_value} — SQL-surface function (meos_internal). */ - public static int contains_span_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean contains_span_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("contains_span_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.contains_span_value(arg0, arg1); } /** MEOS {@code contains_spanset_value} — SQL-surface function (meos_internal). */ - public static int contains_spanset_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean contains_spanset_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("contains_spanset_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.contains_spanset_value(arg0, arg1); @@ -342,42 +342,42 @@ public static jnr.ffi.Pointer intersection_value_spanset(jnr.ffi.Pointer arg0, j } /** MEOS {@code left_set_value} — SQL-surface function (meos_internal). */ - public static int left_set_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean left_set_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("left_set_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.left_set_value(arg0, arg1); } /** MEOS {@code left_span_value} — SQL-surface function (meos_internal). */ - public static int left_span_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean left_span_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("left_span_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.left_span_value(arg0, arg1); } /** MEOS {@code left_spanset_value} — SQL-surface function (meos_internal). */ - public static int left_spanset_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean left_spanset_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("left_spanset_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.left_spanset_value(arg0, arg1); } /** MEOS {@code left_value_set} — SQL-surface function (meos_internal). */ - public static int left_value_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean left_value_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("left_value_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.left_value_set(arg0, arg1); } /** MEOS {@code left_value_span} — SQL-surface function (meos_internal). */ - public static int left_value_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean left_value_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("left_value_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.left_value_span(arg0, arg1); } /** MEOS {@code left_value_spanset} — SQL-surface function (meos_internal). */ - public static int left_value_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean left_value_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("left_value_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.left_value_spanset(arg0, arg1); @@ -454,7 +454,7 @@ public static double nad_tnumber_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer a } /** MEOS {@code number_timestamptz_to_tbox} — SQL-surface function (meos_internal). */ - public static jnr.ffi.Pointer number_timestamptz_to_tbox(jnr.ffi.Pointer arg0, int arg1, int arg2) { + public static jnr.ffi.Pointer number_timestamptz_to_tbox(jnr.ffi.Pointer arg0, int arg1, java.time.OffsetDateTime arg2) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("number_timestamptz_to_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.number_timestamptz_to_tbox(arg0, arg1, arg2); @@ -468,7 +468,7 @@ public static jnr.ffi.Pointer number_tstzspan_to_tbox(jnr.ffi.Pointer arg0, int } /** MEOS {@code numset_shift_scale} — SQL-surface function (meos_internal). */ - public static jnr.ffi.Pointer numset_shift_scale(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2, int arg3, int arg4) { + public static jnr.ffi.Pointer numset_shift_scale(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2, boolean arg3, boolean arg4) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("numset_shift_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.numset_shift_scale(arg0, arg1, arg2, arg3, arg4); @@ -482,7 +482,7 @@ public static jnr.ffi.Pointer numspan_expand(jnr.ffi.Pointer arg0, jnr.ffi.Point } /** MEOS {@code numspan_shift_scale} — SQL-surface function (meos_internal). */ - public static jnr.ffi.Pointer numspan_shift_scale(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2, int arg3, int arg4) { + public static jnr.ffi.Pointer numspan_shift_scale(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2, boolean arg3, boolean arg4) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("numspan_shift_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.numspan_shift_scale(arg0, arg1, arg2, arg3, arg4); @@ -496,140 +496,140 @@ public static int numspan_width(jnr.ffi.Pointer arg0) { } /** MEOS {@code numspanset_shift_scale} — SQL-surface function (meos_internal). */ - public static jnr.ffi.Pointer numspanset_shift_scale(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2, int arg3, int arg4) { + public static jnr.ffi.Pointer numspanset_shift_scale(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2, boolean arg3, boolean arg4) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("numspanset_shift_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.numspanset_shift_scale(arg0, arg1, arg2, arg3, arg4); } /** MEOS {@code numspanset_width} — SQL-surface function (meos_internal). */ - public static int numspanset_width(jnr.ffi.Pointer arg0, int arg1) { + public static int numspanset_width(jnr.ffi.Pointer arg0, boolean arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("numspanset_width requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.numspanset_width(arg0, arg1); } /** MEOS {@code overleft_set_value} — SQL-surface function (meos_internal). */ - public static int overleft_set_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean overleft_set_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("overleft_set_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.overleft_set_value(arg0, arg1); } /** MEOS {@code overleft_span_value} — SQL-surface function (meos_internal). */ - public static int overleft_span_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean overleft_span_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("overleft_span_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.overleft_span_value(arg0, arg1); } /** MEOS {@code overleft_spanset_value} — SQL-surface function (meos_internal). */ - public static int overleft_spanset_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean overleft_spanset_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("overleft_spanset_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.overleft_spanset_value(arg0, arg1); } /** MEOS {@code overleft_value_set} — SQL-surface function (meos_internal). */ - public static int overleft_value_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean overleft_value_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("overleft_value_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.overleft_value_set(arg0, arg1); } /** MEOS {@code overleft_value_span} — SQL-surface function (meos_internal). */ - public static int overleft_value_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean overleft_value_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("overleft_value_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.overleft_value_span(arg0, arg1); } /** MEOS {@code overleft_value_spanset} — SQL-surface function (meos_internal). */ - public static int overleft_value_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean overleft_value_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("overleft_value_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.overleft_value_spanset(arg0, arg1); } /** MEOS {@code overright_set_value} — SQL-surface function (meos_internal). */ - public static int overright_set_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean overright_set_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("overright_set_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.overright_set_value(arg0, arg1); } /** MEOS {@code overright_span_value} — SQL-surface function (meos_internal). */ - public static int overright_span_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean overright_span_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("overright_span_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.overright_span_value(arg0, arg1); } /** MEOS {@code overright_spanset_value} — SQL-surface function (meos_internal). */ - public static int overright_spanset_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean overright_spanset_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("overright_spanset_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.overright_spanset_value(arg0, arg1); } /** MEOS {@code overright_value_set} — SQL-surface function (meos_internal). */ - public static int overright_value_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean overright_value_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("overright_value_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.overright_value_set(arg0, arg1); } /** MEOS {@code overright_value_span} — SQL-surface function (meos_internal). */ - public static int overright_value_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean overright_value_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("overright_value_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.overright_value_span(arg0, arg1); } /** MEOS {@code overright_value_spanset} — SQL-surface function (meos_internal). */ - public static int overright_value_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean overright_value_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("overright_value_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.overright_value_spanset(arg0, arg1); } /** MEOS {@code right_set_value} — SQL-surface function (meos_internal). */ - public static int right_set_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean right_set_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("right_set_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.right_set_value(arg0, arg1); } /** MEOS {@code right_span_value} — SQL-surface function (meos_internal). */ - public static int right_span_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean right_span_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("right_span_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.right_span_value(arg0, arg1); } /** MEOS {@code right_spanset_value} — SQL-surface function (meos_internal). */ - public static int right_spanset_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean right_spanset_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("right_spanset_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.right_spanset_value(arg0, arg1); } /** MEOS {@code right_value_set} — SQL-surface function (meos_internal). */ - public static int right_value_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean right_value_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("right_value_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.right_value_set(arg0, arg1); } /** MEOS {@code right_value_span} — SQL-surface function (meos_internal). */ - public static int right_value_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean right_value_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("right_value_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.right_value_span(arg0, arg1); } /** MEOS {@code right_value_spanset} — SQL-surface function (meos_internal). */ - public static int right_value_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + public static boolean right_value_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("right_value_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.right_value_spanset(arg0, arg1); @@ -657,10 +657,10 @@ public static int set_start_value(jnr.ffi.Pointer arg0) { } /** MEOS {@code set_value_n} — SQL-surface function (meos_internal). */ - public static int set_value_n(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2) { + public static jnr.ffi.Pointer set_value_n(jnr.ffi.Pointer arg0, int arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("set_value_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); - return functions.GeneratedFunctions.set_value_n(arg0, arg1, arg2); + return functions.GeneratedFunctions.set_value_n(arg0, arg1); } /** MEOS {@code set_values} — SQL-surface function (meos_internal). */ @@ -713,14 +713,14 @@ public static jnr.ffi.Pointer tbox_expand_value(jnr.ffi.Pointer arg0, jnr.ffi.Po } /** MEOS {@code tbox_get_value_time_tile} — SQL-surface function (meos_internal). */ - public static jnr.ffi.Pointer tbox_get_value_time_tile(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2, jnr.ffi.Pointer arg3, jnr.ffi.Pointer arg4, int arg5, int arg6, int arg7) { + public static jnr.ffi.Pointer tbox_get_value_time_tile(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1, jnr.ffi.Pointer arg2, jnr.ffi.Pointer arg3, jnr.ffi.Pointer arg4, java.time.OffsetDateTime arg5, int arg6, int arg7) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("tbox_get_value_time_tile requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.tbox_get_value_time_tile(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); } /** MEOS {@code tbox_shift_scale_value} — SQL-surface function (meos_internal). */ - public static jnr.ffi.Pointer tbox_shift_scale_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2, int arg3, int arg4) { + public static jnr.ffi.Pointer tbox_shift_scale_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2, boolean arg3, boolean arg4) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("tbox_shift_scale_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.tbox_shift_scale_value(arg0, arg1, arg2, arg3, arg4); @@ -755,7 +755,7 @@ public static int temporal_max_value(jnr.ffi.Pointer arg0) { } /** MEOS {@code temporal_mem_size} — SQL-surface function (meos_internal). */ - public static int temporal_mem_size(jnr.ffi.Pointer arg0) { + public static long temporal_mem_size(jnr.ffi.Pointer arg0) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("temporal_mem_size requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.temporal_mem_size(arg0); @@ -776,17 +776,17 @@ public static int temporal_start_value(jnr.ffi.Pointer arg0) { } /** MEOS {@code temporal_value_at_timestamptz} — SQL-surface function (meos_internal). */ - public static int temporal_value_at_timestamptz(jnr.ffi.Pointer arg0, int arg1, int arg2, jnr.ffi.Pointer arg3) { + public static jnr.ffi.Pointer temporal_value_at_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1, boolean arg2) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("temporal_value_at_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); - return functions.GeneratedFunctions.temporal_value_at_timestamptz(arg0, arg1, arg2, arg3); + return functions.GeneratedFunctions.temporal_value_at_timestamptz(arg0, arg1, arg2); } /** MEOS {@code temporal_value_n} — SQL-surface function (meos_internal). */ - public static int temporal_value_n(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2) { + public static jnr.ffi.Pointer temporal_value_n(jnr.ffi.Pointer arg0, int arg1) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("temporal_value_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); - return functions.GeneratedFunctions.temporal_value_n(arg0, arg1, arg2); + return functions.GeneratedFunctions.temporal_value_n(arg0, arg1); } /** MEOS {@code tinstant_value} — SQL-surface function (meos_internal). */ @@ -797,7 +797,7 @@ public static int tinstant_value(jnr.ffi.Pointer arg0) { } /** MEOS {@code tnumber_shift_scale_value} — SQL-surface function (meos_internal). */ - public static jnr.ffi.Pointer tnumber_shift_scale_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2, int arg3, int arg4) { + public static jnr.ffi.Pointer tnumber_shift_scale_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2, boolean arg3, boolean arg4) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("tnumber_shift_scale_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.tnumber_shift_scale_value(arg0, arg1, arg2, arg3, arg4); @@ -818,14 +818,14 @@ public static jnr.ffi.Pointer tnumber_value_split(jnr.ffi.Pointer arg0, jnr.ffi. } /** MEOS {@code tnumber_value_time_boxes} — SQL-surface function (meos_internal). */ - public static jnr.ffi.Pointer tnumber_value_time_boxes(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2, jnr.ffi.Pointer arg3, int arg4, jnr.ffi.Pointer arg5) { + public static jnr.ffi.Pointer tnumber_value_time_boxes(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2, jnr.ffi.Pointer arg3, java.time.OffsetDateTime arg4, jnr.ffi.Pointer arg5) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("tnumber_value_time_boxes requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.tnumber_value_time_boxes(arg0, arg1, arg2, arg3, arg4, arg5); } /** MEOS {@code tnumber_value_time_split} — SQL-surface function (meos_internal). */ - public static jnr.ffi.Pointer tnumber_value_time_split(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2, jnr.ffi.Pointer arg3, int arg4, jnr.ffi.Pointer arg5, jnr.ffi.Pointer arg6, jnr.ffi.Pointer arg7) { + public static jnr.ffi.Pointer tnumber_value_time_split(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2, jnr.ffi.Pointer arg3, java.time.OffsetDateTime arg4, jnr.ffi.Pointer arg5, jnr.ffi.Pointer arg6, jnr.ffi.Pointer arg7) { if (!MeosOpsRuntime.MEOS_AVAILABLE) throw new UnsupportedOperationException("tnumber_value_time_split requires libmeos — set -Dmobilityflink.meos.enabled=true"); return functions.GeneratedFunctions.tnumber_value_time_split(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTBool.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTBool.java index 26b4709..dba0813 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTBool.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTBool.java @@ -21,7 +21,7 @@ private MeosOpsTBool() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer tbool_from_base_temp(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer tbool_from_base_temp(boolean arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbool_from_base_temp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer tbool_from_base_temp(int arg0, Pointer arg1) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tbool_to_tint(Pointer arg0) { + public static jnr.ffi.Pointer tbool_to_tint(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbool_to_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer tbool_to_tint(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tbool_at_value(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tbool_at_value(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbool_at_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer tbool_at_value(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tbool_end_value(Pointer arg0) { + public static boolean tbool_end_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbool_end_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static int tbool_end_value(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tbool_minus_value(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tbool_minus_value(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbool_minus_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer tbool_minus_value(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tbool_start_value(Pointer arg0) { + public static boolean tbool_start_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbool_start_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static int tbool_start_value(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static int tbool_value_at_timestamptz(Pointer arg0, int arg1, int arg2, Pointer arg3) { + public static boolean tbool_value_at_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1, boolean arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbool_value_at_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,12 +119,12 @@ public static int tbool_value_at_timestamptz(Pointer arg0, int arg1, int arg2, P *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tbool_value_n(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer tbool_value_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbool_value_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tbool_value_n(arg0, arg1, arg2); + return GeneratedFunctions.tbool_value_n(arg0, arg1); } /** @@ -133,7 +133,7 @@ public static int tbool_value_n(Pointer arg0, int arg1, Pointer arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tbool_values(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tbool_values(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbool_values requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static Pointer tbool_values(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tbool_when_true(Pointer arg0) { + public static jnr.ffi.Pointer tbool_when_true(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbool_when_true requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static Pointer tbool_when_true(Pointer arg0) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tbool_tand_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tbool_tand_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbool_tand_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static Pointer tbool_tand_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tbool_tor_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tbool_tor_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbool_tor_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static Pointer tbool_tor_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tbool_from_mfjson(String arg0) { + public static jnr.ffi.Pointer tbool_from_mfjson(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbool_from_mfjson requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -203,7 +203,7 @@ public static Pointer tbool_from_mfjson(String arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tbool_in(String arg0) { + public static jnr.ffi.Pointer tbool_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbool_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static Pointer tbool_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String tbool_out(Pointer arg0) { + public static java.lang.String tbool_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbool_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTBoolInst.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTBoolInst.java index c1e3caf..a071335 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTBoolInst.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTBoolInst.java @@ -21,7 +21,7 @@ private MeosOpsTBoolInst() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer tboolinst_make(int arg0, int arg1) { + public static jnr.ffi.Pointer tboolinst_make(boolean arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tboolinst_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTBox.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTBox.java index 47c83d4..ee43b40 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTBox.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTBox.java @@ -21,7 +21,7 @@ private MeosOpsTBox() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer tbox_copy(Pointer arg0) { + public static jnr.ffi.Pointer tbox_copy(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_copy requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer tbox_copy(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer tbox_make(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tbox_make(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer tbox_make(Pointer arg0, Pointer arg1) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tbox_to_floatspan(Pointer arg0) { + public static jnr.ffi.Pointer tbox_to_floatspan(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_to_floatspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer tbox_to_floatspan(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tbox_to_intspan(Pointer arg0) { + public static jnr.ffi.Pointer tbox_to_intspan(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_to_intspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer tbox_to_intspan(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tbox_to_tstzspan(Pointer arg0) { + public static jnr.ffi.Pointer tbox_to_tstzspan(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_to_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer tbox_to_tstzspan(Pointer arg0) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int tbox_cmp(Pointer arg0, Pointer arg1) { + public static int tbox_cmp(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_cmp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static int tbox_cmp(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int tbox_eq(Pointer arg0, Pointer arg1) { + public static boolean tbox_eq(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_eq requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static int tbox_eq(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tbox_expand_time(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tbox_expand_time(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_expand_time requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer tbox_expand_time(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int tbox_ge(Pointer arg0, Pointer arg1) { + public static boolean tbox_ge(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_ge requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static int tbox_ge(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int tbox_gt(Pointer arg0, Pointer arg1) { + public static boolean tbox_gt(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_gt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static int tbox_gt(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tbox_hash(Pointer arg0) { + public static int tbox_hash(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_hash requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static int tbox_hash(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tbox_hash_extended(Pointer arg0, int arg1) { + public static long tbox_hash_extended(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_hash_extended requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static int tbox_hash_extended(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tbox_hast(Pointer arg0) { + public static boolean tbox_hast(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_hast requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -203,7 +203,7 @@ public static int tbox_hast(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tbox_hasx(Pointer arg0) { + public static boolean tbox_hasx(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_hasx requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static int tbox_hasx(Pointer arg0) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int tbox_le(Pointer arg0, Pointer arg1) { + public static boolean tbox_le(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_le requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -231,7 +231,7 @@ public static int tbox_le(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int tbox_lt(Pointer arg0, Pointer arg1) { + public static boolean tbox_lt(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_lt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -245,7 +245,7 @@ public static int tbox_lt(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 1 temporal

*/ - public static int tbox_ne(Pointer arg0, Pointer arg1) { + public static boolean tbox_ne(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_ne requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -259,7 +259,7 @@ public static int tbox_ne(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tbox_round(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tbox_round(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_round requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -273,7 +273,7 @@ public static Pointer tbox_round(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tbox_shift_scale_time(Pointer arg0, Pointer arg1, Pointer arg2) { + public static jnr.ffi.Pointer tbox_shift_scale_time(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_shift_scale_time requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -287,12 +287,12 @@ public static Pointer tbox_shift_scale_time(Pointer arg0, Pointer arg1, Pointer *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tbox_tmax(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tbox_tmax(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_tmax requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tbox_tmax(arg0, arg1); + return GeneratedFunctions.tbox_tmax(arg0); } /** @@ -301,12 +301,12 @@ public static int tbox_tmax(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tbox_tmax_inc(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tbox_tmax_inc(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_tmax_inc requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tbox_tmax_inc(arg0, arg1); + return GeneratedFunctions.tbox_tmax_inc(arg0); } /** @@ -315,12 +315,12 @@ public static int tbox_tmax_inc(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tbox_tmin(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tbox_tmin(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_tmin requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tbox_tmin(arg0, arg1); + return GeneratedFunctions.tbox_tmin(arg0); } /** @@ -329,12 +329,12 @@ public static int tbox_tmin(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tbox_tmin_inc(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tbox_tmin_inc(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_tmin_inc requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tbox_tmin_inc(arg0, arg1); + return GeneratedFunctions.tbox_tmin_inc(arg0); } /** @@ -343,12 +343,12 @@ public static int tbox_tmin_inc(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tbox_xmax(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tbox_xmax(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_xmax requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tbox_xmax(arg0, arg1); + return GeneratedFunctions.tbox_xmax(arg0); } /** @@ -357,12 +357,12 @@ public static int tbox_xmax(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tbox_xmax_inc(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tbox_xmax_inc(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_xmax_inc requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tbox_xmax_inc(arg0, arg1); + return GeneratedFunctions.tbox_xmax_inc(arg0); } /** @@ -371,12 +371,12 @@ public static int tbox_xmax_inc(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tbox_xmin(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tbox_xmin(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_xmin requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tbox_xmin(arg0, arg1); + return GeneratedFunctions.tbox_xmin(arg0); } /** @@ -385,12 +385,12 @@ public static int tbox_xmin(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tbox_xmin_inc(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tbox_xmin_inc(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_xmin_inc requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tbox_xmin_inc(arg0, arg1); + return GeneratedFunctions.tbox_xmin_inc(arg0); } /** @@ -399,7 +399,7 @@ public static int tbox_xmin_inc(Pointer arg0, Pointer arg1) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String tbox_as_hexwkb(Pointer arg0, byte arg1, Pointer arg2) { + public static java.lang.String tbox_as_hexwkb(jnr.ffi.Pointer arg0, byte arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_as_hexwkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -413,7 +413,7 @@ public static String tbox_as_hexwkb(Pointer arg0, byte arg1, Pointer arg2) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static Pointer tbox_as_wkb(Pointer arg0, byte arg1) { + public static jnr.ffi.Pointer tbox_as_wkb(jnr.ffi.Pointer arg0, byte arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_as_wkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -427,7 +427,7 @@ public static Pointer tbox_as_wkb(Pointer arg0, byte arg1) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tbox_from_hexwkb(String arg0) { + public static jnr.ffi.Pointer tbox_from_hexwkb(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_from_hexwkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -441,7 +441,7 @@ public static Pointer tbox_from_hexwkb(String arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tbox_from_wkb(Pointer arg0, long arg1) { + public static jnr.ffi.Pointer tbox_from_wkb(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_from_wkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -455,7 +455,7 @@ public static Pointer tbox_from_wkb(Pointer arg0, long arg1) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tbox_in(String arg0) { + public static jnr.ffi.Pointer tbox_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -469,7 +469,7 @@ public static Pointer tbox_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String tbox_out(Pointer arg0, int arg1) { + public static java.lang.String tbox_out(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tbox_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTCbuffer.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTCbuffer.java index b994baf..a1ae4b2 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTCbuffer.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTCbuffer.java @@ -21,7 +21,7 @@ private MeosOpsTCbuffer() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer tcbuffer_make(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcbuffer_make(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcbuffer_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer tcbuffer_make(Pointer arg0, Pointer arg1) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tcbuffer_to_tfloat(Pointer arg0) { + public static jnr.ffi.Pointer tcbuffer_to_tfloat(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcbuffer_to_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer tcbuffer_to_tfloat(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tcbuffer_to_tgeompoint(Pointer arg0) { + public static jnr.ffi.Pointer tcbuffer_to_tgeompoint(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcbuffer_to_tgeompoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer tcbuffer_to_tgeompoint(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tcbuffer_at_cbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcbuffer_at_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcbuffer_at_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer tcbuffer_at_cbuffer(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tcbuffer_at_geom(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcbuffer_at_geom(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcbuffer_at_geom requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer tcbuffer_at_geom(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tcbuffer_at_stbox(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer tcbuffer_at_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcbuffer_at_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer tcbuffer_at_stbox(Pointer arg0, Pointer arg1, int arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tcbuffer_expand(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer tcbuffer_expand(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcbuffer_expand requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static Pointer tcbuffer_expand(Pointer arg0, double arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tcbuffer_minus_cbuffer(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcbuffer_minus_cbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcbuffer_minus_cbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer tcbuffer_minus_cbuffer(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tcbuffer_minus_geom(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tcbuffer_minus_geom(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcbuffer_minus_geom requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static Pointer tcbuffer_minus_geom(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tcbuffer_minus_stbox(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer tcbuffer_minus_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcbuffer_minus_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static Pointer tcbuffer_minus_stbox(Pointer arg0, Pointer arg1, int arg2) *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tcbuffer_points(Pointer arg0) { + public static jnr.ffi.Pointer tcbuffer_points(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcbuffer_points requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static Pointer tcbuffer_points(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tcbuffer_radius(Pointer arg0) { + public static jnr.ffi.Pointer tcbuffer_radius(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcbuffer_radius requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static Pointer tcbuffer_radius(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tcbuffer_trav_area(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tcbuffer_trav_area(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcbuffer_trav_area requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -203,7 +203,7 @@ public static Pointer tcbuffer_trav_area(Pointer arg0, int arg1) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tcbuffer_from_mfjson(String arg0) { + public static jnr.ffi.Pointer tcbuffer_from_mfjson(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcbuffer_from_mfjson requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static Pointer tcbuffer_from_mfjson(String arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tcbuffer_in(String arg0) { + public static jnr.ffi.Pointer tcbuffer_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tcbuffer_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTFloat.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTFloat.java index bce6400..09ca22a 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTFloat.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTFloat.java @@ -21,7 +21,7 @@ private MeosOpsTFloat() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer tfloat_from_base_temp(double arg0, Pointer arg1) { + public static jnr.ffi.Pointer tfloat_from_base_temp(double arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_from_base_temp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer tfloat_from_base_temp(double arg0, Pointer arg1) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tfloat_to_tint(Pointer arg0) { + public static jnr.ffi.Pointer tfloat_to_tint(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_to_tint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer tfloat_to_tint(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tfloat_at_value(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer tfloat_at_value(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_at_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer tfloat_at_value(Pointer arg0, double arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double tfloat_avg_value(Pointer arg0) { + public static double tfloat_avg_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_avg_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static double tfloat_avg_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tfloat_ceil(Pointer arg0) { + public static jnr.ffi.Pointer tfloat_ceil(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_ceil requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer tfloat_ceil(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tfloat_degrees(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tfloat_degrees(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_degrees requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer tfloat_degrees(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double tfloat_end_value(Pointer arg0) { + public static double tfloat_end_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_end_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static double tfloat_end_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tfloat_exp(Pointer arg0) { + public static jnr.ffi.Pointer tfloat_exp(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_exp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer tfloat_exp(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tfloat_floor(Pointer arg0) { + public static jnr.ffi.Pointer tfloat_floor(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_floor requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static Pointer tfloat_floor(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tfloat_ln(Pointer arg0) { + public static jnr.ffi.Pointer tfloat_ln(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_ln requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static Pointer tfloat_ln(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tfloat_log10(Pointer arg0) { + public static jnr.ffi.Pointer tfloat_log10(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_log10 requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static Pointer tfloat_log10(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double tfloat_max_value(Pointer arg0) { + public static double tfloat_max_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_max_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static double tfloat_max_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double tfloat_min_value(Pointer arg0) { + public static double tfloat_min_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_min_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -203,7 +203,7 @@ public static double tfloat_min_value(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tfloat_minus_value(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer tfloat_minus_value(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_minus_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static Pointer tfloat_minus_value(Pointer arg0, double arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tfloat_radians(Pointer arg0) { + public static jnr.ffi.Pointer tfloat_radians(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_radians requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -231,7 +231,7 @@ public static Pointer tfloat_radians(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tfloat_scale_value(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer tfloat_scale_value(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_scale_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -245,7 +245,7 @@ public static Pointer tfloat_scale_value(Pointer arg0, double arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tfloat_shift_scale_value(Pointer arg0, double arg1, double arg2) { + public static jnr.ffi.Pointer tfloat_shift_scale_value(jnr.ffi.Pointer arg0, double arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_shift_scale_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -259,7 +259,7 @@ public static Pointer tfloat_shift_scale_value(Pointer arg0, double arg1, double *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tfloat_shift_value(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer tfloat_shift_value(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_shift_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -273,7 +273,7 @@ public static Pointer tfloat_shift_value(Pointer arg0, double arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double tfloat_start_value(Pointer arg0) { + public static double tfloat_start_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_start_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -287,7 +287,7 @@ public static double tfloat_start_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tfloat_time_boxes(Pointer arg0, Pointer arg1, int arg2, Pointer arg3) { + public static jnr.ffi.Pointer tfloat_time_boxes(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, java.time.OffsetDateTime arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_time_boxes requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -301,7 +301,7 @@ public static Pointer tfloat_time_boxes(Pointer arg0, Pointer arg1, int arg2, Po *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static int tfloat_value_at_timestamptz(Pointer arg0, int arg1, int arg2, Pointer arg3) { + public static boolean tfloat_value_at_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1, boolean arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_value_at_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -315,7 +315,7 @@ public static int tfloat_value_at_timestamptz(Pointer arg0, int arg1, int arg2, *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tfloat_value_bins(Pointer arg0, double arg1, double arg2, Pointer arg3) { + public static jnr.ffi.Pointer tfloat_value_bins(jnr.ffi.Pointer arg0, double arg1, double arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_value_bins requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -329,7 +329,7 @@ public static Pointer tfloat_value_bins(Pointer arg0, double arg1, double arg2, *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tfloat_value_boxes(Pointer arg0, double arg1, double arg2, Pointer arg3) { + public static jnr.ffi.Pointer tfloat_value_boxes(jnr.ffi.Pointer arg0, double arg1, double arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_value_boxes requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -343,12 +343,12 @@ public static Pointer tfloat_value_boxes(Pointer arg0, double arg1, double arg2, *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tfloat_value_n(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer tfloat_value_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_value_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tfloat_value_n(arg0, arg1, arg2); + return GeneratedFunctions.tfloat_value_n(arg0, arg1); } /** @@ -357,7 +357,7 @@ public static int tfloat_value_n(Pointer arg0, int arg1, Pointer arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tfloat_value_split(Pointer arg0, double arg1, double arg2, Pointer arg3, Pointer arg4) { + public static jnr.ffi.Pointer tfloat_value_split(jnr.ffi.Pointer arg0, double arg1, double arg2, jnr.ffi.Pointer arg3, jnr.ffi.Pointer arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_value_split requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -371,7 +371,7 @@ public static Pointer tfloat_value_split(Pointer arg0, double arg1, double arg2, *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tfloat_value_time_boxes(Pointer arg0, double arg1, Pointer arg2, double arg3, int arg4, Pointer arg5) { + public static jnr.ffi.Pointer tfloat_value_time_boxes(jnr.ffi.Pointer arg0, double arg1, jnr.ffi.Pointer arg2, double arg3, java.time.OffsetDateTime arg4, jnr.ffi.Pointer arg5) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_value_time_boxes requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -385,7 +385,7 @@ public static Pointer tfloat_value_time_boxes(Pointer arg0, double arg1, Pointer *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tfloat_value_time_split(Pointer arg0, double arg1, Pointer arg2, double arg3, int arg4, Pointer arg5, Pointer arg6, Pointer arg7) { + public static jnr.ffi.Pointer tfloat_value_time_split(jnr.ffi.Pointer arg0, double arg1, jnr.ffi.Pointer arg2, double arg3, java.time.OffsetDateTime arg4, jnr.ffi.Pointer arg5, jnr.ffi.Pointer arg6, jnr.ffi.Pointer arg7) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_value_time_split requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -399,7 +399,7 @@ public static Pointer tfloat_value_time_split(Pointer arg0, double arg1, Pointer *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tfloat_values(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tfloat_values(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_values requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -413,7 +413,7 @@ public static Pointer tfloat_values(Pointer arg0, Pointer arg1) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tfloat_tmax_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tfloat_tmax_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_tmax_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -427,7 +427,7 @@ public static Pointer tfloat_tmax_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tfloat_tmin_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tfloat_tmin_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_tmin_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -441,7 +441,7 @@ public static Pointer tfloat_tmin_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tfloat_tsum_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tfloat_tsum_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_tsum_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -455,7 +455,7 @@ public static Pointer tfloat_tsum_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tfloat_wmax_transfn(Pointer arg0, Pointer arg1, Pointer arg2) { + public static jnr.ffi.Pointer tfloat_wmax_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_wmax_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -469,7 +469,7 @@ public static Pointer tfloat_wmax_transfn(Pointer arg0, Pointer arg1, Pointer ar *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tfloat_wmin_transfn(Pointer arg0, Pointer arg1, Pointer arg2) { + public static jnr.ffi.Pointer tfloat_wmin_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_wmin_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -483,7 +483,7 @@ public static Pointer tfloat_wmin_transfn(Pointer arg0, Pointer arg1, Pointer ar *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tfloat_wsum_transfn(Pointer arg0, Pointer arg1, Pointer arg2) { + public static jnr.ffi.Pointer tfloat_wsum_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_wsum_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -497,7 +497,7 @@ public static Pointer tfloat_wsum_transfn(Pointer arg0, Pointer arg1, Pointer ar *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tfloat_from_mfjson(String arg0) { + public static jnr.ffi.Pointer tfloat_from_mfjson(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_from_mfjson requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -511,7 +511,7 @@ public static Pointer tfloat_from_mfjson(String arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tfloat_in(String arg0) { + public static jnr.ffi.Pointer tfloat_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -525,7 +525,7 @@ public static Pointer tfloat_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String tfloat_out(Pointer arg0, int arg1) { + public static java.lang.String tfloat_out(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloat_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTFloatInst.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTFloatInst.java index 75de4ce..9de3847 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTFloatInst.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTFloatInst.java @@ -21,7 +21,7 @@ private MeosOpsTFloatInst() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer tfloatinst_make(double arg0, int arg1) { + public static jnr.ffi.Pointer tfloatinst_make(double arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tfloatinst_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTGeo.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTGeo.java index 8cd5f65..27558e7 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTGeo.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTGeo.java @@ -21,7 +21,7 @@ private MeosOpsTGeo() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer tgeo_from_base_temp(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tgeo_from_base_temp(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_from_base_temp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer tgeo_from_base_temp(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tgeo_affine(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tgeo_affine(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_affine requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer tgeo_affine(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tgeo_at_geom(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tgeo_at_geom(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_at_geom requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer tgeo_at_geom(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tgeo_at_stbox(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer tgeo_at_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_at_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer tgeo_at_stbox(Pointer arg0, Pointer arg1, int arg2) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tgeo_at_value(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tgeo_at_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_at_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer tgeo_at_value(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tgeo_centroid(Pointer arg0) { + public static jnr.ffi.Pointer tgeo_centroid(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_centroid requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer tgeo_centroid(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tgeo_convex_hull(Pointer arg0) { + public static jnr.ffi.Pointer tgeo_convex_hull(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_convex_hull requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static Pointer tgeo_convex_hull(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tgeo_end_value(Pointer arg0) { + public static jnr.ffi.Pointer tgeo_end_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_end_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer tgeo_end_value(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tgeo_minus_geom(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tgeo_minus_geom(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_minus_geom requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static Pointer tgeo_minus_geom(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tgeo_minus_stbox(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer tgeo_minus_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_minus_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static Pointer tgeo_minus_stbox(Pointer arg0, Pointer arg1, int arg2) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tgeo_minus_value(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tgeo_minus_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_minus_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static Pointer tgeo_minus_value(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tgeo_scale(Pointer arg0, Pointer arg1, Pointer arg2) { + public static jnr.ffi.Pointer tgeo_scale(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static Pointer tgeo_scale(Pointer arg0, Pointer arg1, Pointer arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tgeo_space_boxes(Pointer arg0, double arg1, double arg2, double arg3, Pointer arg4, int arg5, int arg6, Pointer arg7) { + public static jnr.ffi.Pointer tgeo_space_boxes(jnr.ffi.Pointer arg0, double arg1, double arg2, double arg3, jnr.ffi.Pointer arg4, boolean arg5, boolean arg6, jnr.ffi.Pointer arg7) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_space_boxes requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -203,7 +203,7 @@ public static Pointer tgeo_space_boxes(Pointer arg0, double arg1, double arg2, d *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tgeo_space_split(Pointer arg0, double arg1, double arg2, double arg3, Pointer arg4, int arg5, int arg6, Pointer arg7, Pointer arg8) { + public static jnr.ffi.Pointer tgeo_space_split(jnr.ffi.Pointer arg0, double arg1, double arg2, double arg3, jnr.ffi.Pointer arg4, boolean arg5, boolean arg6, jnr.ffi.Pointer arg7, jnr.ffi.Pointer arg8) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_space_split requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static Pointer tgeo_space_split(Pointer arg0, double arg1, double arg2, d *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tgeo_space_time_boxes(Pointer arg0, double arg1, double arg2, double arg3, Pointer arg4, Pointer arg5, int arg6, int arg7, int arg8, Pointer arg9) { + public static jnr.ffi.Pointer tgeo_space_time_boxes(jnr.ffi.Pointer arg0, double arg1, double arg2, double arg3, jnr.ffi.Pointer arg4, jnr.ffi.Pointer arg5, java.time.OffsetDateTime arg6, boolean arg7, boolean arg8, jnr.ffi.Pointer arg9) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_space_time_boxes requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -231,7 +231,7 @@ public static Pointer tgeo_space_time_boxes(Pointer arg0, double arg1, double ar *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tgeo_space_time_split(Pointer arg0, double arg1, double arg2, double arg3, Pointer arg4, Pointer arg5, int arg6, int arg7, int arg8, Pointer arg9, Pointer arg10, Pointer arg11) { + public static jnr.ffi.Pointer tgeo_space_time_split(jnr.ffi.Pointer arg0, double arg1, double arg2, double arg3, jnr.ffi.Pointer arg4, jnr.ffi.Pointer arg5, java.time.OffsetDateTime arg6, boolean arg7, boolean arg8, jnr.ffi.Pointer arg9, jnr.ffi.Pointer arg10, jnr.ffi.Pointer arg11) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_space_time_split requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -245,7 +245,7 @@ public static Pointer tgeo_space_time_split(Pointer arg0, double arg1, double ar *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tgeo_split_each_n_stboxes(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer tgeo_split_each_n_stboxes(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_split_each_n_stboxes requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -259,7 +259,7 @@ public static Pointer tgeo_split_each_n_stboxes(Pointer arg0, int arg1, Pointer *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tgeo_split_n_stboxes(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer tgeo_split_n_stboxes(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_split_n_stboxes requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -273,7 +273,7 @@ public static Pointer tgeo_split_n_stboxes(Pointer arg0, int arg1, Pointer arg2) *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tgeo_start_value(Pointer arg0) { + public static jnr.ffi.Pointer tgeo_start_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_start_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -287,7 +287,7 @@ public static Pointer tgeo_start_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tgeo_stboxes(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tgeo_stboxes(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_stboxes requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -301,7 +301,7 @@ public static Pointer tgeo_stboxes(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tgeo_traversed_area(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tgeo_traversed_area(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_traversed_area requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -315,7 +315,7 @@ public static Pointer tgeo_traversed_area(Pointer arg0, int arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static int tgeo_value_at_timestamptz(Pointer arg0, int arg1, int arg2, Pointer arg3) { + public static boolean tgeo_value_at_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1, boolean arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_value_at_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -329,12 +329,12 @@ public static int tgeo_value_at_timestamptz(Pointer arg0, int arg1, int arg2, Po *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tgeo_value_n(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer tgeo_value_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_value_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tgeo_value_n(arg0, arg1, arg2); + return GeneratedFunctions.tgeo_value_n(arg0, arg1); } /** @@ -343,7 +343,7 @@ public static int tgeo_value_n(Pointer arg0, int arg1, Pointer arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tgeo_values(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tgeo_values(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeo_values requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTGeogPoint.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTGeogPoint.java index b6a6cfc..43b9b8a 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTGeogPoint.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTGeogPoint.java @@ -21,7 +21,7 @@ private MeosOpsTGeogPoint() { /* utility */ } *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tgeogpoint_to_tgeography(Pointer arg0) { + public static jnr.ffi.Pointer tgeogpoint_to_tgeography(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeogpoint_to_tgeography requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer tgeogpoint_to_tgeography(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tgeogpoint_from_mfjson(String arg0) { + public static jnr.ffi.Pointer tgeogpoint_from_mfjson(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeogpoint_from_mfjson requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer tgeogpoint_from_mfjson(String arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tgeogpoint_in(String arg0) { + public static jnr.ffi.Pointer tgeogpoint_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeogpoint_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTGeography.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTGeography.java index 708551e..e891875 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTGeography.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTGeography.java @@ -21,7 +21,7 @@ private MeosOpsTGeography() { /* utility */ } *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tgeography_to_tgeogpoint(Pointer arg0) { + public static jnr.ffi.Pointer tgeography_to_tgeogpoint(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeography_to_tgeogpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer tgeography_to_tgeogpoint(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tgeography_to_tgeometry(Pointer arg0) { + public static jnr.ffi.Pointer tgeography_to_tgeometry(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeography_to_tgeometry requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer tgeography_to_tgeometry(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tgeography_from_mfjson(String arg0) { + public static jnr.ffi.Pointer tgeography_from_mfjson(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeography_from_mfjson requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer tgeography_from_mfjson(String arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tgeography_in(String arg0) { + public static jnr.ffi.Pointer tgeography_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeography_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTGeomPoint.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTGeomPoint.java index 6a257af..489dc97 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTGeomPoint.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTGeomPoint.java @@ -21,7 +21,7 @@ private MeosOpsTGeomPoint() { /* utility */ } *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tgeompoint_to_tgeometry(Pointer arg0) { + public static jnr.ffi.Pointer tgeompoint_to_tgeometry(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeompoint_to_tgeometry requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer tgeompoint_to_tgeometry(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tgeompoint_to_tnpoint(Pointer arg0) { + public static jnr.ffi.Pointer tgeompoint_to_tnpoint(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeompoint_to_tnpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer tgeompoint_to_tnpoint(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tgeompoint_from_mfjson(String arg0) { + public static jnr.ffi.Pointer tgeompoint_from_mfjson(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeompoint_from_mfjson requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer tgeompoint_from_mfjson(String arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tgeompoint_in(String arg0) { + public static jnr.ffi.Pointer tgeompoint_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeompoint_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTGeometry.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTGeometry.java index 08b877f..e05842f 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTGeometry.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTGeometry.java @@ -21,7 +21,7 @@ private MeosOpsTGeometry() { /* utility */ } *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tgeometry_to_tcbuffer(Pointer arg0) { + public static jnr.ffi.Pointer tgeometry_to_tcbuffer(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeometry_to_tcbuffer requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer tgeometry_to_tcbuffer(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tgeometry_to_tgeography(Pointer arg0) { + public static jnr.ffi.Pointer tgeometry_to_tgeography(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeometry_to_tgeography requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer tgeometry_to_tgeography(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tgeometry_to_tgeompoint(Pointer arg0) { + public static jnr.ffi.Pointer tgeometry_to_tgeompoint(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeometry_to_tgeompoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer tgeometry_to_tgeompoint(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tgeometry_from_mfjson(String arg0) { + public static jnr.ffi.Pointer tgeometry_from_mfjson(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeometry_from_mfjson requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer tgeometry_from_mfjson(String arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tgeometry_in(String arg0) { + public static jnr.ffi.Pointer tgeometry_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tgeometry_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTInt.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTInt.java index 60264a6..ca2b9a6 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTInt.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTInt.java @@ -21,7 +21,7 @@ private MeosOpsTInt() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer tint_from_base_temp(int arg0, Pointer arg1) { + public static jnr.ffi.Pointer tint_from_base_temp(int arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_from_base_temp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer tint_from_base_temp(int arg0, Pointer arg1) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tint_to_tfloat(Pointer arg0) { + public static jnr.ffi.Pointer tint_to_tfloat(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_to_tfloat requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer tint_to_tfloat(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tint_at_value(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tint_at_value(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_at_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer tint_at_value(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tint_end_value(Pointer arg0) { + public static int tint_end_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_end_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static int tint_end_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tint_max_value(Pointer arg0) { + public static int tint_max_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_max_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static int tint_max_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tint_min_value(Pointer arg0) { + public static int tint_min_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_min_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static int tint_min_value(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tint_minus_value(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tint_minus_value(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_minus_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static Pointer tint_minus_value(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tint_scale_value(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tint_scale_value(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_scale_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer tint_scale_value(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tint_shift_scale_value(Pointer arg0, int arg1, int arg2) { + public static jnr.ffi.Pointer tint_shift_scale_value(jnr.ffi.Pointer arg0, int arg1, int arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_shift_scale_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static Pointer tint_shift_scale_value(Pointer arg0, int arg1, int arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tint_shift_value(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tint_shift_value(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_shift_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static Pointer tint_shift_value(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tint_start_value(Pointer arg0) { + public static int tint_start_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_start_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static int tint_start_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tint_time_boxes(Pointer arg0, Pointer arg1, int arg2, Pointer arg3) { + public static jnr.ffi.Pointer tint_time_boxes(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, java.time.OffsetDateTime arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_time_boxes requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static Pointer tint_time_boxes(Pointer arg0, Pointer arg1, int arg2, Poin *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static int tint_value_at_timestamptz(Pointer arg0, int arg1, int arg2, Pointer arg3) { + public static boolean tint_value_at_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1, boolean arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_value_at_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -203,7 +203,7 @@ public static int tint_value_at_timestamptz(Pointer arg0, int arg1, int arg2, Po *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tint_value_bins(Pointer arg0, int arg1, int arg2, Pointer arg3) { + public static jnr.ffi.Pointer tint_value_bins(jnr.ffi.Pointer arg0, int arg1, int arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_value_bins requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static Pointer tint_value_bins(Pointer arg0, int arg1, int arg2, Pointer *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tint_value_boxes(Pointer arg0, int arg1, int arg2, Pointer arg3) { + public static jnr.ffi.Pointer tint_value_boxes(jnr.ffi.Pointer arg0, int arg1, int arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_value_boxes requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -231,12 +231,12 @@ public static Pointer tint_value_boxes(Pointer arg0, int arg1, int arg2, Pointer *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tint_value_n(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer tint_value_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_value_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tint_value_n(arg0, arg1, arg2); + return GeneratedFunctions.tint_value_n(arg0, arg1); } /** @@ -245,7 +245,7 @@ public static int tint_value_n(Pointer arg0, int arg1, Pointer arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tint_value_split(Pointer arg0, int arg1, int arg2, Pointer arg3, Pointer arg4) { + public static jnr.ffi.Pointer tint_value_split(jnr.ffi.Pointer arg0, int arg1, int arg2, jnr.ffi.Pointer arg3, jnr.ffi.Pointer arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_value_split requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -259,7 +259,7 @@ public static Pointer tint_value_split(Pointer arg0, int arg1, int arg2, Pointer *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tint_value_time_boxes(Pointer arg0, int arg1, Pointer arg2, int arg3, int arg4, Pointer arg5) { + public static jnr.ffi.Pointer tint_value_time_boxes(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2, int arg3, java.time.OffsetDateTime arg4, jnr.ffi.Pointer arg5) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_value_time_boxes requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -273,7 +273,7 @@ public static Pointer tint_value_time_boxes(Pointer arg0, int arg1, Pointer arg2 *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tint_value_time_split(Pointer arg0, long arg1, Pointer arg2, int arg3, int arg4, Pointer arg5, Pointer arg6, Pointer arg7) { + public static jnr.ffi.Pointer tint_value_time_split(jnr.ffi.Pointer arg0, long arg1, jnr.ffi.Pointer arg2, int arg3, java.time.OffsetDateTime arg4, jnr.ffi.Pointer arg5, jnr.ffi.Pointer arg6, jnr.ffi.Pointer arg7) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_value_time_split requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -287,7 +287,7 @@ public static Pointer tint_value_time_split(Pointer arg0, long arg1, Pointer arg *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tint_values(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tint_values(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_values requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -301,7 +301,7 @@ public static Pointer tint_values(Pointer arg0, Pointer arg1) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tint_tmax_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tint_tmax_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_tmax_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -315,7 +315,7 @@ public static Pointer tint_tmax_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tint_tmin_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tint_tmin_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_tmin_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -329,7 +329,7 @@ public static Pointer tint_tmin_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tint_tsum_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tint_tsum_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_tsum_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -343,7 +343,7 @@ public static Pointer tint_tsum_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tint_wmax_transfn(Pointer arg0, Pointer arg1, Pointer arg2) { + public static jnr.ffi.Pointer tint_wmax_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_wmax_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -357,7 +357,7 @@ public static Pointer tint_wmax_transfn(Pointer arg0, Pointer arg1, Pointer arg2 *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tint_wmin_transfn(Pointer arg0, Pointer arg1, Pointer arg2) { + public static jnr.ffi.Pointer tint_wmin_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_wmin_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -371,7 +371,7 @@ public static Pointer tint_wmin_transfn(Pointer arg0, Pointer arg1, Pointer arg2 *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tint_wsum_transfn(Pointer arg0, Pointer arg1, Pointer arg2) { + public static jnr.ffi.Pointer tint_wsum_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_wsum_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -385,7 +385,7 @@ public static Pointer tint_wsum_transfn(Pointer arg0, Pointer arg1, Pointer arg2 *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tint_from_mfjson(String arg0) { + public static jnr.ffi.Pointer tint_from_mfjson(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_from_mfjson requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -399,7 +399,7 @@ public static Pointer tint_from_mfjson(String arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tint_in(String arg0) { + public static jnr.ffi.Pointer tint_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -413,7 +413,7 @@ public static Pointer tint_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String tint_out(Pointer arg0) { + public static java.lang.String tint_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tint_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTIntInst.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTIntInst.java index e46d6b3..7c3db87 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTIntInst.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTIntInst.java @@ -21,7 +21,7 @@ private MeosOpsTIntInst() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer tintinst_make(int arg0, int arg1) { + public static jnr.ffi.Pointer tintinst_make(int arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tintinst_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTNpoint.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTNpoint.java index ecfa6da..dc0d68b 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTNpoint.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTNpoint.java @@ -21,7 +21,7 @@ private MeosOpsTNpoint() { /* utility */ } *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tnpoint_to_tgeompoint(Pointer arg0) { + public static jnr.ffi.Pointer tnpoint_to_tgeompoint(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_to_tgeompoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer tnpoint_to_tgeompoint(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tnpoint_at_geom(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tnpoint_at_geom(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_at_geom requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer tnpoint_at_geom(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tnpoint_at_npoint(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tnpoint_at_npoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_at_npoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer tnpoint_at_npoint(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tnpoint_at_npointset(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tnpoint_at_npointset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_at_npointset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer tnpoint_at_npointset(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tnpoint_at_stbox(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer tnpoint_at_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_at_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer tnpoint_at_stbox(Pointer arg0, Pointer arg1, int arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tnpoint_cumulative_length(Pointer arg0) { + public static jnr.ffi.Pointer tnpoint_cumulative_length(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_cumulative_length requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer tnpoint_cumulative_length(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double tnpoint_length(Pointer arg0) { + public static double tnpoint_length(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_length requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static double tnpoint_length(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tnpoint_minus_geom(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tnpoint_minus_geom(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_minus_geom requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer tnpoint_minus_geom(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tnpoint_minus_npoint(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tnpoint_minus_npoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_minus_npoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static Pointer tnpoint_minus_npoint(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tnpoint_minus_npointset(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tnpoint_minus_npointset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_minus_npointset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static Pointer tnpoint_minus_npointset(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tnpoint_minus_stbox(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer tnpoint_minus_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_minus_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static Pointer tnpoint_minus_stbox(Pointer arg0, Pointer arg1, int arg2) *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tnpoint_positions(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tnpoint_positions(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_positions requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static Pointer tnpoint_positions(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tnpoint_route(Pointer arg0) { + public static long tnpoint_route(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_route requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -203,7 +203,7 @@ public static int tnpoint_route(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tnpoint_routes(Pointer arg0) { + public static jnr.ffi.Pointer tnpoint_routes(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_routes requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static Pointer tnpoint_routes(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tnpoint_speed(Pointer arg0) { + public static jnr.ffi.Pointer tnpoint_speed(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_speed requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -231,7 +231,7 @@ public static Pointer tnpoint_speed(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tnpoint_trajectory(Pointer arg0) { + public static jnr.ffi.Pointer tnpoint_trajectory(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_trajectory requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -245,7 +245,7 @@ public static Pointer tnpoint_trajectory(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tnpoint_twcentroid(Pointer arg0) { + public static jnr.ffi.Pointer tnpoint_twcentroid(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_twcentroid requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -259,7 +259,7 @@ public static Pointer tnpoint_twcentroid(Pointer arg0) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tnpoint_tcentroid_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tnpoint_tcentroid_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_tcentroid_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -273,7 +273,7 @@ public static Pointer tnpoint_tcentroid_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tnpoint_from_mfjson(String arg0) { + public static jnr.ffi.Pointer tnpoint_from_mfjson(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_from_mfjson requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -287,7 +287,7 @@ public static Pointer tnpoint_from_mfjson(String arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tnpoint_in(String arg0) { + public static jnr.ffi.Pointer tnpoint_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -301,7 +301,7 @@ public static Pointer tnpoint_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String tnpoint_out(Pointer arg0, int arg1) { + public static java.lang.String tnpoint_out(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpoint_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTNpointInst.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTNpointInst.java index 632bb84..f989883 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTNpointInst.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTNpointInst.java @@ -21,7 +21,7 @@ private MeosOpsTNpointInst() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer tnpointinst_make(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tnpointinst_make(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnpointinst_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTNumber.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTNumber.java index 3720190..af20771 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTNumber.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTNumber.java @@ -21,7 +21,7 @@ private MeosOpsTNumber() { /* utility */ } *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tnumber_to_span(Pointer arg0) { + public static jnr.ffi.Pointer tnumber_to_span(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_to_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer tnumber_to_span(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tnumber_to_tbox(Pointer arg0) { + public static jnr.ffi.Pointer tnumber_to_tbox(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_to_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer tnumber_to_tbox(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tnumber_abs(Pointer arg0) { + public static jnr.ffi.Pointer tnumber_abs(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_abs requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer tnumber_abs(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tnumber_angular_difference(Pointer arg0) { + public static jnr.ffi.Pointer tnumber_angular_difference(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_angular_difference requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer tnumber_angular_difference(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tnumber_at_span(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tnumber_at_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_at_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer tnumber_at_span(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tnumber_at_spanset(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tnumber_at_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_at_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer tnumber_at_spanset(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tnumber_at_tbox(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tnumber_at_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_at_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static Pointer tnumber_at_tbox(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double tnumber_avg_value(Pointer arg0) { + public static double tnumber_avg_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_avg_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static double tnumber_avg_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tnumber_delta_value(Pointer arg0) { + public static jnr.ffi.Pointer tnumber_delta_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_delta_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static Pointer tnumber_delta_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double tnumber_integral(Pointer arg0) { + public static double tnumber_integral(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_integral requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static double tnumber_integral(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tnumber_minus_span(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tnumber_minus_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_minus_span requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static Pointer tnumber_minus_span(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tnumber_minus_spanset(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tnumber_minus_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_minus_spanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static Pointer tnumber_minus_spanset(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tnumber_minus_tbox(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tnumber_minus_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_minus_tbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -203,7 +203,7 @@ public static Pointer tnumber_minus_tbox(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tnumber_split_each_n_tboxes(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer tnumber_split_each_n_tboxes(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_split_each_n_tboxes requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static Pointer tnumber_split_each_n_tboxes(Pointer arg0, int arg1, Pointe *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tnumber_split_n_tboxes(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer tnumber_split_n_tboxes(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_split_n_tboxes requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -231,7 +231,7 @@ public static Pointer tnumber_split_n_tboxes(Pointer arg0, int arg1, Pointer arg *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tnumber_tboxes(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tnumber_tboxes(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_tboxes requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -245,7 +245,7 @@ public static Pointer tnumber_tboxes(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tnumber_trend(Pointer arg0) { + public static jnr.ffi.Pointer tnumber_trend(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_trend requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -259,7 +259,7 @@ public static Pointer tnumber_trend(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double tnumber_twavg(Pointer arg0) { + public static double tnumber_twavg(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_twavg requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -273,7 +273,7 @@ public static double tnumber_twavg(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tnumber_valuespans(Pointer arg0) { + public static jnr.ffi.Pointer tnumber_valuespans(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_valuespans requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -287,7 +287,7 @@ public static Pointer tnumber_valuespans(Pointer arg0) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tnumber_extent_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tnumber_extent_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_extent_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -301,7 +301,7 @@ public static Pointer tnumber_extent_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tnumber_tavg_finalfn(Pointer arg0) { + public static jnr.ffi.Pointer tnumber_tavg_finalfn(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_tavg_finalfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -315,7 +315,7 @@ public static Pointer tnumber_tavg_finalfn(Pointer arg0) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tnumber_tavg_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tnumber_tavg_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_tavg_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -329,7 +329,7 @@ public static Pointer tnumber_tavg_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tnumber_wavg_transfn(Pointer arg0, Pointer arg1, Pointer arg2) { + public static jnr.ffi.Pointer tnumber_wavg_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tnumber_wavg_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTPoint.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTPoint.java index dfad9a8..8a0004d 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTPoint.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTPoint.java @@ -21,7 +21,7 @@ private MeosOpsTPoint() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer tpoint_from_base_temp(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tpoint_from_base_temp(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_from_base_temp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,12 +35,12 @@ public static Pointer tpoint_from_base_temp(Pointer arg0, Pointer arg1) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static int tpoint_tfloat_to_geomeas(Pointer arg0, Pointer arg1, int arg2, Pointer arg3) { + public static jnr.ffi.Pointer tpoint_tfloat_to_geomeas(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_tfloat_to_geomeas requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tpoint_tfloat_to_geomeas(arg0, arg1, arg2, arg3); + return GeneratedFunctions.tpoint_tfloat_to_geomeas(arg0, arg1, arg2); } /** @@ -49,7 +49,7 @@ public static int tpoint_tfloat_to_geomeas(Pointer arg0, Pointer arg1, int arg2, *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tpoint_angular_difference(Pointer arg0) { + public static jnr.ffi.Pointer tpoint_angular_difference(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_angular_difference requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer tpoint_angular_difference(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tpoint_as_mvtgeom(Pointer arg0, Pointer arg1, int arg2, int arg3, int arg4, Pointer arg5, Pointer arg6, Pointer arg7) { + public static boolean tpoint_as_mvtgeom(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, int arg2, int arg3, boolean arg4, jnr.ffi.Pointer arg5, jnr.ffi.Pointer arg6, jnr.ffi.Pointer arg7) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_as_mvtgeom requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static int tpoint_as_mvtgeom(Pointer arg0, Pointer arg1, int arg2, int ar *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tpoint_at_elevation(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tpoint_at_elevation(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_at_elevation requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer tpoint_at_elevation(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tpoint_at_geom(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tpoint_at_geom(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_at_geom requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer tpoint_at_geom(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tpoint_at_value(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tpoint_at_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_at_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static Pointer tpoint_at_value(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tpoint_azimuth(Pointer arg0) { + public static jnr.ffi.Pointer tpoint_azimuth(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_azimuth requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer tpoint_azimuth(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tpoint_cumulative_length(Pointer arg0) { + public static jnr.ffi.Pointer tpoint_cumulative_length(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_cumulative_length requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,12 +147,12 @@ public static Pointer tpoint_cumulative_length(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tpoint_direction(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tpoint_direction(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_direction requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tpoint_direction(arg0, arg1); + return GeneratedFunctions.tpoint_direction(arg0); } /** @@ -161,7 +161,7 @@ public static int tpoint_direction(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tpoint_get_x(Pointer arg0) { + public static jnr.ffi.Pointer tpoint_get_x(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_get_x requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static Pointer tpoint_get_x(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tpoint_get_y(Pointer arg0) { + public static jnr.ffi.Pointer tpoint_get_y(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_get_y requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static Pointer tpoint_get_y(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tpoint_get_z(Pointer arg0) { + public static jnr.ffi.Pointer tpoint_get_z(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_get_z requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -203,7 +203,7 @@ public static Pointer tpoint_get_z(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tpoint_is_simple(Pointer arg0) { + public static boolean tpoint_is_simple(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_is_simple requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static int tpoint_is_simple(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double tpoint_length(Pointer arg0) { + public static double tpoint_length(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_length requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -231,7 +231,7 @@ public static double tpoint_length(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tpoint_make_simple(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tpoint_make_simple(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_make_simple requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -245,7 +245,7 @@ public static Pointer tpoint_make_simple(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tpoint_minus_elevation(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tpoint_minus_elevation(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_minus_elevation requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -259,7 +259,7 @@ public static Pointer tpoint_minus_elevation(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tpoint_minus_geom(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tpoint_minus_geom(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_minus_geom requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -273,7 +273,7 @@ public static Pointer tpoint_minus_geom(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tpoint_minus_value(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tpoint_minus_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_minus_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -287,7 +287,7 @@ public static Pointer tpoint_minus_value(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tpoint_speed(Pointer arg0) { + public static jnr.ffi.Pointer tpoint_speed(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_speed requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -301,7 +301,7 @@ public static Pointer tpoint_speed(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tpoint_trajectory(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tpoint_trajectory(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_trajectory requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -315,7 +315,7 @@ public static Pointer tpoint_trajectory(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tpoint_twcentroid(Pointer arg0) { + public static jnr.ffi.Pointer tpoint_twcentroid(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_twcentroid requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -329,7 +329,7 @@ public static Pointer tpoint_twcentroid(Pointer arg0) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tpoint_tcentroid_finalfn(Pointer arg0) { + public static jnr.ffi.Pointer tpoint_tcentroid_finalfn(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_tcentroid_finalfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -343,7 +343,7 @@ public static Pointer tpoint_tcentroid_finalfn(Pointer arg0) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tpoint_tcentroid_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tpoint_tcentroid_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpoint_tcentroid_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTPose.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTPose.java index 47c74c7..a3d1959 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTPose.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTPose.java @@ -21,7 +21,7 @@ private MeosOpsTPose() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer tpose_make(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tpose_make(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpose_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer tpose_make(Pointer arg0, Pointer arg1) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tpose_to_tpoint(Pointer arg0) { + public static jnr.ffi.Pointer tpose_to_tpoint(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpose_to_tpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer tpose_to_tpoint(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tpose_at_geom(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tpose_at_geom(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpose_at_geom requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer tpose_at_geom(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tpose_at_pose(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tpose_at_pose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpose_at_pose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer tpose_at_pose(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tpose_at_stbox(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer tpose_at_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpose_at_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer tpose_at_stbox(Pointer arg0, Pointer arg1, int arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tpose_end_value(Pointer arg0) { + public static jnr.ffi.Pointer tpose_end_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpose_end_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer tpose_end_value(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tpose_minus_geom(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tpose_minus_geom(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpose_minus_geom requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static Pointer tpose_minus_geom(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tpose_minus_pose(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tpose_minus_pose(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpose_minus_pose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer tpose_minus_pose(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer tpose_minus_stbox(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer tpose_minus_stbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpose_minus_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static Pointer tpose_minus_stbox(Pointer arg0, Pointer arg1, int arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tpose_points(Pointer arg0) { + public static jnr.ffi.Pointer tpose_points(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpose_points requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static Pointer tpose_points(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tpose_rotation(Pointer arg0) { + public static jnr.ffi.Pointer tpose_rotation(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpose_rotation requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static Pointer tpose_rotation(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tpose_start_value(Pointer arg0) { + public static jnr.ffi.Pointer tpose_start_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpose_start_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static Pointer tpose_start_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tpose_trajectory(Pointer arg0) { + public static jnr.ffi.Pointer tpose_trajectory(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpose_trajectory requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -203,7 +203,7 @@ public static Pointer tpose_trajectory(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static int tpose_value_at_timestamptz(Pointer arg0, int arg1, int arg2, Pointer arg3) { + public static boolean tpose_value_at_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1, boolean arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpose_value_at_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,12 +217,12 @@ public static int tpose_value_at_timestamptz(Pointer arg0, int arg1, int arg2, P *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tpose_value_n(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer tpose_value_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpose_value_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tpose_value_n(arg0, arg1, arg2); + return GeneratedFunctions.tpose_value_n(arg0, arg1); } /** @@ -231,7 +231,7 @@ public static int tpose_value_n(Pointer arg0, int arg1, Pointer arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tpose_values(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tpose_values(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpose_values requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -245,7 +245,7 @@ public static Pointer tpose_values(Pointer arg0, Pointer arg1) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tpose_in(String arg0) { + public static jnr.ffi.Pointer tpose_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tpose_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTRGeometry.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTRGeometry.java index f9a6d46..ce92704 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTRGeometry.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTRGeometry.java @@ -21,7 +21,7 @@ private MeosOpsTRGeometry() { /* utility */ } *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer trgeo_to_tinstant(Pointer arg0) { + public static jnr.ffi.Pointer trgeo_to_tinstant(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_to_tinstant requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer trgeo_to_tinstant(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer trgeo_to_tpoint(Pointer arg0) { + public static jnr.ffi.Pointer trgeo_to_tpoint(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_to_tpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer trgeo_to_tpoint(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer trgeo_to_tpose(Pointer arg0) { + public static jnr.ffi.Pointer trgeo_to_tpose(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_to_tpose requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer trgeo_to_tpose(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_after_timestamptz(Pointer arg0, int arg1, int arg2) { + public static jnr.ffi.Pointer trgeo_after_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_after_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer trgeo_after_timestamptz(Pointer arg0, int arg1, int arg2) *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_append_tinstant(Pointer arg0, Pointer arg1, int arg2, double arg3, Pointer arg4, int arg5) { + public static jnr.ffi.Pointer trgeo_append_tinstant(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, int arg2, double arg3, jnr.ffi.Pointer arg4, boolean arg5) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_append_tinstant requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer trgeo_append_tinstant(Pointer arg0, Pointer arg1, int arg2 *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_append_tsequence(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer trgeo_append_tsequence(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_append_tsequence requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer trgeo_append_tsequence(Pointer arg0, Pointer arg1, int arg *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_before_timestamptz(Pointer arg0, int arg1, int arg2) { + public static jnr.ffi.Pointer trgeo_before_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_before_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static Pointer trgeo_before_timestamptz(Pointer arg0, int arg1, int arg2) *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_delete_timestamptz(Pointer arg0, int arg1, int arg2) { + public static jnr.ffi.Pointer trgeo_delete_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_delete_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer trgeo_delete_timestamptz(Pointer arg0, int arg1, int arg2) *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_delete_tstzset(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer trgeo_delete_tstzset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_delete_tstzset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static Pointer trgeo_delete_tstzset(Pointer arg0, Pointer arg1, int arg2) *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_delete_tstzspan(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer trgeo_delete_tstzspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_delete_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static Pointer trgeo_delete_tstzspan(Pointer arg0, Pointer arg1, int arg2 *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_delete_tstzspanset(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer trgeo_delete_tstzspanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_delete_tstzspanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static Pointer trgeo_delete_tstzspanset(Pointer arg0, Pointer arg1, int a *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_end_instant(Pointer arg0) { + public static jnr.ffi.Pointer trgeo_end_instant(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_end_instant requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static Pointer trgeo_end_instant(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_end_sequence(Pointer arg0) { + public static jnr.ffi.Pointer trgeo_end_sequence(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_end_sequence requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -203,7 +203,7 @@ public static Pointer trgeo_end_sequence(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_end_value(Pointer arg0) { + public static jnr.ffi.Pointer trgeo_end_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_end_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static Pointer trgeo_end_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_geom(Pointer arg0) { + public static jnr.ffi.Pointer trgeo_geom(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_geom requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -231,7 +231,7 @@ public static Pointer trgeo_geom(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_instant_n(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer trgeo_instant_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_instant_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -245,7 +245,7 @@ public static Pointer trgeo_instant_n(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_instants(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer trgeo_instants(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_instants requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -259,7 +259,7 @@ public static Pointer trgeo_instants(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_points(Pointer arg0) { + public static jnr.ffi.Pointer trgeo_points(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_points requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -273,7 +273,7 @@ public static Pointer trgeo_points(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_restrict_timestamptz(Pointer arg0, int arg1, int arg2) { + public static jnr.ffi.Pointer trgeo_restrict_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_restrict_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -287,7 +287,7 @@ public static Pointer trgeo_restrict_timestamptz(Pointer arg0, int arg1, int arg *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_restrict_tstzset(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer trgeo_restrict_tstzset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_restrict_tstzset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -301,7 +301,7 @@ public static Pointer trgeo_restrict_tstzset(Pointer arg0, Pointer arg1, int arg *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_restrict_tstzspan(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer trgeo_restrict_tstzspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_restrict_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -315,7 +315,7 @@ public static Pointer trgeo_restrict_tstzspan(Pointer arg0, Pointer arg1, int ar *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_restrict_tstzspanset(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer trgeo_restrict_tstzspanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_restrict_tstzspanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -329,7 +329,7 @@ public static Pointer trgeo_restrict_tstzspanset(Pointer arg0, Pointer arg1, int *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_restrict_value(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer trgeo_restrict_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_restrict_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -343,7 +343,7 @@ public static Pointer trgeo_restrict_value(Pointer arg0, Pointer arg1, int arg2) *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_restrict_values(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer trgeo_restrict_values(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_restrict_values requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -357,7 +357,7 @@ public static Pointer trgeo_restrict_values(Pointer arg0, Pointer arg1, int arg2 *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_rotation(Pointer arg0) { + public static jnr.ffi.Pointer trgeo_rotation(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_rotation requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -371,7 +371,7 @@ public static Pointer trgeo_rotation(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_round(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer trgeo_round(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_round requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -385,7 +385,7 @@ public static Pointer trgeo_round(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_segments(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer trgeo_segments(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_segments requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -399,7 +399,7 @@ public static Pointer trgeo_segments(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_sequence_n(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer trgeo_sequence_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_sequence_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -413,7 +413,7 @@ public static Pointer trgeo_sequence_n(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_sequences(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer trgeo_sequences(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_sequences requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -427,7 +427,7 @@ public static Pointer trgeo_sequences(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_set_interp(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer trgeo_set_interp(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_set_interp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -441,7 +441,7 @@ public static Pointer trgeo_set_interp(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_start_instant(Pointer arg0) { + public static jnr.ffi.Pointer trgeo_start_instant(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_start_instant requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -455,7 +455,7 @@ public static Pointer trgeo_start_instant(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_start_sequence(Pointer arg0) { + public static jnr.ffi.Pointer trgeo_start_sequence(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_start_sequence requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -469,7 +469,7 @@ public static Pointer trgeo_start_sequence(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_start_value(Pointer arg0) { + public static jnr.ffi.Pointer trgeo_start_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_start_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -483,7 +483,7 @@ public static Pointer trgeo_start_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_traversed_area(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer trgeo_traversed_area(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_traversed_area requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -497,12 +497,12 @@ public static Pointer trgeo_traversed_area(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int trgeo_value_n(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer trgeo_value_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_value_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.trgeo_value_n(arg0, arg1, arg2); + return GeneratedFunctions.trgeo_value_n(arg0, arg1); } /** @@ -511,7 +511,7 @@ public static int trgeo_value_n(Pointer arg0, int arg1, Pointer arg2) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String trgeo_out(Pointer arg0) { + public static java.lang.String trgeo_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeo_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTRGeometryInst.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTRGeometryInst.java index 49edea9..d6a4e00 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTRGeometryInst.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTRGeometryInst.java @@ -21,7 +21,7 @@ private MeosOpsTRGeometryInst() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer trgeoinst_make(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer trgeoinst_make(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, java.time.OffsetDateTime arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "trgeoinst_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTSequenceSet.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTSequenceSet.java index 1358354..17451f6 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTSequenceSet.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTSequenceSet.java @@ -21,7 +21,7 @@ private MeosOpsTSequenceSet() { /* utility */ } *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tsequenceset_make_gaps(Pointer arg0, int arg1, int arg2, Pointer arg3, double arg4) { + public static jnr.ffi.Pointer tsequenceset_make_gaps(jnr.ffi.Pointer arg0, int arg1, int arg2, jnr.ffi.Pointer arg3, double arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tsequenceset_make_gaps requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTSpatial.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTSpatial.java index 9de6b9c..6312c84 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTSpatial.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTSpatial.java @@ -21,7 +21,7 @@ private MeosOpsTSpatial() { /* utility */ } *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tspatial_to_stbox(Pointer arg0) { + public static jnr.ffi.Pointer tspatial_to_stbox(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tspatial_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer tspatial_to_stbox(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tspatial_set_srid(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tspatial_set_srid(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tspatial_set_srid requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer tspatial_set_srid(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tspatial_srid(Pointer arg0) { + public static int tspatial_srid(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tspatial_srid requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static int tspatial_srid(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tspatial_transform(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tspatial_transform(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tspatial_transform requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer tspatial_transform(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tspatial_transform_pipeline(Pointer arg0, String arg1, int arg2, int arg3) { + public static jnr.ffi.Pointer tspatial_transform_pipeline(jnr.ffi.Pointer arg0, java.lang.String arg1, int arg2, boolean arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tspatial_transform_pipeline requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer tspatial_transform_pipeline(Pointer arg0, String arg1, int *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tspatial_extent_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tspatial_extent_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tspatial_extent_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer tspatial_extent_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String tspatial_as_ewkt(Pointer arg0, int arg1) { + public static java.lang.String tspatial_as_ewkt(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tspatial_as_ewkt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static String tspatial_as_ewkt(Pointer arg0, int arg1) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String tspatial_as_text(Pointer arg0, int arg1) { + public static java.lang.String tspatial_as_text(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tspatial_as_text requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static String tspatial_as_text(Pointer arg0, int arg1) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String tspatial_out(Pointer arg0, int arg1) { + public static java.lang.String tspatial_out(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tspatial_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTText.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTText.java index c70edb1..3e54d72 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTText.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTText.java @@ -21,7 +21,7 @@ private MeosOpsTText() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer ttext_from_base_temp(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer ttext_from_base_temp(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttext_from_base_temp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer ttext_from_base_temp(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer ttext_at_value(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer ttext_at_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttext_at_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer ttext_at_value(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer ttext_end_value(Pointer arg0) { + public static jnr.ffi.Pointer ttext_end_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttext_end_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer ttext_end_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer ttext_initcap(Pointer arg0) { + public static jnr.ffi.Pointer ttext_initcap(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttext_initcap requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer ttext_initcap(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer ttext_lower(Pointer arg0) { + public static jnr.ffi.Pointer ttext_lower(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttext_lower requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer ttext_lower(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer ttext_max_value(Pointer arg0) { + public static jnr.ffi.Pointer ttext_max_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttext_max_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer ttext_max_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer ttext_min_value(Pointer arg0) { + public static jnr.ffi.Pointer ttext_min_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttext_min_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static Pointer ttext_min_value(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer ttext_minus_value(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer ttext_minus_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttext_minus_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer ttext_minus_value(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer ttext_start_value(Pointer arg0) { + public static jnr.ffi.Pointer ttext_start_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttext_start_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static Pointer ttext_start_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer ttext_upper(Pointer arg0) { + public static jnr.ffi.Pointer ttext_upper(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttext_upper requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static Pointer ttext_upper(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static int ttext_value_at_timestamptz(Pointer arg0, int arg1, int arg2, Pointer arg3) { + public static boolean ttext_value_at_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1, boolean arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttext_value_at_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,12 +175,12 @@ public static int ttext_value_at_timestamptz(Pointer arg0, int arg1, int arg2, P *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int ttext_value_n(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer ttext_value_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttext_value_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.ttext_value_n(arg0, arg1, arg2); + return GeneratedFunctions.ttext_value_n(arg0, arg1); } /** @@ -189,7 +189,7 @@ public static int ttext_value_n(Pointer arg0, int arg1, Pointer arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer ttext_values(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer ttext_values(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttext_values requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -203,7 +203,7 @@ public static Pointer ttext_values(Pointer arg0, Pointer arg1) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer ttext_tmax_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer ttext_tmax_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttext_tmax_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static Pointer ttext_tmax_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer ttext_tmin_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer ttext_tmin_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttext_tmin_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -231,7 +231,7 @@ public static Pointer ttext_tmin_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer ttext_from_mfjson(String arg0) { + public static jnr.ffi.Pointer ttext_from_mfjson(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttext_from_mfjson requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -245,7 +245,7 @@ public static Pointer ttext_from_mfjson(String arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer ttext_in(String arg0) { + public static jnr.ffi.Pointer ttext_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttext_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -259,7 +259,7 @@ public static Pointer ttext_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String ttext_out(Pointer arg0) { + public static java.lang.String ttext_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttext_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTTextInst.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTTextInst.java index c40a103..bc7ea0e 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTTextInst.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTTextInst.java @@ -21,7 +21,7 @@ private MeosOpsTTextInst() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer ttextinst_make(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer ttextinst_make(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "ttextinst_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTemporal.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTemporal.java index 3b7113b..13b4a92 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTemporal.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTemporal.java @@ -21,7 +21,7 @@ private MeosOpsTemporal() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer temporal_copy(Pointer arg0) { + public static jnr.ffi.Pointer temporal_copy(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_copy requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer temporal_copy(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer temporal_to_tinstant(Pointer arg0) { + public static jnr.ffi.Pointer temporal_to_tinstant(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_to_tinstant requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer temporal_to_tinstant(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer temporal_to_tsequence(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer temporal_to_tsequence(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_to_tsequence requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer temporal_to_tsequence(Pointer arg0, int arg1) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer temporal_to_tsequenceset(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer temporal_to_tsequenceset(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_to_tsequenceset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer temporal_to_tsequenceset(Pointer arg0, int arg1) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer temporal_to_tstzspan(Pointer arg0) { + public static jnr.ffi.Pointer temporal_to_tstzspan(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_to_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer temporal_to_tstzspan(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_after_timestamptz(Pointer arg0, int arg1, int arg2) { + public static jnr.ffi.Pointer temporal_after_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_after_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer temporal_after_timestamptz(Pointer arg0, int arg1, int arg *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_append_tinstant(Pointer arg0, Pointer arg1, int arg2, double arg3, Pointer arg4, int arg5) { + public static jnr.ffi.Pointer temporal_append_tinstant(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, int arg2, double arg3, jnr.ffi.Pointer arg4, boolean arg5) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_append_tinstant requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static Pointer temporal_append_tinstant(Pointer arg0, Pointer arg1, int a *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_append_tsequence(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer temporal_append_tsequence(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_append_tsequence requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer temporal_append_tsequence(Pointer arg0, Pointer arg1, int *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer temporal_at_max(Pointer arg0) { + public static jnr.ffi.Pointer temporal_at_max(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_at_max requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static Pointer temporal_at_max(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer temporal_at_min(Pointer arg0) { + public static jnr.ffi.Pointer temporal_at_min(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_at_min requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static Pointer temporal_at_min(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer temporal_at_timestamptz(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer temporal_at_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_at_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static Pointer temporal_at_timestamptz(Pointer arg0, int arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer temporal_at_tstzset(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_at_tstzset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_at_tstzset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static Pointer temporal_at_tstzset(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer temporal_at_tstzspan(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_at_tstzspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_at_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -203,7 +203,7 @@ public static Pointer temporal_at_tstzspan(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer temporal_at_tstzspanset(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_at_tstzspanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_at_tstzspanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static Pointer temporal_at_tstzspanset(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer temporal_at_values(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_at_values(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_at_values requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -231,7 +231,7 @@ public static Pointer temporal_at_values(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_before_timestamptz(Pointer arg0, int arg1, int arg2) { + public static jnr.ffi.Pointer temporal_before_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_before_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -245,7 +245,7 @@ public static Pointer temporal_before_timestamptz(Pointer arg0, int arg1, int ar *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_delete_timestamptz(Pointer arg0, int arg1, int arg2) { + public static jnr.ffi.Pointer temporal_delete_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_delete_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -259,7 +259,7 @@ public static Pointer temporal_delete_timestamptz(Pointer arg0, int arg1, int ar *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_delete_tstzset(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer temporal_delete_tstzset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_delete_tstzset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -273,7 +273,7 @@ public static Pointer temporal_delete_tstzset(Pointer arg0, Pointer arg1, int ar *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_delete_tstzspan(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer temporal_delete_tstzspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_delete_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -287,7 +287,7 @@ public static Pointer temporal_delete_tstzspan(Pointer arg0, Pointer arg1, int a *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_delete_tstzspanset(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer temporal_delete_tstzspanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_delete_tstzspanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -301,7 +301,7 @@ public static Pointer temporal_delete_tstzspanset(Pointer arg0, Pointer arg1, in *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_derivative(Pointer arg0) { + public static jnr.ffi.Pointer temporal_derivative(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_derivative requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -315,7 +315,7 @@ public static Pointer temporal_derivative(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_duration(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer temporal_duration(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_duration requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -329,7 +329,7 @@ public static Pointer temporal_duration(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double temporal_dyntimewarp_distance(Pointer arg0, Pointer arg1) { + public static double temporal_dyntimewarp_distance(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_dyntimewarp_distance requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -343,7 +343,7 @@ public static double temporal_dyntimewarp_distance(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_dyntimewarp_path(Pointer arg0, Pointer arg1, Pointer arg2) { + public static jnr.ffi.Pointer temporal_dyntimewarp_path(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_dyntimewarp_path requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -357,7 +357,7 @@ public static Pointer temporal_dyntimewarp_path(Pointer arg0, Pointer arg1, Poin *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_end_instant(Pointer arg0) { + public static jnr.ffi.Pointer temporal_end_instant(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_end_instant requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -371,7 +371,7 @@ public static Pointer temporal_end_instant(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_end_sequence(Pointer arg0) { + public static jnr.ffi.Pointer temporal_end_sequence(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_end_sequence requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -385,7 +385,7 @@ public static Pointer temporal_end_sequence(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int temporal_end_timestamptz(Pointer arg0) { + public static java.time.OffsetDateTime temporal_end_timestamptz(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_end_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -399,7 +399,7 @@ public static int temporal_end_timestamptz(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double temporal_frechet_distance(Pointer arg0, Pointer arg1) { + public static double temporal_frechet_distance(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_frechet_distance requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -413,7 +413,7 @@ public static double temporal_frechet_distance(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_frechet_path(Pointer arg0, Pointer arg1, Pointer arg2) { + public static jnr.ffi.Pointer temporal_frechet_path(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_frechet_path requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -427,7 +427,7 @@ public static Pointer temporal_frechet_path(Pointer arg0, Pointer arg1, Pointer *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int temporal_hash(Pointer arg0) { + public static int temporal_hash(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_hash requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -441,7 +441,7 @@ public static int temporal_hash(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static double temporal_hausdorff_distance(Pointer arg0, Pointer arg1) { + public static double temporal_hausdorff_distance(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_hausdorff_distance requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -455,7 +455,7 @@ public static double temporal_hausdorff_distance(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_insert(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer temporal_insert(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_insert requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -469,7 +469,7 @@ public static Pointer temporal_insert(Pointer arg0, Pointer arg1, int arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_instant_n(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer temporal_instant_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_instant_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -483,7 +483,7 @@ public static Pointer temporal_instant_n(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_instants(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_instants(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_instants requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -497,7 +497,7 @@ public static Pointer temporal_instants(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static String temporal_interp(Pointer arg0) { + public static java.lang.String temporal_interp(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_interp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -511,7 +511,7 @@ public static String temporal_interp(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int temporal_lower_inc(Pointer arg0) { + public static boolean temporal_lower_inc(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_lower_inc requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -525,7 +525,7 @@ public static int temporal_lower_inc(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_max_instant(Pointer arg0) { + public static jnr.ffi.Pointer temporal_max_instant(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_max_instant requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -539,7 +539,7 @@ public static Pointer temporal_max_instant(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_merge(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_merge(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_merge requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -553,7 +553,7 @@ public static Pointer temporal_merge(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_merge_array(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer temporal_merge_array(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_merge_array requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -567,7 +567,7 @@ public static Pointer temporal_merge_array(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_min_instant(Pointer arg0) { + public static jnr.ffi.Pointer temporal_min_instant(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_min_instant requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -581,7 +581,7 @@ public static Pointer temporal_min_instant(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer temporal_minus_max(Pointer arg0) { + public static jnr.ffi.Pointer temporal_minus_max(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_minus_max requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -595,7 +595,7 @@ public static Pointer temporal_minus_max(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer temporal_minus_min(Pointer arg0) { + public static jnr.ffi.Pointer temporal_minus_min(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_minus_min requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -609,7 +609,7 @@ public static Pointer temporal_minus_min(Pointer arg0) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer temporal_minus_timestamptz(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer temporal_minus_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_minus_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -623,7 +623,7 @@ public static Pointer temporal_minus_timestamptz(Pointer arg0, int arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer temporal_minus_tstzset(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_minus_tstzset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_minus_tstzset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -637,7 +637,7 @@ public static Pointer temporal_minus_tstzset(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer temporal_minus_tstzspan(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_minus_tstzspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_minus_tstzspan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -651,7 +651,7 @@ public static Pointer temporal_minus_tstzspan(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer temporal_minus_tstzspanset(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_minus_tstzspanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_minus_tstzspanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -665,7 +665,7 @@ public static Pointer temporal_minus_tstzspanset(Pointer arg0, Pointer arg1) { *

Object-model role: {@code restriction}.

*

Classification: role=restriction

*/ - public static Pointer temporal_minus_values(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_minus_values(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_minus_values requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -679,7 +679,7 @@ public static Pointer temporal_minus_values(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int temporal_num_instants(Pointer arg0) { + public static int temporal_num_instants(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_num_instants requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -693,7 +693,7 @@ public static int temporal_num_instants(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int temporal_num_sequences(Pointer arg0) { + public static int temporal_num_sequences(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_num_sequences requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -707,7 +707,7 @@ public static int temporal_num_sequences(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int temporal_num_timestamps(Pointer arg0) { + public static int temporal_num_timestamps(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_num_timestamps requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -721,7 +721,7 @@ public static int temporal_num_timestamps(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_round(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer temporal_round(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_round requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -735,7 +735,7 @@ public static Pointer temporal_round(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_scale_time(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_scale_time(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_scale_time requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -749,7 +749,7 @@ public static Pointer temporal_scale_time(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_segm_duration(Pointer arg0, Pointer arg1, int arg2, int arg3) { + public static jnr.ffi.Pointer temporal_segm_duration(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2, boolean arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_segm_duration requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -763,7 +763,7 @@ public static Pointer temporal_segm_duration(Pointer arg0, Pointer arg1, int arg *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_segments(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_segments(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_segments requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -777,7 +777,7 @@ public static Pointer temporal_segments(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_sequence_n(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer temporal_sequence_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_sequence_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -791,7 +791,7 @@ public static Pointer temporal_sequence_n(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_sequences(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_sequences(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_sequences requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -805,7 +805,7 @@ public static Pointer temporal_sequences(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_set_interp(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer temporal_set_interp(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_set_interp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -819,7 +819,7 @@ public static Pointer temporal_set_interp(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_shift_scale_time(Pointer arg0, Pointer arg1, Pointer arg2) { + public static jnr.ffi.Pointer temporal_shift_scale_time(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_shift_scale_time requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -833,7 +833,7 @@ public static Pointer temporal_shift_scale_time(Pointer arg0, Pointer arg1, Poin *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_shift_time(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_shift_time(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_shift_time requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -847,7 +847,7 @@ public static Pointer temporal_shift_time(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_simplify_dp(Pointer arg0, double arg1, int arg2) { + public static jnr.ffi.Pointer temporal_simplify_dp(jnr.ffi.Pointer arg0, double arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_simplify_dp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -861,7 +861,7 @@ public static Pointer temporal_simplify_dp(Pointer arg0, double arg1, int arg2) *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_simplify_max_dist(Pointer arg0, double arg1, int arg2) { + public static jnr.ffi.Pointer temporal_simplify_max_dist(jnr.ffi.Pointer arg0, double arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_simplify_max_dist requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -875,7 +875,7 @@ public static Pointer temporal_simplify_max_dist(Pointer arg0, double arg1, int *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_simplify_min_dist(Pointer arg0, double arg1) { + public static jnr.ffi.Pointer temporal_simplify_min_dist(jnr.ffi.Pointer arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_simplify_min_dist requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -889,7 +889,7 @@ public static Pointer temporal_simplify_min_dist(Pointer arg0, double arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_simplify_min_tdelta(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_simplify_min_tdelta(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_simplify_min_tdelta requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -903,7 +903,7 @@ public static Pointer temporal_simplify_min_tdelta(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_spans(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_spans(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_spans requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -917,7 +917,7 @@ public static Pointer temporal_spans(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_split_each_n_spans(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer temporal_split_each_n_spans(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_split_each_n_spans requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -931,7 +931,7 @@ public static Pointer temporal_split_each_n_spans(Pointer arg0, int arg1, Pointe *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_split_n_spans(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer temporal_split_n_spans(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_split_n_spans requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -945,7 +945,7 @@ public static Pointer temporal_split_n_spans(Pointer arg0, int arg1, Pointer arg *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_start_instant(Pointer arg0) { + public static jnr.ffi.Pointer temporal_start_instant(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_start_instant requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -959,7 +959,7 @@ public static Pointer temporal_start_instant(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_start_sequence(Pointer arg0) { + public static jnr.ffi.Pointer temporal_start_sequence(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_start_sequence requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -973,7 +973,7 @@ public static Pointer temporal_start_sequence(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int temporal_start_timestamptz(Pointer arg0) { + public static java.time.OffsetDateTime temporal_start_timestamptz(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_start_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -987,7 +987,7 @@ public static int temporal_start_timestamptz(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_stops(Pointer arg0, double arg1, Pointer arg2) { + public static jnr.ffi.Pointer temporal_stops(jnr.ffi.Pointer arg0, double arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_stops requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1001,7 +1001,7 @@ public static Pointer temporal_stops(Pointer arg0, double arg1, Pointer arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static String temporal_subtype(Pointer arg0) { + public static java.lang.String temporal_subtype(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_subtype requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1015,7 +1015,7 @@ public static String temporal_subtype(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_time(Pointer arg0) { + public static jnr.ffi.Pointer temporal_time(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_time requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1029,7 +1029,7 @@ public static Pointer temporal_time(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_time_bins(Pointer arg0, Pointer arg1, int arg2, Pointer arg3) { + public static jnr.ffi.Pointer temporal_time_bins(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, java.time.OffsetDateTime arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_time_bins requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1043,7 +1043,7 @@ public static Pointer temporal_time_bins(Pointer arg0, Pointer arg1, int arg2, P *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_time_split(Pointer arg0, Pointer arg1, int arg2, Pointer arg3, Pointer arg4) { + public static jnr.ffi.Pointer temporal_time_split(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, java.time.OffsetDateTime arg2, jnr.ffi.Pointer arg3, jnr.ffi.Pointer arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_time_split requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1057,7 +1057,7 @@ public static Pointer temporal_time_split(Pointer arg0, Pointer arg1, int arg2, *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_timestamps(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_timestamps(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_timestamps requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1071,12 +1071,12 @@ public static Pointer temporal_timestamps(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int temporal_timestamptz_n(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer temporal_timestamptz_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_timestamptz_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.temporal_timestamptz_n(arg0, arg1, arg2); + return GeneratedFunctions.temporal_timestamptz_n(arg0, arg1); } /** @@ -1085,7 +1085,7 @@ public static int temporal_timestamptz_n(Pointer arg0, int arg1, Pointer arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_tprecision(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer temporal_tprecision(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, java.time.OffsetDateTime arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_tprecision requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1099,7 +1099,7 @@ public static Pointer temporal_tprecision(Pointer arg0, Pointer arg1, int arg2) *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_tsample(Pointer arg0, Pointer arg1, int arg2, int arg3) { + public static jnr.ffi.Pointer temporal_tsample(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, java.time.OffsetDateTime arg2, int arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_tsample requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1113,7 +1113,7 @@ public static Pointer temporal_tsample(Pointer arg0, Pointer arg1, int arg2, int *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer temporal_update(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer temporal_update(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, boolean arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_update requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1127,7 +1127,7 @@ public static Pointer temporal_update(Pointer arg0, Pointer arg1, int arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int temporal_upper_inc(Pointer arg0) { + public static boolean temporal_upper_inc(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_upper_inc requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1141,7 +1141,7 @@ public static int temporal_upper_inc(Pointer arg0) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer temporal_extent_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_extent_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_extent_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1155,7 +1155,7 @@ public static Pointer temporal_extent_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer temporal_merge_combinefn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_merge_combinefn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_merge_combinefn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1169,7 +1169,7 @@ public static Pointer temporal_merge_combinefn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer temporal_merge_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_merge_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_merge_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1183,7 +1183,7 @@ public static Pointer temporal_merge_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer temporal_tagg_finalfn(Pointer arg0) { + public static jnr.ffi.Pointer temporal_tagg_finalfn(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_tagg_finalfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1197,7 +1197,7 @@ public static Pointer temporal_tagg_finalfn(Pointer arg0) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer temporal_tcount_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer temporal_tcount_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_tcount_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1211,7 +1211,7 @@ public static Pointer temporal_tcount_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 2 temporals

*/ - public static int temporal_cmp(Pointer arg0, Pointer arg1) { + public static int temporal_cmp(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_cmp requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1225,7 +1225,7 @@ public static int temporal_cmp(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 2 temporals

*/ - public static int temporal_eq(Pointer arg0, Pointer arg1) { + public static boolean temporal_eq(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_eq requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1239,7 +1239,7 @@ public static int temporal_eq(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 2 temporals

*/ - public static int temporal_ge(Pointer arg0, Pointer arg1) { + public static boolean temporal_ge(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_ge requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1253,7 +1253,7 @@ public static int temporal_ge(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 2 temporals

*/ - public static int temporal_gt(Pointer arg0, Pointer arg1) { + public static boolean temporal_gt(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_gt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1267,7 +1267,7 @@ public static int temporal_gt(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 2 temporals

*/ - public static int temporal_le(Pointer arg0, Pointer arg1) { + public static boolean temporal_le(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_le requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1281,7 +1281,7 @@ public static int temporal_le(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 2 temporals

*/ - public static int temporal_lt(Pointer arg0, Pointer arg1) { + public static boolean temporal_lt(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_lt requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1295,7 +1295,7 @@ public static int temporal_lt(Pointer arg0, Pointer arg1) { *

Object-model role: {@code predicate}.

*

Classification: predicate on 2 temporals

*/ - public static int temporal_ne(Pointer arg0, Pointer arg1) { + public static boolean temporal_ne(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_ne requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1309,7 +1309,7 @@ public static int temporal_ne(Pointer arg0, Pointer arg1) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String temporal_as_hexwkb(Pointer arg0, byte arg1) { + public static java.lang.String temporal_as_hexwkb(jnr.ffi.Pointer arg0, byte arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_as_hexwkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1323,7 +1323,7 @@ public static String temporal_as_hexwkb(Pointer arg0, byte arg1) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String temporal_as_mfjson(Pointer arg0, int arg1, int arg2, int arg3, String arg4) { + public static java.lang.String temporal_as_mfjson(jnr.ffi.Pointer arg0, boolean arg1, int arg2, int arg3, java.lang.String arg4) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_as_mfjson requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1337,7 +1337,7 @@ public static String temporal_as_mfjson(Pointer arg0, int arg1, int arg2, int ar *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static Pointer temporal_as_wkb(Pointer arg0, byte arg1) { + public static jnr.ffi.Pointer temporal_as_wkb(jnr.ffi.Pointer arg0, byte arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_as_wkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1351,7 +1351,7 @@ public static Pointer temporal_as_wkb(Pointer arg0, byte arg1) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer temporal_from_hexwkb(String arg0) { + public static jnr.ffi.Pointer temporal_from_hexwkb(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_from_hexwkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -1365,7 +1365,7 @@ public static Pointer temporal_from_hexwkb(String arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer temporal_from_wkb(Pointer arg0, long arg1) { + public static jnr.ffi.Pointer temporal_from_wkb(jnr.ffi.Pointer arg0, long arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "temporal_from_wkb requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTextSet.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTextSet.java index 6191b1b..11b294f 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTextSet.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTextSet.java @@ -21,7 +21,7 @@ private MeosOpsTextSet() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer textset_make(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer textset_make(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "textset_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer textset_make(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer textset_end_value(Pointer arg0) { + public static jnr.ffi.Pointer textset_end_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "textset_end_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer textset_end_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer textset_initcap(Pointer arg0) { + public static jnr.ffi.Pointer textset_initcap(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "textset_initcap requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer textset_initcap(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer textset_lower(Pointer arg0) { + public static jnr.ffi.Pointer textset_lower(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "textset_lower requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer textset_lower(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer textset_start_value(Pointer arg0) { + public static jnr.ffi.Pointer textset_start_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "textset_start_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer textset_start_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer textset_upper(Pointer arg0) { + public static jnr.ffi.Pointer textset_upper(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "textset_upper requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,12 +105,12 @@ public static Pointer textset_upper(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int textset_value_n(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer textset_value_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "textset_value_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.textset_value_n(arg0, arg1, arg2); + return GeneratedFunctions.textset_value_n(arg0, arg1); } /** @@ -119,7 +119,7 @@ public static int textset_value_n(Pointer arg0, int arg1, Pointer arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer textset_values(Pointer arg0) { + public static jnr.ffi.Pointer textset_values(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "textset_values requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer textset_values(Pointer arg0) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer textset_in(String arg0) { + public static jnr.ffi.Pointer textset_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "textset_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static Pointer textset_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String textset_out(Pointer arg0) { + public static java.lang.String textset_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "textset_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTstzSet.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTstzSet.java index 1c4c3b3..21f1bb3 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTstzSet.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTstzSet.java @@ -21,7 +21,7 @@ private MeosOpsTstzSet() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer tstzset_make(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tstzset_make(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzset_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer tstzset_make(Pointer arg0, int arg1) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tstzset_to_dateset(Pointer arg0) { + public static jnr.ffi.Pointer tstzset_to_dateset(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzset_to_dateset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer tstzset_to_dateset(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tstzset_to_stbox(Pointer arg0) { + public static jnr.ffi.Pointer tstzset_to_stbox(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzset_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer tstzset_to_stbox(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tstzset_end_value(Pointer arg0) { + public static java.time.OffsetDateTime tstzset_end_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzset_end_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static int tstzset_end_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tstzset_shift_scale(Pointer arg0, Pointer arg1, Pointer arg2) { + public static jnr.ffi.Pointer tstzset_shift_scale(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzset_shift_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer tstzset_shift_scale(Pointer arg0, Pointer arg1, Pointer ar *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tstzset_start_value(Pointer arg0) { + public static java.time.OffsetDateTime tstzset_start_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzset_start_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static int tstzset_start_value(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tstzset_tprecision(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer tstzset_tprecision(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, java.time.OffsetDateTime arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzset_tprecision requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,12 +119,12 @@ public static Pointer tstzset_tprecision(Pointer arg0, Pointer arg1, int arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tstzset_value_n(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer tstzset_value_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzset_value_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tstzset_value_n(arg0, arg1, arg2); + return GeneratedFunctions.tstzset_value_n(arg0, arg1); } /** @@ -133,7 +133,7 @@ public static int tstzset_value_n(Pointer arg0, int arg1, Pointer arg2) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tstzset_values(Pointer arg0) { + public static jnr.ffi.Pointer tstzset_values(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzset_values requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static Pointer tstzset_values(Pointer arg0) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tstzset_tcount_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tstzset_tcount_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzset_tcount_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static Pointer tstzset_tcount_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tstzset_in(String arg0) { + public static jnr.ffi.Pointer tstzset_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzset_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static Pointer tstzset_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String tstzset_out(Pointer arg0) { + public static java.lang.String tstzset_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzset_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTstzSpan.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTstzSpan.java index c53d734..addbfd3 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTstzSpan.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTstzSpan.java @@ -21,7 +21,7 @@ private MeosOpsTstzSpan() { /* utility */ } *

Object-model role: {@code constructor}.

*

Classification: constructor of instant/scalar

*/ - public static Pointer tstzspan_make(int arg0, int arg1, int arg2, int arg3) { + public static jnr.ffi.Pointer tstzspan_make(java.time.OffsetDateTime arg0, java.time.OffsetDateTime arg1, boolean arg2, boolean arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspan_make requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer tstzspan_make(int arg0, int arg1, int arg2, int arg3) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tstzspan_to_datespan(Pointer arg0) { + public static jnr.ffi.Pointer tstzspan_to_datespan(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspan_to_datespan requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer tstzspan_to_datespan(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tstzspan_to_stbox(Pointer arg0) { + public static jnr.ffi.Pointer tstzspan_to_stbox(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspan_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer tstzspan_to_stbox(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tstzspan_bins(Pointer arg0, Pointer arg1, int arg2, Pointer arg3) { + public static jnr.ffi.Pointer tstzspan_bins(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, java.time.OffsetDateTime arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspan_bins requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer tstzspan_bins(Pointer arg0, Pointer arg1, int arg2, Pointe *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tstzspan_duration(Pointer arg0) { + public static jnr.ffi.Pointer tstzspan_duration(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspan_duration requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static Pointer tstzspan_duration(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tstzspan_expand(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tstzspan_expand(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspan_expand requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static Pointer tstzspan_expand(Pointer arg0, Pointer arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tstzspan_lower(Pointer arg0) { + public static java.time.OffsetDateTime tstzspan_lower(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspan_lower requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static int tstzspan_lower(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tstzspan_shift_scale(Pointer arg0, Pointer arg1, Pointer arg2) { + public static jnr.ffi.Pointer tstzspan_shift_scale(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspan_shift_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer tstzspan_shift_scale(Pointer arg0, Pointer arg1, Pointer a *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tstzspan_tprecision(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer tstzspan_tprecision(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, java.time.OffsetDateTime arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspan_tprecision requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static Pointer tstzspan_tprecision(Pointer arg0, Pointer arg1, int arg2) *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tstzspan_upper(Pointer arg0) { + public static java.time.OffsetDateTime tstzspan_upper(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspan_upper requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,7 +161,7 @@ public static int tstzspan_upper(Pointer arg0) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tstzspan_tcount_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tstzspan_tcount_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspan_tcount_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -175,7 +175,7 @@ public static Pointer tstzspan_tcount_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tstzspan_in(String arg0) { + public static jnr.ffi.Pointer tstzspan_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspan_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static Pointer tstzspan_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String tstzspan_out(Pointer arg0) { + public static java.lang.String tstzspan_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspan_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTstzSpanSet.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTstzSpanSet.java index 81c0224..2869051 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTstzSpanSet.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/MeosOpsTstzSpanSet.java @@ -21,7 +21,7 @@ private MeosOpsTstzSpanSet() { /* utility */ } *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tstzspanset_to_datespanset(Pointer arg0) { + public static jnr.ffi.Pointer tstzspanset_to_datespanset(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspanset_to_datespanset requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -35,7 +35,7 @@ public static Pointer tstzspanset_to_datespanset(Pointer arg0) { *

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer tstzspanset_to_stbox(Pointer arg0) { + public static jnr.ffi.Pointer tstzspanset_to_stbox(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspanset_to_stbox requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -49,7 +49,7 @@ public static Pointer tstzspanset_to_stbox(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tstzspanset_bins(Pointer arg0, Pointer arg1, int arg2, Pointer arg3) { + public static jnr.ffi.Pointer tstzspanset_bins(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, java.time.OffsetDateTime arg2, jnr.ffi.Pointer arg3) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspanset_bins requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -63,7 +63,7 @@ public static Pointer tstzspanset_bins(Pointer arg0, Pointer arg1, int arg2, Poi *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tstzspanset_duration(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer tstzspanset_duration(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspanset_duration requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -77,7 +77,7 @@ public static Pointer tstzspanset_duration(Pointer arg0, int arg1) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tstzspanset_end_timestamptz(Pointer arg0) { + public static java.time.OffsetDateTime tstzspanset_end_timestamptz(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspanset_end_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -91,7 +91,7 @@ public static int tstzspanset_end_timestamptz(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tstzspanset_lower(Pointer arg0) { + public static java.time.OffsetDateTime tstzspanset_lower(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspanset_lower requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -105,7 +105,7 @@ public static int tstzspanset_lower(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tstzspanset_num_timestamps(Pointer arg0) { + public static int tstzspanset_num_timestamps(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspanset_num_timestamps requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -119,7 +119,7 @@ public static int tstzspanset_num_timestamps(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tstzspanset_shift_scale(Pointer arg0, Pointer arg1, Pointer arg2) { + public static jnr.ffi.Pointer tstzspanset_shift_scale(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspanset_shift_scale requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -133,7 +133,7 @@ public static Pointer tstzspanset_shift_scale(Pointer arg0, Pointer arg1, Pointe *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tstzspanset_start_timestamptz(Pointer arg0) { + public static java.time.OffsetDateTime tstzspanset_start_timestamptz(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspanset_start_timestamptz requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -147,7 +147,7 @@ public static int tstzspanset_start_timestamptz(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tstzspanset_timestamps(Pointer arg0) { + public static jnr.ffi.Pointer tstzspanset_timestamps(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspanset_timestamps requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -161,12 +161,12 @@ public static Pointer tstzspanset_timestamps(Pointer arg0) { *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tstzspanset_timestamptz_n(Pointer arg0, int arg1, Pointer arg2) { + public static jnr.ffi.Pointer tstzspanset_timestamptz_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspanset_timestamptz_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); } - return GeneratedFunctions.tstzspanset_timestamptz_n(arg0, arg1, arg2); + return GeneratedFunctions.tstzspanset_timestamptz_n(arg0, arg1); } /** @@ -175,7 +175,7 @@ public static int tstzspanset_timestamptz_n(Pointer arg0, int arg1, Pointer arg2 *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer tstzspanset_tprecision(Pointer arg0, Pointer arg1, int arg2) { + public static jnr.ffi.Pointer tstzspanset_tprecision(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, java.time.OffsetDateTime arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspanset_tprecision requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -189,7 +189,7 @@ public static Pointer tstzspanset_tprecision(Pointer arg0, Pointer arg1, int arg *

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static int tstzspanset_upper(Pointer arg0) { + public static java.time.OffsetDateTime tstzspanset_upper(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspanset_upper requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -203,7 +203,7 @@ public static int tstzspanset_upper(Pointer arg0) { *

Object-model role: {@code aggregate}.

*

Classification: role=aggregate

*/ - public static Pointer tstzspanset_tcount_transfn(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer tstzspanset_tcount_transfn(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspanset_tcount_transfn requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -217,7 +217,7 @@ public static Pointer tstzspanset_tcount_transfn(Pointer arg0, Pointer arg1) { *

Object-model role: {@code constructor}.

*

Classification: IO/serialization

*/ - public static Pointer tstzspanset_in(String arg0) { + public static jnr.ffi.Pointer tstzspanset_in(java.lang.String arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspanset_in requires libmeos — set -Dmobilityflink.meos.enabled=true"); @@ -231,7 +231,7 @@ public static Pointer tstzspanset_in(String arg0) { *

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String tstzspanset_out(Pointer arg0) { + public static java.lang.String tstzspanset_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( "tstzspanset_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/wirings/demo/MeosAllTiersCapstoneDemo.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/wirings/demo/MeosAllTiersCapstoneDemo.java index 420c613..7defc80 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/wirings/demo/MeosAllTiersCapstoneDemo.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/wirings/demo/MeosAllTiersCapstoneDemo.java @@ -150,7 +150,7 @@ public static void main(String[] args) throws Exception { Pointer eventTbox = MeosOpsTBox.tbox_in(evt.f2); Pointer newUnion = (prior == null) ? eventTbox - : MeosOpsFreeCore.union_tbox_tbox(prior, eventTbox, /*strict=*/0); + : MeosOpsFreeCore.union_tbox_tbox(prior, eventTbox, /*strict=*/false); Tuple4 output = Tuple4.of(evt.f0, evt.f1, MeosOpsTBox.tbox_out(newUnion, 6), evt.f3); return new MeosBoundedStateMap.MeosStep<>(newUnion, output); @@ -206,7 +206,7 @@ public static void main(String[] args) throws Exception { >((vehAgg, query, ctx) -> { Pointer aggTbox = MeosOpsTBox.tbox_in(vehAgg.f2); Pointer queryTbox = MeosOpsTBox.tbox_in(query.f1); - if (MeosOpsFreeCore.overlaps_tbox_tbox(aggTbox, queryTbox) != 0) { + if (MeosOpsFreeCore.overlaps_tbox_tbox(aggTbox, queryTbox)) { return Tuple5.of(vehAgg.f1, vehAgg.f0, vehAgg.f2, query.f1, vehAgg.f3); } return null; diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/wirings/demo/MeosBoundedStateDemoJob.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/wirings/demo/MeosBoundedStateDemoJob.java index c77b0e7..a36db73 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/wirings/demo/MeosBoundedStateDemoJob.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/wirings/demo/MeosBoundedStateDemoJob.java @@ -99,7 +99,7 @@ public static void main(String[] args) throws Exception { // Subsequent events: union prior with the new event's tbox. Pointer newUnion = (prior == null) ? eventTbox - : MeosOpsFreeCore.union_tbox_tbox(prior, eventTbox, /*strict=*/0); + : MeosOpsFreeCore.union_tbox_tbox(prior, eventTbox, /*strict=*/false); Tuple2 output = Tuple2.of(evt.f0, MeosOpsTBox.tbox_out(newUnion, 6)); return new MeosBoundedStateMap.MeosStep<>(newUnion, output); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/wirings/demo/MeosCrossStreamDemoJob.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/wirings/demo/MeosCrossStreamDemoJob.java index 97c3223..45a23d0 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/wirings/demo/MeosCrossStreamDemoJob.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/wirings/demo/MeosCrossStreamDemoJob.java @@ -119,7 +119,7 @@ public static void main(String[] args) throws Exception { >((left, right, ctx) -> { Pointer leftTbox = MeosOpsTBox.tbox_in(left.f2); Pointer rightTbox = MeosOpsTBox.tbox_in(right.f2); - if (MeosOpsFreeCore.overlaps_tbox_tbox(leftTbox, rightTbox) != 0) { + if (MeosOpsFreeCore.overlaps_tbox_tbox(leftTbox, rightTbox)) { return Tuple5.of(left.f0, left.f1, right.f1, ctx.getLeftTimestamp(), ctx.getRightTimestamp()); } diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/wirings/demo/MeosWindowedDemoJob.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/wirings/demo/MeosWindowedDemoJob.java index 8d5e1b6..246a53e 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/wirings/demo/MeosWindowedDemoJob.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/wirings/demo/MeosWindowedDemoJob.java @@ -116,7 +116,7 @@ public static void main(String[] args) throws Exception { Pointer evtTbox = MeosOpsTBox.tbox_in(evt.f1); agg = (agg == null) ? evtTbox - : MeosOpsFreeCore.union_tbox_tbox(agg, evtTbox, /*strict=*/0); + : MeosOpsFreeCore.union_tbox_tbox(agg, evtTbox, /*strict=*/false); count++; } String aggWkt = (agg == null) ? "(empty)" : MeosOpsTBox.tbox_out(agg, 6); diff --git a/flink-processor/src/main/java/org/mobilitydb/flink/meos/wirings/demo/MeosWiringsDemoJob.java b/flink-processor/src/main/java/org/mobilitydb/flink/meos/wirings/demo/MeosWiringsDemoJob.java index 0597a86..78883ce 100644 --- a/flink-processor/src/main/java/org/mobilitydb/flink/meos/wirings/demo/MeosWiringsDemoJob.java +++ b/flink-processor/src/main/java/org/mobilitydb/flink/meos/wirings/demo/MeosWiringsDemoJob.java @@ -89,7 +89,7 @@ public static void main(String[] args) throws Exception { // The query box is the constant WKT operand, parsed inside the predicate; // overlaps_tbox_tbox lives on MeosOpsFreeCore (free fn, not OO-classified). DataStream overlapping = normalized.filter( - MeosStatelessFilter.fromIntPredicate( + new MeosStatelessFilter( wkt -> MeosOpsFreeCore.overlaps_tbox_tbox( MeosOpsTBox.tbox_in(wkt), MeosOpsTBox.tbox_in(QUERY_TBOX_WKT)))); diff --git a/flink-processor/tools/codegen/regen_facade_from_jar.py b/flink-processor/tools/codegen/regen_facade_from_jar.py new file mode 100644 index 0000000..e8f5957 --- /dev/null +++ b/flink-processor/tools/codegen/regen_facade_from_jar.py @@ -0,0 +1,78 @@ +#!/usr/bin/env python3 +"""Re-derive the MeosOps* facade signatures from a JMEOS jar. + +The tier-aware generators (codegen-oo.py / codegen-free.py) emit the facade +from the MEOS-API streaming-relevance baseline. When only the binding jar is +available (e.g. bumping to a newly generated functions.GeneratedFunctions whose +type lowering changed), this tool re-emits each existing facade method with the +jar's current signature — preserving the per-class tier classification and the +Javadoc, changing only the parameter / return types to match the jar. It is the +signature-migration complement to the baseline generators, not a replacement. + +Run from flink-processor/: + python3 tools/codegen/regen_facade_from_jar.py \\ + src/main/java/org/mobilitydb/flink/meos jar/JMEOS.jar + +Forwarder facades emitted by their own scripts are left untouched here +(MeosOpsParityGaps via emit_gap_methods.py, MeosOpsSqlSurface via +emit_sql_surface.py, MeosOpsRuntime hand-maintained); re-run those against the +same jar afterwards. +""" +import re, glob, os, sys, subprocess + +EXCLUDE = {"MeosOpsParityGaps.java", "MeosOpsSqlSurface.java", "MeosOpsRuntime.java"} +_SIG = re.compile(r'public static (\S+) ([a-z_][A-Za-z0-9_]*)\(([^)]*)\)') +# method block: optional Javadoc + `public static (...) {` ... 4-space `}` +_BLOCK = re.compile( + r'(?P(?:[ ]{4}/\*\*.*?\*/\n)?)' + r'[ ]{4}public static [^\n;{]*?\b(?P[a-z_][A-Za-z0-9_]*)\([^)]*\)\s*\{' + r'.*?\n[ ]{4}\}\n', + re.S) + + +def jar_signatures(jar): + out = subprocess.run(["javap", "-classpath", jar, "-p", + "functions.GeneratedFunctions"], + capture_output=True, text=True).stdout + sigs = {} + for line in out.splitlines(): + m = _SIG.search(line) + if m: + ret, name, args = m.group(1), m.group(2), m.group(3).strip() + sigs[name] = (ret, [a.strip() for a in args.split(",")] if args else []) + return sigs + + +def emit(jd, name, sigs): + if name not in sigs: + return None + ret, types = sigs[name] + decl = ", ".join(f"{t} arg{i}" for i, t in enumerate(types)) + call = ", ".join(f"arg{i}" for i in range(len(types))) + retkw = "" if ret == "void" else "return " + return (f'{jd} public static {ret} {name}({decl}) {{\n' + f' if (!MEOS_AVAILABLE) {{\n' + f' throw new UnsupportedOperationException(\n' + f' "{name} requires libmeos — set -Dmobilityflink.meos.enabled=true");\n' + f' }}\n' + f' {retkw}GeneratedFunctions.{name}({call});\n' + f' }}\n') + + +def main(): + facade_dir, jar = sys.argv[1], sys.argv[2] + sigs = jar_signatures(jar) + changed = 0 + for f in sorted(glob.glob(os.path.join(facade_dir, "MeosOps*.java"))): + if os.path.basename(f) in EXCLUDE: + continue + txt = open(f).read() + new = _BLOCK.sub(lambda m: emit(m.group("jd"), m.group("name"), sigs) or m.group(0), txt) + if new != txt: + open(f, "w").write(new) + changed += 1 + print(f"jar signatures: {len(sigs)}; facade files rewritten: {changed}") + + +if __name__ == "__main__": + main() diff --git a/flink-processor/tools/parity/emit_sql_surface.py b/flink-processor/tools/parity/emit_sql_surface.py index f9e3286..75392bb 100644 --- a/flink-processor/tools/parity/emit_sql_surface.py +++ b/flink-processor/tools/parity/emit_sql_surface.py @@ -14,8 +14,8 @@ import re, os, sys, glob HERE = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) -INC = "/home/esteban/src/MobilityDB/meos/include" -MDB_SQL = "/home/esteban/src/MobilityDB/mobilitydb/sql" +INC = os.environ.get("MEOS_INCLUDE", "/home/esteban/src/MobilityDB/meos/include") +MDB_SQL = os.environ.get("MDB_SQL", "/home/esteban/src/MobilityDB/mobilitydb/sql") FACADE = os.path.join(HERE, "src/main/java/org/mobilitydb/flink/meos") OUT = os.path.join(FACADE, "MeosOpsSqlSurface.java")