diff --git a/kafka-streams-app/jar/JMEOS.jar b/kafka-streams-app/jar/JMEOS.jar index 2bc69e5..11520f8 100644 Binary files a/kafka-streams-app/jar/JMEOS.jar and b/kafka-streams-app/jar/JMEOS.jar differ diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsBigintSet.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsBigintSet.java index ce4e387..0c050b9 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsBigintSet.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsBigintSet.java @@ -21,10 +21,10 @@ 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"); + "bigintset_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintset_make(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "bigintset_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintset_end_value(arg0); } @@ -49,10 +49,10 @@ 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"); + "bigintset_shift_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintset_shift_scale(arg0, arg1, arg2, arg3, arg4); } @@ -63,10 +63,10 @@ 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"); + "bigintset_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintset_start_value(arg0); } @@ -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"); + "bigintset_value_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.bigintset_value_n(arg0, arg1, arg2); + return GeneratedFunctions.bigintset_value_n(arg0, arg1); } /** @@ -91,10 +91,10 @@ 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"); + "bigintset_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintset_values(arg0); } @@ -105,10 +105,10 @@ 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"); + "bigintset_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintset_in(arg0); } @@ -119,10 +119,10 @@ 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"); + "bigintset_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintset_out(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsBigintSpan.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsBigintSpan.java index 1a36894..f324c5b 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsBigintSpan.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsBigintSpan.java @@ -21,10 +21,10 @@ 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"); + "bigintspan_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintspan_make(arg0, arg1, arg2, arg3); } @@ -35,10 +35,10 @@ 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"); + "bigintspan_bins requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintspan_bins(arg0, arg1, arg2, arg3); } @@ -49,10 +49,10 @@ 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"); + "bigintspan_expand requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintspan_expand(arg0, arg1); } @@ -63,10 +63,10 @@ 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"); + "bigintspan_lower requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintspan_lower(arg0); } @@ -77,10 +77,10 @@ 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"); + "bigintspan_shift_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintspan_shift_scale(arg0, arg1, arg2, arg3, arg4); } @@ -91,10 +91,10 @@ 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"); + "bigintspan_upper requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintspan_upper(arg0); } @@ -105,10 +105,10 @@ 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"); + "bigintspan_width requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintspan_width(arg0); } @@ -119,10 +119,10 @@ 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"); + "bigintspan_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintspan_in(arg0); } @@ -133,10 +133,10 @@ 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"); + "bigintspan_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintspan_out(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsBigintSpanSet.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsBigintSpanSet.java index 78ea7d7..0ce3a6a 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsBigintSpanSet.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsBigintSpanSet.java @@ -21,10 +21,10 @@ 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"); + "bigintspanset_bins requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintspanset_bins(arg0, arg1, arg2, arg3); } @@ -35,10 +35,10 @@ 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"); + "bigintspanset_lower requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintspanset_lower(arg0); } @@ -49,10 +49,10 @@ 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"); + "bigintspanset_shift_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintspanset_shift_scale(arg0, arg1, arg2, arg3, arg4); } @@ -63,10 +63,10 @@ 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"); + "bigintspanset_upper requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintspanset_upper(arg0); } @@ -77,10 +77,10 @@ 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"); + "bigintspanset_width requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintspanset_width(arg0, arg1); } @@ -91,10 +91,10 @@ 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"); + "bigintspanset_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintspanset_in(arg0); } @@ -105,10 +105,10 @@ 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"); + "bigintspanset_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigintspanset_out(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsCbufferSet.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsCbufferSet.java index bd6c606..6c6983c 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsCbufferSet.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsCbufferSet.java @@ -21,10 +21,10 @@ 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"); + "cbufferset_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbufferset_make(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "cbufferset_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbufferset_end_value(arg0); } @@ -49,10 +49,10 @@ 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"); + "cbufferset_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbufferset_start_value(arg0); } @@ -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"); + "cbufferset_value_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.cbufferset_value_n(arg0, arg1, arg2); + return GeneratedFunctions.cbufferset_value_n(arg0, arg1); } /** @@ -77,10 +77,10 @@ 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"); + "cbufferset_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbufferset_values(arg0); } @@ -91,10 +91,10 @@ 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"); + "cbufferset_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbufferset_in(arg0); } @@ -105,10 +105,10 @@ 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"); + "cbufferset_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbufferset_out(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsDateSet.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsDateSet.java index d547ad8..f1c04fb 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsDateSet.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsDateSet.java @@ -21,10 +21,10 @@ 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"); + "dateset_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.dateset_make(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "dateset_to_tstzset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.dateset_to_tstzset(arg0); } @@ -49,10 +49,10 @@ 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"); + "dateset_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.dateset_end_value(arg0); } @@ -63,10 +63,10 @@ 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"); + "dateset_shift_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.dateset_shift_scale(arg0, arg1, arg2, arg3, arg4); } @@ -77,10 +77,10 @@ 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"); + "dateset_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.dateset_start_value(arg0); } @@ -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"); + "dateset_value_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.dateset_value_n(arg0, arg1, arg2); + return GeneratedFunctions.dateset_value_n(arg0, arg1); } /** @@ -105,10 +105,10 @@ 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"); + "dateset_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.dateset_values(arg0); } @@ -119,10 +119,10 @@ 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"); + "dateset_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.dateset_in(arg0); } @@ -133,10 +133,10 @@ 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"); + "dateset_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.dateset_out(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsDateSpan.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsDateSpan.java index 8cb756f..0e2ed44 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsDateSpan.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsDateSpan.java @@ -21,10 +21,10 @@ 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"); + "datespan_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.datespan_make(arg0, arg1, arg2, arg3); } @@ -35,10 +35,10 @@ 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"); + "datespan_to_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.datespan_to_tstzspan(arg0); } @@ -49,10 +49,10 @@ 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"); + "datespan_bins requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.datespan_bins(arg0, arg1, arg2, arg3); } @@ -63,10 +63,10 @@ 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"); + "datespan_duration requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.datespan_duration(arg0); } @@ -77,10 +77,10 @@ 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"); + "datespan_lower requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.datespan_lower(arg0); } @@ -91,10 +91,10 @@ 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"); + "datespan_shift_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.datespan_shift_scale(arg0, arg1, arg2, arg3, arg4); } @@ -105,10 +105,10 @@ 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"); + "datespan_upper requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.datespan_upper(arg0); } @@ -119,10 +119,10 @@ 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"); + "datespan_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.datespan_in(arg0); } @@ -133,10 +133,10 @@ 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"); + "datespan_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.datespan_out(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsDateSpanSet.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsDateSpanSet.java index 98a7c69..fccd3b1 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsDateSpanSet.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsDateSpanSet.java @@ -21,10 +21,10 @@ 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"); + "datespanset_to_tstzspanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.datespanset_to_tstzspanset(arg0); } @@ -35,10 +35,10 @@ 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"); + "datespanset_bins requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.datespanset_bins(arg0, arg1, arg2, arg3); } @@ -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"); + "datespanset_date_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.datespanset_date_n(arg0, arg1, arg2); + return GeneratedFunctions.datespanset_date_n(arg0, arg1); } /** @@ -63,10 +63,10 @@ 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"); + "datespanset_dates requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.datespanset_dates(arg0); } @@ -77,10 +77,10 @@ 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"); + "datespanset_duration requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.datespanset_duration(arg0, arg1); } @@ -91,10 +91,10 @@ 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"); + "datespanset_end_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.datespanset_end_date(arg0); } @@ -105,10 +105,10 @@ 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"); + "datespanset_num_dates requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.datespanset_num_dates(arg0); } @@ -119,10 +119,10 @@ 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"); + "datespanset_shift_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.datespanset_shift_scale(arg0, arg1, arg2, arg3, arg4); } @@ -133,10 +133,10 @@ 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"); + "datespanset_start_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.datespanset_start_date(arg0); } @@ -147,10 +147,10 @@ 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"); + "datespanset_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.datespanset_in(arg0); } @@ -161,10 +161,10 @@ 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"); + "datespanset_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.datespanset_out(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFloatSet.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFloatSet.java index 96cfa28..09bf68f 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFloatSet.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFloatSet.java @@ -21,10 +21,10 @@ 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"); + "floatset_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatset_make(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "floatset_to_intset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatset_to_intset(arg0); } @@ -49,10 +49,10 @@ 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"); + "floatset_ceil requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatset_ceil(arg0); } @@ -63,10 +63,10 @@ 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"); + "floatset_degrees requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatset_degrees(arg0, arg1); } @@ -77,10 +77,10 @@ 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"); + "floatset_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatset_end_value(arg0); } @@ -91,10 +91,10 @@ 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"); + "floatset_floor requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatset_floor(arg0); } @@ -105,10 +105,10 @@ 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"); + "floatset_radians requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatset_radians(arg0); } @@ -119,10 +119,10 @@ 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"); + "floatset_shift_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatset_shift_scale(arg0, arg1, arg2, arg3, arg4); } @@ -133,10 +133,10 @@ 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"); + "floatset_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatset_start_value(arg0); } @@ -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"); + "floatset_value_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.floatset_value_n(arg0, arg1, arg2); + return GeneratedFunctions.floatset_value_n(arg0, arg1); } /** @@ -161,10 +161,10 @@ 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"); + "floatset_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatset_values(arg0); } @@ -175,10 +175,10 @@ 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"); + "floatset_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatset_in(arg0); } @@ -189,10 +189,10 @@ 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"); + "floatset_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatset_out(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFloatSpan.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFloatSpan.java index 1bce278..425bfbc 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFloatSpan.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFloatSpan.java @@ -21,10 +21,10 @@ 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"); + "floatspan_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspan_make(arg0, arg1, arg2, arg3); } @@ -35,10 +35,10 @@ 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"); + "floatspan_to_intspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspan_to_intspan(arg0); } @@ -49,10 +49,10 @@ 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"); + "floatspan_bins requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspan_bins(arg0, arg1, arg2, arg3); } @@ -63,10 +63,10 @@ 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"); + "floatspan_ceil requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspan_ceil(arg0); } @@ -77,10 +77,10 @@ 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"); + "floatspan_degrees requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspan_degrees(arg0, arg1); } @@ -91,10 +91,10 @@ 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"); + "floatspan_expand requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspan_expand(arg0, arg1); } @@ -105,10 +105,10 @@ 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"); + "floatspan_floor requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspan_floor(arg0); } @@ -119,10 +119,10 @@ 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"); + "floatspan_lower requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspan_lower(arg0); } @@ -133,10 +133,10 @@ 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"); + "floatspan_radians requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspan_radians(arg0); } @@ -147,10 +147,10 @@ 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"); + "floatspan_round requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspan_round(arg0, arg1); } @@ -161,10 +161,10 @@ 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"); + "floatspan_shift_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspan_shift_scale(arg0, arg1, arg2, arg3, arg4); } @@ -175,10 +175,10 @@ 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"); + "floatspan_upper requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspan_upper(arg0); } @@ -189,10 +189,10 @@ 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"); + "floatspan_width requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspan_width(arg0); } @@ -203,10 +203,10 @@ 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"); + "floatspan_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspan_in(arg0); } @@ -217,10 +217,10 @@ 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"); + "floatspan_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspan_out(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFloatSpanSet.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFloatSpanSet.java index e1b6d5d..6a404ed 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFloatSpanSet.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFloatSpanSet.java @@ -21,10 +21,10 @@ 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"); + "floatspanset_to_intspanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspanset_to_intspanset(arg0); } @@ -35,10 +35,10 @@ 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"); + "floatspanset_bins requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspanset_bins(arg0, arg1, arg2, arg3); } @@ -49,10 +49,10 @@ 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"); + "floatspanset_ceil requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspanset_ceil(arg0); } @@ -63,10 +63,10 @@ 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"); + "floatspanset_degrees requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspanset_degrees(arg0, arg1); } @@ -77,10 +77,10 @@ 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"); + "floatspanset_floor requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspanset_floor(arg0); } @@ -91,10 +91,10 @@ 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"); + "floatspanset_lower requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspanset_lower(arg0); } @@ -105,10 +105,10 @@ 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"); + "floatspanset_radians requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspanset_radians(arg0); } @@ -119,10 +119,10 @@ 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"); + "floatspanset_round requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspanset_round(arg0, arg1); } @@ -133,10 +133,10 @@ 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"); + "floatspanset_shift_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspanset_shift_scale(arg0, arg1, arg2, arg3, arg4); } @@ -147,10 +147,10 @@ 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"); + "floatspanset_upper requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspanset_upper(arg0); } @@ -161,10 +161,10 @@ 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"); + "floatspanset_width requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspanset_width(arg0, arg1); } @@ -175,10 +175,10 @@ 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"); + "floatspanset_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspanset_in(arg0); } @@ -189,10 +189,10 @@ 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"); + "floatspanset_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.floatspanset_out(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeCbuffer.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeCbuffer.java index 11be48d..02cac3a 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeCbuffer.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeCbuffer.java @@ -22,10 +22,10 @@ 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"); + "cbuffer_cmp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_cmp(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "cbuffer_copy requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_copy(arg0); } @@ -48,10 +48,10 @@ 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"); + "cbuffer_eq requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_eq(arg0, arg1); } @@ -61,10 +61,10 @@ 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"); + "cbuffer_ge requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_ge(arg0, arg1); } @@ -74,10 +74,10 @@ 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"); + "cbuffer_gt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_gt(arg0, arg1); } @@ -87,10 +87,10 @@ 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"); + "cbuffer_hash requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_hash(arg0); } @@ -100,10 +100,10 @@ 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"); + "cbuffer_hash_extended requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_hash_extended(arg0, arg1); } @@ -113,10 +113,10 @@ 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"); + "cbuffer_le requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_le(arg0, arg1); } @@ -126,10 +126,10 @@ 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"); + "cbuffer_lt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_lt(arg0, arg1); } @@ -139,10 +139,10 @@ 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"); + "cbuffer_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_make(arg0, arg1); } @@ -152,10 +152,10 @@ 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"); + "cbuffer_ne requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_ne(arg0, arg1); } @@ -165,10 +165,10 @@ 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"); + "cbuffer_nsame requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_nsame(arg0, arg1); } @@ -178,10 +178,10 @@ 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"); + "cbuffer_point requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_point(arg0); } @@ -191,10 +191,10 @@ 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"); + "cbuffer_radius requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_radius(arg0); } @@ -204,10 +204,10 @@ 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"); + "cbuffer_round requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_round(arg0, arg1); } @@ -217,10 +217,10 @@ 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"); + "cbuffer_same requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_same(arg0, arg1); } @@ -230,10 +230,10 @@ 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"); + "cbuffer_set_srid requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } GeneratedFunctions.cbuffer_set_srid(arg0, arg1); } @@ -243,10 +243,10 @@ 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"); + "cbuffer_srid requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_srid(arg0); } @@ -256,10 +256,10 @@ 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"); + "cbuffer_timestamptz_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_timestamptz_to_stbox(arg0, arg1); } @@ -269,10 +269,10 @@ 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"); + "cbuffer_to_geom requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_to_geom(arg0); } @@ -282,10 +282,10 @@ 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"); + "cbuffer_to_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_to_set(arg0); } @@ -295,10 +295,10 @@ 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"); + "cbuffer_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_to_stbox(arg0); } @@ -308,10 +308,10 @@ 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"); + "cbuffer_transform requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_transform(arg0, arg1); } @@ -321,10 +321,10 @@ 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"); + "cbuffer_transform_pipeline requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_transform_pipeline(arg0, arg1, arg2, arg3); } @@ -334,10 +334,10 @@ 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"); + "cbuffer_tstzspan_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_tstzspan_to_stbox(arg0, arg1); } @@ -347,10 +347,10 @@ 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"); + "cbuffer_union_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_union_transfn(arg0, arg1); } @@ -360,10 +360,10 @@ 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"); + "cbufferarr_round requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbufferarr_round(arg0, arg1, arg2); } @@ -373,10 +373,10 @@ 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"); + "cbufferarr_to_geom requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbufferarr_to_geom(arg0, arg1); } @@ -386,10 +386,10 @@ 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"); + "contained_cbuffer_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_cbuffer_set(arg0, arg1); } @@ -399,10 +399,10 @@ 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"); + "contains_cbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_cbuffer_cbuffer(arg0, arg1); } @@ -412,10 +412,10 @@ 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"); + "contains_set_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_set_cbuffer(arg0, arg1); } @@ -425,10 +425,10 @@ 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"); + "covers_cbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.covers_cbuffer_cbuffer(arg0, arg1); } @@ -438,10 +438,10 @@ 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"); + "disjoint_cbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.disjoint_cbuffer_cbuffer(arg0, arg1); } @@ -451,10 +451,10 @@ 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"); + "dwithin_cbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.dwithin_cbuffer_cbuffer(arg0, arg1, arg2); } @@ -464,10 +464,10 @@ 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"); + "geom_to_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_to_cbuffer(arg0); } @@ -477,10 +477,10 @@ 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"); + "intersection_set_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_set_cbuffer(arg0, arg1); } @@ -490,10 +490,10 @@ 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"); + "intersects_cbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersects_cbuffer_cbuffer(arg0, arg1); } @@ -503,10 +503,10 @@ 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"); + "teq_cbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.teq_cbuffer_tcbuffer(arg0, arg1); } @@ -516,10 +516,10 @@ 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"); + "teq_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.teq_tcbuffer_cbuffer(arg0, arg1); } @@ -529,10 +529,10 @@ 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"); + "tne_cbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tne_cbuffer_tcbuffer(arg0, arg1); } @@ -542,10 +542,10 @@ 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"); + "tne_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tne_tcbuffer_cbuffer(arg0, arg1); } @@ -555,10 +555,10 @@ 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"); + "touches_cbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.touches_cbuffer_cbuffer(arg0, arg1); } @@ -568,10 +568,10 @@ 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"); + "union_set_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_set_cbuffer(arg0, arg1); } @@ -581,10 +581,10 @@ 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"); + "acontains_cbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.acontains_cbuffer_tcbuffer(arg0, arg1); } @@ -594,10 +594,10 @@ 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"); + "acontains_geo_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.acontains_geo_tcbuffer(arg0, arg1); } @@ -607,10 +607,10 @@ 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"); + "acontains_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.acontains_tcbuffer_cbuffer(arg0, arg1); } @@ -620,10 +620,10 @@ 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"); + "acontains_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.acontains_tcbuffer_geo(arg0, arg1); } @@ -633,10 +633,10 @@ 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"); + "acovers_cbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.acovers_cbuffer_tcbuffer(arg0, arg1); } @@ -646,10 +646,10 @@ 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"); + "acovers_geo_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.acovers_geo_tcbuffer(arg0, arg1); } @@ -659,10 +659,10 @@ 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"); + "acovers_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.acovers_tcbuffer_cbuffer(arg0, arg1); } @@ -672,10 +672,10 @@ 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"); + "acovers_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.acovers_tcbuffer_geo(arg0, arg1); } @@ -685,10 +685,10 @@ 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"); + "adisjoint_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adisjoint_tcbuffer_cbuffer(arg0, arg1); } @@ -698,10 +698,10 @@ 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"); + "adisjoint_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adisjoint_tcbuffer_geo(arg0, arg1); } @@ -711,10 +711,10 @@ 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"); + "adwithin_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adwithin_tcbuffer_cbuffer(arg0, arg1, arg2); } @@ -724,10 +724,10 @@ 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"); + "adwithin_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adwithin_tcbuffer_geo(arg0, arg1, arg2); } @@ -737,10 +737,10 @@ 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"); + "aintersects_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.aintersects_tcbuffer_cbuffer(arg0, arg1); } @@ -750,10 +750,10 @@ 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"); + "aintersects_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.aintersects_tcbuffer_geo(arg0, arg1); } @@ -763,10 +763,10 @@ 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"); + "atouches_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.atouches_tcbuffer_cbuffer(arg0, arg1); } @@ -776,10 +776,10 @@ 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"); + "atouches_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.atouches_tcbuffer_geo(arg0, arg1); } @@ -789,10 +789,10 @@ 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"); + "distance_cbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_cbuffer_cbuffer(arg0, arg1); } @@ -802,10 +802,10 @@ 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"); + "distance_cbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_cbuffer_geo(arg0, arg1); } @@ -815,10 +815,10 @@ 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"); + "distance_cbuffer_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_cbuffer_stbox(arg0, arg1); } @@ -828,10 +828,10 @@ 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"); + "econtains_cbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.econtains_cbuffer_tcbuffer(arg0, arg1); } @@ -841,10 +841,10 @@ 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"); + "econtains_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.econtains_tcbuffer_cbuffer(arg0, arg1); } @@ -854,10 +854,10 @@ 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"); + "econtains_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.econtains_tcbuffer_geo(arg0, arg1); } @@ -867,10 +867,10 @@ 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"); + "ecovers_cbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ecovers_cbuffer_tcbuffer(arg0, arg1); } @@ -880,10 +880,10 @@ 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"); + "ecovers_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ecovers_tcbuffer_cbuffer(arg0, arg1); } @@ -893,10 +893,10 @@ 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"); + "ecovers_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ecovers_tcbuffer_geo(arg0, arg1); } @@ -906,10 +906,10 @@ 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"); + "edisjoint_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.edisjoint_tcbuffer_cbuffer(arg0, arg1); } @@ -919,10 +919,10 @@ 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"); + "edisjoint_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.edisjoint_tcbuffer_geo(arg0, arg1); } @@ -932,10 +932,10 @@ 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"); + "edwithin_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.edwithin_tcbuffer_cbuffer(arg0, arg1, arg2); } @@ -945,10 +945,10 @@ 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"); + "edwithin_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.edwithin_tcbuffer_geo(arg0, arg1, arg2); } @@ -958,10 +958,10 @@ 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"); + "eintersects_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.eintersects_tcbuffer_cbuffer(arg0, arg1); } @@ -971,10 +971,10 @@ 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"); + "eintersects_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.eintersects_tcbuffer_geo(arg0, arg1); } @@ -984,10 +984,10 @@ 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"); + "etouches_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.etouches_tcbuffer_cbuffer(arg0, arg1); } @@ -997,10 +997,10 @@ 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"); + "etouches_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.etouches_tcbuffer_geo(arg0, arg1); } @@ -1010,10 +1010,10 @@ 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"); + "minus_cbuffer_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_cbuffer_set(arg0, arg1); } @@ -1023,10 +1023,10 @@ 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"); + "minus_set_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_set_cbuffer(arg0, arg1); } @@ -1036,10 +1036,10 @@ 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"); + "nad_cbuffer_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_cbuffer_stbox(arg0, arg1); } @@ -1049,10 +1049,10 @@ 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"); + "nad_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tcbuffer_cbuffer(arg0, arg1); } @@ -1062,10 +1062,10 @@ 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"); + "nad_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tcbuffer_geo(arg0, arg1); } @@ -1075,10 +1075,10 @@ 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"); + "nad_tcbuffer_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tcbuffer_stbox(arg0, arg1); } @@ -1088,10 +1088,10 @@ 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"); + "nai_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nai_tcbuffer_cbuffer(arg0, arg1); } @@ -1101,10 +1101,10 @@ 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"); + "nai_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nai_tcbuffer_geo(arg0, arg1); } @@ -1114,10 +1114,10 @@ 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"); + "shortestline_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.shortestline_tcbuffer_cbuffer(arg0, arg1); } @@ -1127,10 +1127,10 @@ 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"); + "shortestline_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.shortestline_tcbuffer_geo(arg0, arg1); } @@ -1140,10 +1140,10 @@ 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"); + "tcontains_cbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcontains_cbuffer_tcbuffer(arg0, arg1); } @@ -1153,10 +1153,10 @@ 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"); + "tcontains_geo_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcontains_geo_tcbuffer(arg0, arg1); } @@ -1166,10 +1166,10 @@ 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"); + "tcontains_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcontains_tcbuffer_cbuffer(arg0, arg1); } @@ -1179,10 +1179,10 @@ 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"); + "tcontains_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcontains_tcbuffer_geo(arg0, arg1); } @@ -1192,10 +1192,10 @@ 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"); + "tcovers_cbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcovers_cbuffer_tcbuffer(arg0, arg1); } @@ -1205,10 +1205,10 @@ 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"); + "tcovers_geo_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcovers_geo_tcbuffer(arg0, arg1); } @@ -1218,10 +1218,10 @@ 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"); + "tcovers_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcovers_tcbuffer_cbuffer(arg0, arg1); } @@ -1231,10 +1231,10 @@ 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"); + "tcovers_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcovers_tcbuffer_geo(arg0, arg1); } @@ -1244,10 +1244,10 @@ 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"); + "tdisjoint_cbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdisjoint_cbuffer_tcbuffer(arg0, arg1); } @@ -1257,10 +1257,10 @@ 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"); + "tdisjoint_geo_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdisjoint_geo_tcbuffer(arg0, arg1); } @@ -1270,10 +1270,10 @@ 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"); + "tdisjoint_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdisjoint_tcbuffer_cbuffer(arg0, arg1); } @@ -1283,10 +1283,10 @@ 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"); + "tdisjoint_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdisjoint_tcbuffer_geo(arg0, arg1); } @@ -1296,10 +1296,10 @@ 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"); + "tdistance_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdistance_tcbuffer_cbuffer(arg0, arg1); } @@ -1309,10 +1309,10 @@ 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"); + "tdistance_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdistance_tcbuffer_geo(arg0, arg1); } @@ -1322,10 +1322,10 @@ 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"); + "tdwithin_geo_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdwithin_geo_tcbuffer(arg0, arg1, arg2); } @@ -1335,10 +1335,10 @@ 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"); + "tdwithin_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdwithin_tcbuffer_cbuffer(arg0, arg1, arg2); } @@ -1348,10 +1348,10 @@ 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"); + "tdwithin_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdwithin_tcbuffer_geo(arg0, arg1, arg2); } @@ -1361,10 +1361,10 @@ 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"); + "tintersects_cbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tintersects_cbuffer_tcbuffer(arg0, arg1); } @@ -1374,10 +1374,10 @@ 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"); + "tintersects_geo_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tintersects_geo_tcbuffer(arg0, arg1); } @@ -1387,10 +1387,10 @@ 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"); + "tintersects_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tintersects_tcbuffer_cbuffer(arg0, arg1); } @@ -1400,10 +1400,10 @@ 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"); + "tintersects_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tintersects_tcbuffer_geo(arg0, arg1); } @@ -1413,10 +1413,10 @@ 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"); + "ttouches_cbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttouches_cbuffer_tcbuffer(arg0, arg1); } @@ -1426,10 +1426,10 @@ 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"); + "ttouches_geo_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttouches_geo_tcbuffer(arg0, arg1); } @@ -1439,10 +1439,10 @@ 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"); + "ttouches_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttouches_tcbuffer_cbuffer(arg0, arg1); } @@ -1452,10 +1452,10 @@ 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"); + "ttouches_tcbuffer_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttouches_tcbuffer_geo(arg0, arg1); } @@ -1465,10 +1465,10 @@ 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"); + "always_eq_cbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_cbuffer_tcbuffer(arg0, arg1); } @@ -1478,10 +1478,10 @@ 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"); + "always_eq_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_tcbuffer_cbuffer(arg0, arg1); } @@ -1491,10 +1491,10 @@ 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"); + "always_ne_cbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_cbuffer_tcbuffer(arg0, arg1); } @@ -1504,10 +1504,10 @@ 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"); + "always_ne_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_tcbuffer_cbuffer(arg0, arg1); } @@ -1517,10 +1517,10 @@ 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"); + "ever_eq_cbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_cbuffer_tcbuffer(arg0, arg1); } @@ -1530,10 +1530,10 @@ 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"); + "ever_eq_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_tcbuffer_cbuffer(arg0, arg1); } @@ -1543,10 +1543,10 @@ 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"); + "ever_ne_cbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_cbuffer_tcbuffer(arg0, arg1); } @@ -1556,10 +1556,10 @@ 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"); + "ever_ne_tcbuffer_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_tcbuffer_cbuffer(arg0, arg1); } @@ -1569,10 +1569,10 @@ 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"); + "adisjoint_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adisjoint_tcbuffer_tcbuffer(arg0, arg1); } @@ -1582,10 +1582,10 @@ 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"); + "adwithin_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adwithin_tcbuffer_tcbuffer(arg0, arg1, arg2); } @@ -1595,10 +1595,10 @@ 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"); + "aintersects_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.aintersects_tcbuffer_tcbuffer(arg0, arg1); } @@ -1608,10 +1608,10 @@ 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"); + "always_eq_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_tcbuffer_tcbuffer(arg0, arg1); } @@ -1621,10 +1621,10 @@ 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"); + "always_ne_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_tcbuffer_tcbuffer(arg0, arg1); } @@ -1634,10 +1634,10 @@ 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"); + "atouches_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.atouches_tcbuffer_tcbuffer(arg0, arg1); } @@ -1647,10 +1647,10 @@ 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"); + "ecovers_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ecovers_tcbuffer_tcbuffer(arg0, arg1); } @@ -1660,10 +1660,10 @@ 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"); + "edwithin_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.edwithin_tcbuffer_tcbuffer(arg0, arg1, arg2); } @@ -1673,10 +1673,10 @@ 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"); + "eintersects_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.eintersects_tcbuffer_tcbuffer(arg0, arg1); } @@ -1686,10 +1686,10 @@ 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"); + "etouches_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.etouches_tcbuffer_tcbuffer(arg0, arg1); } @@ -1699,10 +1699,10 @@ 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"); + "ever_eq_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_tcbuffer_tcbuffer(arg0, arg1); } @@ -1712,10 +1712,10 @@ 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"); + "ever_ne_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_tcbuffer_tcbuffer(arg0, arg1); } @@ -1725,10 +1725,10 @@ 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"); + "nad_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tcbuffer_tcbuffer(arg0, arg1); } @@ -1738,10 +1738,10 @@ 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"); + "nai_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nai_tcbuffer_tcbuffer(arg0, arg1); } @@ -1751,10 +1751,10 @@ 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"); + "shortestline_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.shortestline_tcbuffer_tcbuffer(arg0, arg1); } @@ -1764,10 +1764,10 @@ 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"); + "tcontains_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcontains_tcbuffer_tcbuffer(arg0, arg1); } @@ -1777,10 +1777,10 @@ 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"); + "tcovers_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcovers_tcbuffer_tcbuffer(arg0, arg1); } @@ -1790,10 +1790,10 @@ 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"); + "tdisjoint_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdisjoint_tcbuffer_tcbuffer(arg0, arg1); } @@ -1803,10 +1803,10 @@ 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"); + "tdistance_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdistance_tcbuffer_tcbuffer(arg0, arg1); } @@ -1816,10 +1816,10 @@ 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"); + "tdwithin_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdwithin_tcbuffer_tcbuffer(arg0, arg1, arg2); } @@ -1829,10 +1829,10 @@ 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"); + "tintersects_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tintersects_tcbuffer_tcbuffer(arg0, arg1); } @@ -1842,10 +1842,10 @@ 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"); + "ttouches_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttouches_tcbuffer_tcbuffer(arg0, arg1); } @@ -1855,10 +1855,10 @@ 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"); + "cbuffer_as_ewkt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_as_ewkt(arg0, arg1); } @@ -1868,10 +1868,10 @@ 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"); + "cbuffer_as_hexwkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_as_hexwkb(arg0, arg1, arg2); } @@ -1881,10 +1881,10 @@ 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"); + "cbuffer_as_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_as_text(arg0, arg1); } @@ -1894,10 +1894,10 @@ 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"); + "cbuffer_as_wkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_as_wkb(arg0, arg1); } @@ -1907,10 +1907,10 @@ 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"); + "cbuffer_from_hexwkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_from_hexwkb(arg0); } @@ -1920,10 +1920,10 @@ 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"); + "cbuffer_from_wkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_from_wkb(arg0, arg1); } @@ -1933,10 +1933,10 @@ 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"); + "cbuffer_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_in(arg0); } @@ -1946,10 +1946,10 @@ 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"); + "cbuffer_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cbuffer_out(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeCore.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeCore.java index 5bb9d21..23bf6b6 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeCore.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeCore.java @@ -26,7 +26,7 @@ private MeosOpsFreeCore() { /* utility */ } public static int add_date_int(int arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "add_date_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "add_date_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.add_date_int(arg0, arg1); } @@ -36,10 +36,10 @@ 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"); + "add_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.add_float_tfloat(arg0, arg1); } @@ -49,10 +49,10 @@ 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"); + "add_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.add_int_tint(arg0, arg1); } @@ -62,10 +62,10 @@ 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"); + "add_interval_interval requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.add_interval_interval(arg0, arg1); } @@ -75,10 +75,10 @@ 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"); + "add_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.add_tfloat_float(arg0, arg1); } @@ -88,10 +88,10 @@ 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"); + "add_timestamptz_interval requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.add_timestamptz_interval(arg0, arg1); } @@ -101,10 +101,10 @@ 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"); + "add_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.add_tint_int(arg0, arg1); } @@ -114,10 +114,10 @@ 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"); + "add_tnumber_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.add_tnumber_tnumber(arg0, arg1); } @@ -127,10 +127,10 @@ 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"); + "adjacent_span_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_span_bigint(arg0, arg1); } @@ -140,10 +140,10 @@ 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"); + "adjacent_span_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_span_date(arg0, arg1); } @@ -153,10 +153,10 @@ 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"); + "adjacent_span_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_span_float(arg0, arg1); } @@ -166,10 +166,10 @@ 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"); + "adjacent_span_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_span_int(arg0, arg1); } @@ -179,10 +179,10 @@ 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"); + "adjacent_span_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_span_span(arg0, arg1); } @@ -192,10 +192,10 @@ 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"); + "adjacent_span_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_span_spanset(arg0, arg1); } @@ -205,10 +205,10 @@ 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"); + "adjacent_span_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_span_timestamptz(arg0, arg1); } @@ -218,10 +218,10 @@ 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"); + "adjacent_spanset_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_spanset_bigint(arg0, arg1); } @@ -231,10 +231,10 @@ 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"); + "adjacent_spanset_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_spanset_date(arg0, arg1); } @@ -244,10 +244,10 @@ 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"); + "adjacent_spanset_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_spanset_float(arg0, arg1); } @@ -257,10 +257,10 @@ 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"); + "adjacent_spanset_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_spanset_int(arg0, arg1); } @@ -270,10 +270,10 @@ 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"); + "adjacent_spanset_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_spanset_span(arg0, arg1); } @@ -283,10 +283,10 @@ 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"); + "adjacent_spanset_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_spanset_spanset(arg0, arg1); } @@ -296,10 +296,10 @@ 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"); + "adjacent_spanset_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_spanset_timestamptz(arg0, arg1); } @@ -309,10 +309,10 @@ 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"); + "adjacent_tbox_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_tbox_tbox(arg0, arg1); } @@ -322,10 +322,10 @@ 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"); + "adjacent_tbox_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_tbox_tnumber(arg0, arg1); } @@ -335,10 +335,10 @@ 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"); + "after_date_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_date_set(arg0, arg1); } @@ -348,10 +348,10 @@ 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"); + "after_date_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_date_span(arg0, arg1); } @@ -361,10 +361,10 @@ 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"); + "after_date_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_date_spanset(arg0, arg1); } @@ -374,10 +374,10 @@ 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"); + "after_set_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_set_date(arg0, arg1); } @@ -387,10 +387,10 @@ 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"); + "after_set_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_set_timestamptz(arg0, arg1); } @@ -400,10 +400,10 @@ 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"); + "after_span_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_span_date(arg0, arg1); } @@ -413,10 +413,10 @@ 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"); + "after_span_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_span_timestamptz(arg0, arg1); } @@ -426,10 +426,10 @@ 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"); + "after_spanset_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_spanset_date(arg0, arg1); } @@ -439,10 +439,10 @@ 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"); + "after_spanset_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_spanset_timestamptz(arg0, arg1); } @@ -452,10 +452,10 @@ 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"); + "after_tbox_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_tbox_tbox(arg0, arg1); } @@ -465,10 +465,10 @@ 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"); + "after_tbox_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_tbox_tnumber(arg0, arg1); } @@ -478,10 +478,10 @@ 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"); + "after_timestamptz_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_timestamptz_set(arg0, arg1); } @@ -491,10 +491,10 @@ 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"); + "after_timestamptz_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_timestamptz_span(arg0, arg1); } @@ -504,10 +504,10 @@ 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"); + "after_timestamptz_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_timestamptz_spanset(arg0, arg1); } @@ -517,10 +517,10 @@ 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"); + "before_date_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_date_set(arg0, arg1); } @@ -530,10 +530,10 @@ 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"); + "before_date_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_date_span(arg0, arg1); } @@ -543,10 +543,10 @@ 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"); + "before_date_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_date_spanset(arg0, arg1); } @@ -556,10 +556,10 @@ 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"); + "before_set_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_set_date(arg0, arg1); } @@ -569,10 +569,10 @@ 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"); + "before_set_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_set_timestamptz(arg0, arg1); } @@ -582,10 +582,10 @@ 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"); + "before_span_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_span_date(arg0, arg1); } @@ -595,10 +595,10 @@ 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"); + "before_span_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_span_timestamptz(arg0, arg1); } @@ -608,10 +608,10 @@ 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"); + "before_spanset_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_spanset_date(arg0, arg1); } @@ -621,10 +621,10 @@ 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"); + "before_spanset_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_spanset_timestamptz(arg0, arg1); } @@ -634,10 +634,10 @@ 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"); + "before_tbox_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_tbox_tbox(arg0, arg1); } @@ -647,10 +647,10 @@ 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"); + "before_tbox_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_tbox_tnumber(arg0, arg1); } @@ -660,10 +660,10 @@ 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"); + "before_timestamptz_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_timestamptz_set(arg0, arg1); } @@ -673,10 +673,10 @@ 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"); + "before_timestamptz_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_timestamptz_span(arg0, arg1); } @@ -686,10 +686,10 @@ 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"); + "before_timestamptz_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_timestamptz_spanset(arg0, arg1); } @@ -699,10 +699,10 @@ 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"); + "bigint_extent_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigint_extent_transfn(arg0, arg1); } @@ -712,10 +712,10 @@ 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"); + "bigint_get_bin requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigint_get_bin(arg0, arg1, arg2); } @@ -725,10 +725,10 @@ 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"); + "bigint_to_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigint_to_set(arg0); } @@ -738,10 +738,10 @@ 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"); + "bigint_to_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigint_to_span(arg0); } @@ -751,10 +751,10 @@ 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"); + "bigint_to_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigint_to_spanset(arg0); } @@ -764,10 +764,10 @@ 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"); + "bigint_union_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bigint_union_transfn(arg0, arg1); } @@ -777,10 +777,10 @@ 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"); + "contained_bigint_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_bigint_set(arg0, arg1); } @@ -790,10 +790,10 @@ 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"); + "contained_bigint_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_bigint_span(arg0, arg1); } @@ -803,10 +803,10 @@ 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"); + "contained_bigint_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_bigint_spanset(arg0, arg1); } @@ -816,10 +816,10 @@ 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"); + "contained_date_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_date_set(arg0, arg1); } @@ -829,10 +829,10 @@ 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"); + "contained_date_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_date_span(arg0, arg1); } @@ -842,10 +842,10 @@ 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"); + "contained_date_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_date_spanset(arg0, arg1); } @@ -855,10 +855,10 @@ 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"); + "contained_float_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_float_set(arg0, arg1); } @@ -868,10 +868,10 @@ 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"); + "contained_float_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_float_span(arg0, arg1); } @@ -881,10 +881,10 @@ 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"); + "contained_float_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_float_spanset(arg0, arg1); } @@ -894,10 +894,10 @@ 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"); + "contained_int_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_int_set(arg0, arg1); } @@ -907,10 +907,10 @@ 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"); + "contained_int_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_int_span(arg0, arg1); } @@ -920,10 +920,10 @@ 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"); + "contained_int_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_int_spanset(arg0, arg1); } @@ -933,10 +933,10 @@ 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"); + "contained_set_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_set_set(arg0, arg1); } @@ -946,10 +946,10 @@ 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"); + "contained_span_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_span_span(arg0, arg1); } @@ -959,10 +959,10 @@ 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"); + "contained_span_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_span_spanset(arg0, arg1); } @@ -972,10 +972,10 @@ 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"); + "contained_spanset_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_spanset_span(arg0, arg1); } @@ -985,10 +985,10 @@ 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"); + "contained_spanset_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_spanset_spanset(arg0, arg1); } @@ -998,10 +998,10 @@ 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"); + "contained_tbox_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_tbox_tbox(arg0, arg1); } @@ -1011,10 +1011,10 @@ 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"); + "contained_tbox_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_tbox_tnumber(arg0, arg1); } @@ -1024,10 +1024,10 @@ 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"); + "contained_text_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_text_set(arg0, arg1); } @@ -1037,10 +1037,10 @@ 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"); + "contained_timestamptz_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_timestamptz_set(arg0, arg1); } @@ -1050,10 +1050,10 @@ 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"); + "contained_timestamptz_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_timestamptz_span(arg0, arg1); } @@ -1063,10 +1063,10 @@ 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"); + "contained_timestamptz_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_timestamptz_spanset(arg0, arg1); } @@ -1076,10 +1076,10 @@ 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"); + "contains_set_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_set_bigint(arg0, arg1); } @@ -1089,10 +1089,10 @@ 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"); + "contains_set_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_set_date(arg0, arg1); } @@ -1102,10 +1102,10 @@ 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"); + "contains_set_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_set_float(arg0, arg1); } @@ -1115,10 +1115,10 @@ 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"); + "contains_set_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_set_int(arg0, arg1); } @@ -1128,10 +1128,10 @@ 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"); + "contains_set_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_set_set(arg0, arg1); } @@ -1141,10 +1141,10 @@ 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"); + "contains_set_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_set_text(arg0, arg1); } @@ -1154,10 +1154,10 @@ 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"); + "contains_set_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_set_timestamptz(arg0, arg1); } @@ -1167,10 +1167,10 @@ 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"); + "contains_span_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_span_bigint(arg0, arg1); } @@ -1180,10 +1180,10 @@ 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"); + "contains_span_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_span_date(arg0, arg1); } @@ -1193,10 +1193,10 @@ 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"); + "contains_span_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_span_float(arg0, arg1); } @@ -1206,10 +1206,10 @@ 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"); + "contains_span_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_span_int(arg0, arg1); } @@ -1219,10 +1219,10 @@ 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"); + "contains_span_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_span_span(arg0, arg1); } @@ -1232,10 +1232,10 @@ 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"); + "contains_span_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_span_spanset(arg0, arg1); } @@ -1245,10 +1245,10 @@ 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"); + "contains_span_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_span_timestamptz(arg0, arg1); } @@ -1258,10 +1258,10 @@ 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"); + "contains_spanset_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_spanset_bigint(arg0, arg1); } @@ -1271,10 +1271,10 @@ 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"); + "contains_spanset_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_spanset_date(arg0, arg1); } @@ -1284,10 +1284,10 @@ 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"); + "contains_spanset_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_spanset_float(arg0, arg1); } @@ -1297,10 +1297,10 @@ 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"); + "contains_spanset_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_spanset_int(arg0, arg1); } @@ -1310,10 +1310,10 @@ 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"); + "contains_spanset_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_spanset_span(arg0, arg1); } @@ -1323,10 +1323,10 @@ 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"); + "contains_spanset_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_spanset_spanset(arg0, arg1); } @@ -1336,10 +1336,10 @@ 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"); + "contains_spanset_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_spanset_timestamptz(arg0, arg1); } @@ -1349,10 +1349,10 @@ 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"); + "contains_tbox_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_tbox_tbox(arg0, arg1); } @@ -1362,10 +1362,10 @@ 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"); + "contains_tbox_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_tbox_tnumber(arg0, arg1); } @@ -1375,10 +1375,10 @@ 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"); + "date_extent_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.date_extent_transfn(arg0, arg1); } @@ -1388,10 +1388,10 @@ 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"); + "date_get_bin requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.date_get_bin(arg0, arg1, arg2); } @@ -1401,10 +1401,10 @@ 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"); + "date_to_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.date_to_set(arg0); } @@ -1414,10 +1414,10 @@ 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"); + "date_to_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.date_to_span(arg0); } @@ -1427,10 +1427,10 @@ 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"); + "date_to_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.date_to_spanset(arg0); } @@ -1440,10 +1440,10 @@ 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"); + "date_to_timestamp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.date_to_timestamp(arg0); } @@ -1453,10 +1453,10 @@ 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"); + "date_to_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.date_to_timestamptz(arg0); } @@ -1466,10 +1466,10 @@ 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"); + "date_union_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.date_union_transfn(arg0, arg1); } @@ -1479,10 +1479,10 @@ 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"); + "div_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.div_float_tfloat(arg0, arg1); } @@ -1492,10 +1492,10 @@ 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"); + "div_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.div_int_tint(arg0, arg1); } @@ -1505,10 +1505,10 @@ 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"); + "div_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.div_tfloat_float(arg0, arg1); } @@ -1518,10 +1518,10 @@ 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"); + "div_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.div_tint_int(arg0, arg1); } @@ -1531,10 +1531,10 @@ 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"); + "div_tnumber_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.div_tnumber_tnumber(arg0, arg1); } @@ -1547,7 +1547,7 @@ public static Pointer div_tnumber_tnumber(Pointer arg0, Pointer arg1) { public static double float_angular_difference(double arg0, double arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "float_angular_difference requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "float_angular_difference requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.float_angular_difference(arg0, arg1); } @@ -1557,10 +1557,10 @@ 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"); + "float_degrees requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.float_degrees(arg0, arg1); } @@ -1573,7 +1573,7 @@ public static double float_degrees(double arg0, int arg1) { public static double float_exp(double arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "float_exp requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "float_exp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.float_exp(arg0); } @@ -1583,10 +1583,10 @@ 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"); + "float_extent_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.float_extent_transfn(arg0, arg1); } @@ -1599,7 +1599,7 @@ public static Pointer float_extent_transfn(Pointer arg0, double arg1) { public static double float_get_bin(double arg0, double arg1, double arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "float_get_bin requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "float_get_bin requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.float_get_bin(arg0, arg1, arg2); } @@ -1612,7 +1612,7 @@ public static double float_get_bin(double arg0, double arg1, double arg2) { public static double float_ln(double arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "float_ln requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "float_ln requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.float_ln(arg0); } @@ -1625,7 +1625,7 @@ public static double float_ln(double arg0) { public static double float_log10(double arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "float_log10 requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "float_log10 requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.float_log10(arg0); } @@ -1638,7 +1638,7 @@ public static double float_log10(double arg0) { public static double float_round(double arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "float_round requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "float_round requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.float_round(arg0, arg1); } @@ -1648,10 +1648,10 @@ 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"); + "float_timestamptz_to_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.float_timestamptz_to_tbox(arg0, arg1); } @@ -1661,10 +1661,10 @@ 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"); + "float_to_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.float_to_set(arg0); } @@ -1674,10 +1674,10 @@ 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"); + "float_to_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.float_to_span(arg0); } @@ -1687,10 +1687,10 @@ 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"); + "float_to_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.float_to_spanset(arg0); } @@ -1700,10 +1700,10 @@ 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"); + "float_to_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.float_to_tbox(arg0); } @@ -1713,10 +1713,10 @@ 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"); + "float_tstzspan_to_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.float_tstzspan_to_tbox(arg0, arg1); } @@ -1726,10 +1726,10 @@ 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"); + "float_union_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.float_union_transfn(arg0, arg1); } @@ -1742,7 +1742,7 @@ public static Pointer float_union_transfn(Pointer arg0, double arg1) { public static int int32_cmp(int arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "int32_cmp requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "int32_cmp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.int32_cmp(arg0, arg1); } @@ -1752,10 +1752,10 @@ 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"); + "int64_cmp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.int64_cmp(arg0, arg1); } @@ -1765,10 +1765,10 @@ 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"); + "int_extent_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.int_extent_transfn(arg0, arg1); } @@ -1781,7 +1781,7 @@ public static Pointer int_extent_transfn(Pointer arg0, int arg1) { public static int int_get_bin(int arg0, int arg1, int arg2) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "int_get_bin requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "int_get_bin requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.int_get_bin(arg0, arg1, arg2); } @@ -1791,10 +1791,10 @@ 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"); + "int_timestamptz_to_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.int_timestamptz_to_tbox(arg0, arg1); } @@ -1804,10 +1804,10 @@ 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"); + "int_to_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.int_to_set(arg0); } @@ -1817,10 +1817,10 @@ 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"); + "int_to_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.int_to_span(arg0); } @@ -1830,10 +1830,10 @@ 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"); + "int_to_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.int_to_spanset(arg0); } @@ -1843,10 +1843,10 @@ 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"); + "int_to_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.int_to_tbox(arg0); } @@ -1856,10 +1856,10 @@ 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"); + "int_tstzspan_to_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.int_tstzspan_to_tbox(arg0, arg1); } @@ -1869,10 +1869,10 @@ 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"); + "int_union_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.int_union_transfn(arg0, arg1); } @@ -1882,10 +1882,10 @@ 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"); + "intersection_bigint_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_bigint_set(arg0, arg1); } @@ -1895,10 +1895,10 @@ 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"); + "intersection_date_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_date_set(arg0, arg1); } @@ -1908,10 +1908,10 @@ 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"); + "intersection_float_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_float_set(arg0, arg1); } @@ -1921,10 +1921,10 @@ 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"); + "intersection_int_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_int_set(arg0, arg1); } @@ -1934,10 +1934,10 @@ 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"); + "intersection_set_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_set_bigint(arg0, arg1); } @@ -1947,10 +1947,10 @@ 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"); + "intersection_set_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_set_date(arg0, arg1); } @@ -1960,10 +1960,10 @@ 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"); + "intersection_set_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_set_float(arg0, arg1); } @@ -1973,10 +1973,10 @@ 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"); + "intersection_set_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_set_int(arg0, arg1); } @@ -1986,10 +1986,10 @@ 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"); + "intersection_set_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_set_set(arg0, arg1); } @@ -1999,10 +1999,10 @@ 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"); + "intersection_set_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_set_text(arg0, arg1); } @@ -2012,10 +2012,10 @@ 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"); + "intersection_set_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_set_timestamptz(arg0, arg1); } @@ -2025,10 +2025,10 @@ 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"); + "intersection_span_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_span_bigint(arg0, arg1); } @@ -2038,10 +2038,10 @@ 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"); + "intersection_span_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_span_date(arg0, arg1); } @@ -2051,10 +2051,10 @@ 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"); + "intersection_span_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_span_float(arg0, arg1); } @@ -2064,10 +2064,10 @@ 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"); + "intersection_span_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_span_int(arg0, arg1); } @@ -2077,10 +2077,10 @@ 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"); + "intersection_span_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_span_span(arg0, arg1); } @@ -2090,10 +2090,10 @@ 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"); + "intersection_span_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_span_spanset(arg0, arg1); } @@ -2103,10 +2103,10 @@ 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"); + "intersection_span_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_span_timestamptz(arg0, arg1); } @@ -2116,10 +2116,10 @@ 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"); + "intersection_spanset_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_spanset_bigint(arg0, arg1); } @@ -2129,10 +2129,10 @@ 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"); + "intersection_spanset_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_spanset_date(arg0, arg1); } @@ -2142,10 +2142,10 @@ 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"); + "intersection_spanset_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_spanset_float(arg0, arg1); } @@ -2155,10 +2155,10 @@ 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"); + "intersection_spanset_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_spanset_int(arg0, arg1); } @@ -2168,10 +2168,10 @@ 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"); + "intersection_spanset_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_spanset_span(arg0, arg1); } @@ -2181,10 +2181,10 @@ 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"); + "intersection_spanset_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_spanset_spanset(arg0, arg1); } @@ -2194,10 +2194,10 @@ 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"); + "intersection_spanset_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_spanset_timestamptz(arg0, arg1); } @@ -2207,10 +2207,10 @@ 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"); + "intersection_tbox_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_tbox_tbox(arg0, arg1); } @@ -2220,10 +2220,10 @@ 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"); + "intersection_text_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_text_set(arg0, arg1); } @@ -2233,10 +2233,10 @@ 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"); + "intersection_timestamptz_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_timestamptz_set(arg0, arg1); } @@ -2246,10 +2246,10 @@ 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"); + "interval_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.interval_make(arg0, arg1, arg2, arg3, arg4, arg5, arg6); } @@ -2259,10 +2259,10 @@ 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"); + "left_bigint_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_bigint_set(arg0, arg1); } @@ -2272,10 +2272,10 @@ 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"); + "left_bigint_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_bigint_span(arg0, arg1); } @@ -2285,10 +2285,10 @@ 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"); + "left_bigint_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_bigint_spanset(arg0, arg1); } @@ -2298,10 +2298,10 @@ 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"); + "left_float_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_float_set(arg0, arg1); } @@ -2311,10 +2311,10 @@ 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"); + "left_float_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_float_span(arg0, arg1); } @@ -2324,10 +2324,10 @@ 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"); + "left_float_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_float_spanset(arg0, arg1); } @@ -2337,10 +2337,10 @@ 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"); + "left_int_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_int_set(arg0, arg1); } @@ -2350,10 +2350,10 @@ 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"); + "left_int_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_int_span(arg0, arg1); } @@ -2363,10 +2363,10 @@ 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"); + "left_int_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_int_spanset(arg0, arg1); } @@ -2376,10 +2376,10 @@ 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"); + "left_set_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_set_bigint(arg0, arg1); } @@ -2389,10 +2389,10 @@ 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"); + "left_set_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_set_float(arg0, arg1); } @@ -2402,10 +2402,10 @@ 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"); + "left_set_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_set_int(arg0, arg1); } @@ -2415,10 +2415,10 @@ 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"); + "left_set_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_set_set(arg0, arg1); } @@ -2428,10 +2428,10 @@ 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"); + "left_set_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_set_text(arg0, arg1); } @@ -2441,10 +2441,10 @@ 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"); + "left_span_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_span_bigint(arg0, arg1); } @@ -2454,10 +2454,10 @@ 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"); + "left_span_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_span_float(arg0, arg1); } @@ -2467,10 +2467,10 @@ 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"); + "left_span_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_span_int(arg0, arg1); } @@ -2480,10 +2480,10 @@ 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"); + "left_span_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_span_span(arg0, arg1); } @@ -2493,10 +2493,10 @@ 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"); + "left_span_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_span_spanset(arg0, arg1); } @@ -2506,10 +2506,10 @@ 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"); + "left_spanset_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_spanset_bigint(arg0, arg1); } @@ -2519,10 +2519,10 @@ 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"); + "left_spanset_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_spanset_float(arg0, arg1); } @@ -2532,10 +2532,10 @@ 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"); + "left_spanset_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_spanset_int(arg0, arg1); } @@ -2545,10 +2545,10 @@ 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"); + "left_spanset_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_spanset_span(arg0, arg1); } @@ -2558,10 +2558,10 @@ 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"); + "left_spanset_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_spanset_spanset(arg0, arg1); } @@ -2571,10 +2571,10 @@ 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"); + "left_tbox_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_tbox_tbox(arg0, arg1); } @@ -2584,10 +2584,10 @@ 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"); + "left_tbox_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_tbox_tnumber(arg0, arg1); } @@ -2597,10 +2597,10 @@ 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"); + "left_text_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_text_set(arg0, arg1); } @@ -2610,10 +2610,10 @@ 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"); + "mul_interval_double requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.mul_interval_double(arg0, arg1); } @@ -2623,10 +2623,10 @@ 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"); + "numspan_timestamptz_to_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.numspan_timestamptz_to_tbox(arg0, arg1); } @@ -2636,10 +2636,10 @@ 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"); + "numspan_tstzspan_to_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.numspan_tstzspan_to_tbox(arg0, arg1); } @@ -2649,10 +2649,10 @@ 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"); + "overafter_date_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_date_set(arg0, arg1); } @@ -2662,10 +2662,10 @@ 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"); + "overafter_date_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_date_span(arg0, arg1); } @@ -2675,10 +2675,10 @@ 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"); + "overafter_date_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_date_spanset(arg0, arg1); } @@ -2688,10 +2688,10 @@ 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"); + "overafter_set_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_set_date(arg0, arg1); } @@ -2701,10 +2701,10 @@ 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"); + "overafter_set_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_set_timestamptz(arg0, arg1); } @@ -2714,10 +2714,10 @@ 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"); + "overafter_span_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_span_date(arg0, arg1); } @@ -2727,10 +2727,10 @@ 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"); + "overafter_span_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_span_timestamptz(arg0, arg1); } @@ -2740,10 +2740,10 @@ 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"); + "overafter_spanset_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_spanset_date(arg0, arg1); } @@ -2753,10 +2753,10 @@ 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"); + "overafter_spanset_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_spanset_timestamptz(arg0, arg1); } @@ -2766,10 +2766,10 @@ 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"); + "overafter_tbox_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_tbox_tbox(arg0, arg1); } @@ -2779,10 +2779,10 @@ 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"); + "overafter_tbox_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_tbox_tnumber(arg0, arg1); } @@ -2792,10 +2792,10 @@ 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"); + "overafter_timestamptz_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_timestamptz_set(arg0, arg1); } @@ -2805,10 +2805,10 @@ 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"); + "overafter_timestamptz_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_timestamptz_span(arg0, arg1); } @@ -2818,10 +2818,10 @@ 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"); + "overafter_timestamptz_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_timestamptz_spanset(arg0, arg1); } @@ -2831,10 +2831,10 @@ 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"); + "overbefore_date_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_date_set(arg0, arg1); } @@ -2844,10 +2844,10 @@ 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"); + "overbefore_date_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_date_span(arg0, arg1); } @@ -2857,10 +2857,10 @@ 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"); + "overbefore_date_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_date_spanset(arg0, arg1); } @@ -2870,10 +2870,10 @@ 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"); + "overbefore_set_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_set_date(arg0, arg1); } @@ -2883,10 +2883,10 @@ 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"); + "overbefore_set_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_set_timestamptz(arg0, arg1); } @@ -2896,10 +2896,10 @@ 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"); + "overbefore_span_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_span_date(arg0, arg1); } @@ -2909,10 +2909,10 @@ 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"); + "overbefore_span_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_span_timestamptz(arg0, arg1); } @@ -2922,10 +2922,10 @@ 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"); + "overbefore_spanset_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_spanset_date(arg0, arg1); } @@ -2935,10 +2935,10 @@ 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"); + "overbefore_spanset_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_spanset_timestamptz(arg0, arg1); } @@ -2948,10 +2948,10 @@ 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"); + "overbefore_tbox_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_tbox_tbox(arg0, arg1); } @@ -2961,10 +2961,10 @@ 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"); + "overbefore_tbox_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_tbox_tnumber(arg0, arg1); } @@ -2974,10 +2974,10 @@ 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"); + "overbefore_timestamptz_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_timestamptz_set(arg0, arg1); } @@ -2987,10 +2987,10 @@ 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"); + "overbefore_timestamptz_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_timestamptz_span(arg0, arg1); } @@ -3000,10 +3000,10 @@ 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"); + "overbefore_timestamptz_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_timestamptz_spanset(arg0, arg1); } @@ -3013,10 +3013,10 @@ 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"); + "overlaps_set_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overlaps_set_set(arg0, arg1); } @@ -3026,10 +3026,10 @@ 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"); + "overlaps_span_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overlaps_span_span(arg0, arg1); } @@ -3039,10 +3039,10 @@ 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"); + "overlaps_span_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overlaps_span_spanset(arg0, arg1); } @@ -3052,10 +3052,10 @@ 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"); + "overlaps_spanset_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overlaps_spanset_span(arg0, arg1); } @@ -3065,10 +3065,10 @@ 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"); + "overlaps_spanset_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overlaps_spanset_spanset(arg0, arg1); } @@ -3078,10 +3078,10 @@ 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"); + "overlaps_tbox_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overlaps_tbox_tbox(arg0, arg1); } @@ -3091,10 +3091,10 @@ 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"); + "overlaps_tbox_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overlaps_tbox_tnumber(arg0, arg1); } @@ -3104,10 +3104,10 @@ 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"); + "overleft_bigint_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_bigint_set(arg0, arg1); } @@ -3117,10 +3117,10 @@ 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"); + "overleft_bigint_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_bigint_span(arg0, arg1); } @@ -3130,10 +3130,10 @@ 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"); + "overleft_bigint_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_bigint_spanset(arg0, arg1); } @@ -3143,10 +3143,10 @@ 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"); + "overleft_float_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_float_set(arg0, arg1); } @@ -3156,10 +3156,10 @@ 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"); + "overleft_float_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_float_span(arg0, arg1); } @@ -3169,10 +3169,10 @@ 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"); + "overleft_float_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_float_spanset(arg0, arg1); } @@ -3182,10 +3182,10 @@ 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"); + "overleft_int_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_int_set(arg0, arg1); } @@ -3195,10 +3195,10 @@ 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"); + "overleft_int_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_int_span(arg0, arg1); } @@ -3208,10 +3208,10 @@ 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"); + "overleft_int_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_int_spanset(arg0, arg1); } @@ -3221,10 +3221,10 @@ 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"); + "overleft_set_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_set_bigint(arg0, arg1); } @@ -3234,10 +3234,10 @@ 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"); + "overleft_set_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_set_float(arg0, arg1); } @@ -3247,10 +3247,10 @@ 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"); + "overleft_set_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_set_int(arg0, arg1); } @@ -3260,10 +3260,10 @@ 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"); + "overleft_set_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_set_set(arg0, arg1); } @@ -3273,10 +3273,10 @@ 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"); + "overleft_set_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_set_text(arg0, arg1); } @@ -3286,10 +3286,10 @@ 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"); + "overleft_span_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_span_bigint(arg0, arg1); } @@ -3299,10 +3299,10 @@ 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"); + "overleft_span_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_span_float(arg0, arg1); } @@ -3312,10 +3312,10 @@ 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"); + "overleft_span_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_span_int(arg0, arg1); } @@ -3325,10 +3325,10 @@ 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"); + "overleft_span_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_span_span(arg0, arg1); } @@ -3338,10 +3338,10 @@ 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"); + "overleft_span_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_span_spanset(arg0, arg1); } @@ -3351,10 +3351,10 @@ 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"); + "overleft_spanset_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_spanset_bigint(arg0, arg1); } @@ -3364,10 +3364,10 @@ 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"); + "overleft_spanset_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_spanset_float(arg0, arg1); } @@ -3377,10 +3377,10 @@ 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"); + "overleft_spanset_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_spanset_int(arg0, arg1); } @@ -3390,10 +3390,10 @@ 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"); + "overleft_spanset_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_spanset_span(arg0, arg1); } @@ -3403,10 +3403,10 @@ 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"); + "overleft_spanset_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_spanset_spanset(arg0, arg1); } @@ -3416,10 +3416,10 @@ 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"); + "overleft_tbox_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_tbox_tbox(arg0, arg1); } @@ -3429,10 +3429,10 @@ 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"); + "overleft_tbox_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_tbox_tnumber(arg0, arg1); } @@ -3442,10 +3442,10 @@ 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"); + "overleft_text_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_text_set(arg0, arg1); } @@ -3455,10 +3455,10 @@ 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"); + "overright_bigint_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_bigint_set(arg0, arg1); } @@ -3468,10 +3468,10 @@ 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"); + "overright_bigint_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_bigint_span(arg0, arg1); } @@ -3481,10 +3481,10 @@ 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"); + "overright_bigint_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_bigint_spanset(arg0, arg1); } @@ -3494,10 +3494,10 @@ 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"); + "overright_float_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_float_set(arg0, arg1); } @@ -3507,10 +3507,10 @@ 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"); + "overright_float_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_float_span(arg0, arg1); } @@ -3520,10 +3520,10 @@ 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"); + "overright_float_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_float_spanset(arg0, arg1); } @@ -3533,10 +3533,10 @@ 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"); + "overright_int_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_int_set(arg0, arg1); } @@ -3546,10 +3546,10 @@ 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"); + "overright_int_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_int_span(arg0, arg1); } @@ -3559,10 +3559,10 @@ 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"); + "overright_int_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_int_spanset(arg0, arg1); } @@ -3572,10 +3572,10 @@ 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"); + "overright_set_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_set_bigint(arg0, arg1); } @@ -3585,10 +3585,10 @@ 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"); + "overright_set_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_set_float(arg0, arg1); } @@ -3598,10 +3598,10 @@ 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"); + "overright_set_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_set_int(arg0, arg1); } @@ -3611,10 +3611,10 @@ 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"); + "overright_set_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_set_set(arg0, arg1); } @@ -3624,10 +3624,10 @@ 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"); + "overright_set_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_set_text(arg0, arg1); } @@ -3637,10 +3637,10 @@ 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"); + "overright_span_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_span_bigint(arg0, arg1); } @@ -3650,10 +3650,10 @@ 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"); + "overright_span_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_span_float(arg0, arg1); } @@ -3663,10 +3663,10 @@ 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"); + "overright_span_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_span_int(arg0, arg1); } @@ -3676,10 +3676,10 @@ 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"); + "overright_span_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_span_span(arg0, arg1); } @@ -3689,10 +3689,10 @@ 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"); + "overright_span_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_span_spanset(arg0, arg1); } @@ -3702,10 +3702,10 @@ 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"); + "overright_spanset_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_spanset_bigint(arg0, arg1); } @@ -3715,10 +3715,10 @@ 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"); + "overright_spanset_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_spanset_float(arg0, arg1); } @@ -3728,10 +3728,10 @@ 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"); + "overright_spanset_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_spanset_int(arg0, arg1); } @@ -3741,10 +3741,10 @@ 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"); + "overright_spanset_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_spanset_span(arg0, arg1); } @@ -3754,10 +3754,10 @@ 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"); + "overright_spanset_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_spanset_spanset(arg0, arg1); } @@ -3767,10 +3767,10 @@ 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"); + "overright_tbox_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_tbox_tbox(arg0, arg1); } @@ -3780,10 +3780,10 @@ 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"); + "overright_tbox_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_tbox_tnumber(arg0, arg1); } @@ -3793,10 +3793,10 @@ 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"); + "overright_text_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_text_set(arg0, arg1); } @@ -3806,10 +3806,10 @@ 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"); + "right_bigint_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_bigint_set(arg0, arg1); } @@ -3819,10 +3819,10 @@ 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"); + "right_bigint_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_bigint_span(arg0, arg1); } @@ -3832,10 +3832,10 @@ 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"); + "right_bigint_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_bigint_spanset(arg0, arg1); } @@ -3845,10 +3845,10 @@ 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"); + "right_float_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_float_set(arg0, arg1); } @@ -3858,10 +3858,10 @@ 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"); + "right_float_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_float_span(arg0, arg1); } @@ -3871,10 +3871,10 @@ 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"); + "right_float_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_float_spanset(arg0, arg1); } @@ -3884,10 +3884,10 @@ 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"); + "right_int_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_int_set(arg0, arg1); } @@ -3897,10 +3897,10 @@ 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"); + "right_int_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_int_span(arg0, arg1); } @@ -3910,10 +3910,10 @@ 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"); + "right_int_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_int_spanset(arg0, arg1); } @@ -3923,10 +3923,10 @@ 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"); + "right_set_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_set_bigint(arg0, arg1); } @@ -3936,10 +3936,10 @@ 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"); + "right_set_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_set_float(arg0, arg1); } @@ -3949,10 +3949,10 @@ 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"); + "right_set_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_set_int(arg0, arg1); } @@ -3962,10 +3962,10 @@ 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"); + "right_set_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_set_set(arg0, arg1); } @@ -3975,10 +3975,10 @@ 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"); + "right_set_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_set_text(arg0, arg1); } @@ -3988,10 +3988,10 @@ 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"); + "right_span_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_span_bigint(arg0, arg1); } @@ -4001,10 +4001,10 @@ 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"); + "right_span_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_span_float(arg0, arg1); } @@ -4014,10 +4014,10 @@ 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"); + "right_span_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_span_int(arg0, arg1); } @@ -4027,10 +4027,10 @@ 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"); + "right_span_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_span_span(arg0, arg1); } @@ -4040,10 +4040,10 @@ 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"); + "right_span_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_span_spanset(arg0, arg1); } @@ -4053,10 +4053,10 @@ 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"); + "right_spanset_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_spanset_bigint(arg0, arg1); } @@ -4066,10 +4066,10 @@ 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"); + "right_spanset_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_spanset_float(arg0, arg1); } @@ -4079,10 +4079,10 @@ 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"); + "right_spanset_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_spanset_int(arg0, arg1); } @@ -4092,10 +4092,10 @@ 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"); + "right_spanset_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_spanset_span(arg0, arg1); } @@ -4105,10 +4105,10 @@ 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"); + "right_spanset_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_spanset_spanset(arg0, arg1); } @@ -4118,10 +4118,10 @@ 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"); + "right_tbox_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_tbox_tbox(arg0, arg1); } @@ -4131,10 +4131,10 @@ 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"); + "right_tbox_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_tbox_tnumber(arg0, arg1); } @@ -4144,10 +4144,10 @@ 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"); + "right_text_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_text_set(arg0, arg1); } @@ -4157,10 +4157,10 @@ 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"); + "same_numspan_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.same_numspan_tnumber(arg0, arg1); } @@ -4170,10 +4170,10 @@ 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"); + "same_tbox_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.same_tbox_tbox(arg0, arg1); } @@ -4183,10 +4183,10 @@ 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"); + "same_tbox_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.same_tbox_tnumber(arg0, arg1); } @@ -4196,10 +4196,10 @@ 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"); + "same_temporal_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.same_temporal_tstzspan(arg0, arg1); } @@ -4209,10 +4209,10 @@ 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"); + "same_tnumber_numspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.same_tnumber_numspan(arg0, arg1); } @@ -4222,10 +4222,10 @@ 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"); + "same_tnumber_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.same_tnumber_tbox(arg0, arg1); } @@ -4235,10 +4235,10 @@ 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"); + "same_tstzspan_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.same_tstzspan_temporal(arg0, arg1); } @@ -4248,10 +4248,10 @@ 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"); + "sub_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.sub_float_tfloat(arg0, arg1); } @@ -4261,10 +4261,10 @@ 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"); + "sub_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.sub_int_tint(arg0, arg1); } @@ -4274,10 +4274,10 @@ 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"); + "sub_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.sub_tfloat_float(arg0, arg1); } @@ -4287,10 +4287,10 @@ 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"); + "sub_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.sub_tint_int(arg0, arg1); } @@ -4300,10 +4300,10 @@ 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"); + "sub_tnumber_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.sub_tnumber_tnumber(arg0, arg1); } @@ -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"); + "tboxfloat_xmax requires libmeos — set -Dmobilitykafka.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"); + "tboxfloat_xmin requires libmeos — set -Dmobilitykafka.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"); + "tboxint_xmax requires libmeos — set -Dmobilitykafka.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"); + "tboxint_xmin requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.tboxint_xmin(arg0, arg1); + return GeneratedFunctions.tboxint_xmin(arg0); } /** @@ -4365,10 +4365,10 @@ 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"); + "temparr_round requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temparr_round(arg0, arg1, arg2); } @@ -4378,10 +4378,10 @@ 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"); + "teq_bool_tbool requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.teq_bool_tbool(arg0, arg1); } @@ -4391,10 +4391,10 @@ 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"); + "teq_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.teq_float_tfloat(arg0, arg1); } @@ -4404,10 +4404,10 @@ 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"); + "teq_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.teq_int_tint(arg0, arg1); } @@ -4417,10 +4417,10 @@ 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"); + "teq_tbool_bool requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.teq_tbool_bool(arg0, arg1); } @@ -4430,10 +4430,10 @@ 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"); + "teq_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.teq_temporal_temporal(arg0, arg1); } @@ -4443,10 +4443,10 @@ 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"); + "teq_text_ttext requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.teq_text_ttext(arg0, arg1); } @@ -4456,10 +4456,10 @@ 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"); + "teq_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.teq_tfloat_float(arg0, arg1); } @@ -4469,10 +4469,10 @@ 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"); + "teq_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.teq_tint_int(arg0, arg1); } @@ -4482,10 +4482,10 @@ 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"); + "teq_ttext_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.teq_ttext_text(arg0, arg1); } @@ -4495,10 +4495,10 @@ 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"); + "text_cmp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.text_cmp(arg0, arg1); } @@ -4508,10 +4508,10 @@ 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"); + "text_copy requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.text_copy(arg0); } @@ -4521,10 +4521,10 @@ 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"); + "text_initcap requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.text_initcap(arg0); } @@ -4534,10 +4534,10 @@ 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"); + "text_lower requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.text_lower(arg0); } @@ -4547,10 +4547,10 @@ 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"); + "text_to_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.text_to_set(arg0); } @@ -4560,10 +4560,10 @@ 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"); + "text_union_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.text_union_transfn(arg0, arg1); } @@ -4573,10 +4573,10 @@ 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"); + "text_upper requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.text_upper(arg0); } @@ -4586,10 +4586,10 @@ 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"); + "textcat_text_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.textcat_text_text(arg0, arg1); } @@ -4599,10 +4599,10 @@ 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"); + "textcat_text_textset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.textcat_text_textset(arg0, arg1); } @@ -4612,10 +4612,10 @@ 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"); + "textcat_text_ttext requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.textcat_text_ttext(arg0, arg1); } @@ -4625,10 +4625,10 @@ 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"); + "textcat_textset_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.textcat_textset_text(arg0, arg1); } @@ -4638,10 +4638,10 @@ 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"); + "textcat_ttext_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.textcat_ttext_text(arg0, arg1); } @@ -4651,10 +4651,10 @@ 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"); + "textcat_ttext_ttext requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.textcat_ttext_ttext(arg0, arg1); } @@ -4664,10 +4664,10 @@ 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"); + "tfloatbox_expand requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloatbox_expand(arg0, arg1); } @@ -4677,10 +4677,10 @@ 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"); + "tfloatbox_shift_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloatbox_shift_scale(arg0, arg1, arg2, arg3, arg4); } @@ -4690,10 +4690,10 @@ 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"); + "tge_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tge_float_tfloat(arg0, arg1); } @@ -4703,10 +4703,10 @@ 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"); + "tge_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tge_int_tint(arg0, arg1); } @@ -4716,10 +4716,10 @@ 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"); + "tge_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tge_temporal_temporal(arg0, arg1); } @@ -4729,10 +4729,10 @@ 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"); + "tge_text_ttext requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tge_text_ttext(arg0, arg1); } @@ -4742,10 +4742,10 @@ 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"); + "tge_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tge_tfloat_float(arg0, arg1); } @@ -4755,10 +4755,10 @@ 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"); + "tge_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tge_tint_int(arg0, arg1); } @@ -4768,10 +4768,10 @@ 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"); + "tge_ttext_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tge_ttext_text(arg0, arg1); } @@ -4781,10 +4781,10 @@ 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"); + "tgt_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgt_float_tfloat(arg0, arg1); } @@ -4794,10 +4794,10 @@ 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"); + "tgt_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgt_int_tint(arg0, arg1); } @@ -4807,10 +4807,10 @@ 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"); + "tgt_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgt_temporal_temporal(arg0, arg1); } @@ -4820,10 +4820,10 @@ 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"); + "tgt_text_ttext requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgt_text_ttext(arg0, arg1); } @@ -4833,10 +4833,10 @@ 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"); + "tgt_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgt_tfloat_float(arg0, arg1); } @@ -4846,10 +4846,10 @@ 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"); + "tgt_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgt_tint_int(arg0, arg1); } @@ -4859,10 +4859,10 @@ 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"); + "tgt_ttext_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgt_ttext_text(arg0, arg1); } @@ -4872,10 +4872,10 @@ 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"); + "timestamp_to_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.timestamp_to_date(arg0); } @@ -4885,10 +4885,10 @@ 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"); + "timestamptz_extent_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.timestamptz_extent_transfn(arg0, arg1); } @@ -4898,10 +4898,10 @@ 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"); + "timestamptz_get_bin requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.timestamptz_get_bin(arg0, arg1, arg2); } @@ -4911,10 +4911,10 @@ 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"); + "timestamptz_shift requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.timestamptz_shift(arg0, arg1); } @@ -4924,10 +4924,10 @@ 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"); + "timestamptz_tcount_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.timestamptz_tcount_transfn(arg0, arg1); } @@ -4937,10 +4937,10 @@ 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"); + "timestamptz_to_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.timestamptz_to_date(arg0); } @@ -4950,10 +4950,10 @@ 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"); + "timestamptz_to_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.timestamptz_to_set(arg0); } @@ -4963,10 +4963,10 @@ 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"); + "timestamptz_to_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.timestamptz_to_span(arg0); } @@ -4976,10 +4976,10 @@ 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"); + "timestamptz_to_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.timestamptz_to_spanset(arg0); } @@ -4989,10 +4989,10 @@ 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"); + "timestamptz_to_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.timestamptz_to_tbox(arg0); } @@ -5002,10 +5002,10 @@ 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"); + "timestamptz_tprecision requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.timestamptz_tprecision(arg0, arg1, arg2); } @@ -5015,10 +5015,10 @@ 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"); + "timestamptz_union_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.timestamptz_union_transfn(arg0, arg1); } @@ -5028,10 +5028,10 @@ 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"); + "tintbox_expand requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tintbox_expand(arg0, arg1); } @@ -5041,10 +5041,10 @@ 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"); + "tintbox_shift_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tintbox_shift_scale(arg0, arg1, arg2, arg3, arg4); } @@ -5054,10 +5054,10 @@ 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"); + "tle_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tle_float_tfloat(arg0, arg1); } @@ -5067,10 +5067,10 @@ 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"); + "tle_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tle_int_tint(arg0, arg1); } @@ -5080,10 +5080,10 @@ 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"); + "tle_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tle_temporal_temporal(arg0, arg1); } @@ -5093,10 +5093,10 @@ 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"); + "tle_text_ttext requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tle_text_ttext(arg0, arg1); } @@ -5106,10 +5106,10 @@ 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"); + "tle_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tle_tfloat_float(arg0, arg1); } @@ -5119,10 +5119,10 @@ 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"); + "tle_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tle_tint_int(arg0, arg1); } @@ -5132,10 +5132,10 @@ 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"); + "tle_ttext_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tle_ttext_text(arg0, arg1); } @@ -5145,10 +5145,10 @@ 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"); + "tlt_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tlt_float_tfloat(arg0, arg1); } @@ -5158,10 +5158,10 @@ 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"); + "tlt_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tlt_int_tint(arg0, arg1); } @@ -5171,10 +5171,10 @@ 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"); + "tlt_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tlt_temporal_temporal(arg0, arg1); } @@ -5184,10 +5184,10 @@ 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"); + "tlt_text_ttext requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tlt_text_ttext(arg0, arg1); } @@ -5197,10 +5197,10 @@ 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"); + "tlt_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tlt_tfloat_float(arg0, arg1); } @@ -5210,10 +5210,10 @@ 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"); + "tlt_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tlt_tint_int(arg0, arg1); } @@ -5223,10 +5223,10 @@ 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"); + "tlt_ttext_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tlt_ttext_text(arg0, arg1); } @@ -5236,10 +5236,10 @@ 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"); + "tne_bool_tbool requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tne_bool_tbool(arg0, arg1); } @@ -5249,10 +5249,10 @@ 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"); + "tne_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tne_float_tfloat(arg0, arg1); } @@ -5262,10 +5262,10 @@ 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"); + "tne_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tne_int_tint(arg0, arg1); } @@ -5275,10 +5275,10 @@ 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"); + "tne_tbool_bool requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tne_tbool_bool(arg0, arg1); } @@ -5288,10 +5288,10 @@ 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"); + "tne_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tne_temporal_temporal(arg0, arg1); } @@ -5301,10 +5301,10 @@ 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"); + "tne_text_ttext requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tne_text_ttext(arg0, arg1); } @@ -5314,10 +5314,10 @@ 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"); + "tne_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tne_tfloat_float(arg0, arg1); } @@ -5327,10 +5327,10 @@ 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"); + "tne_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tne_tint_int(arg0, arg1); } @@ -5340,10 +5340,10 @@ 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"); + "tne_ttext_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tne_ttext_text(arg0, arg1); } @@ -5353,10 +5353,10 @@ 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"); + "union_bigint_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_bigint_set(arg0, arg1); } @@ -5366,10 +5366,10 @@ 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"); + "union_bigint_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_bigint_span(arg0, arg1); } @@ -5379,10 +5379,10 @@ 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"); + "union_bigint_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_bigint_spanset(arg0, arg1); } @@ -5392,10 +5392,10 @@ 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"); + "union_date_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_date_set(arg0, arg1); } @@ -5405,10 +5405,10 @@ 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"); + "union_date_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_date_span(arg0, arg1); } @@ -5418,10 +5418,10 @@ 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"); + "union_date_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_date_spanset(arg0, arg1); } @@ -5431,10 +5431,10 @@ 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"); + "union_float_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_float_set(arg0, arg1); } @@ -5444,10 +5444,10 @@ 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"); + "union_float_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_float_span(arg0, arg1); } @@ -5457,10 +5457,10 @@ 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"); + "union_float_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_float_spanset(arg0, arg1); } @@ -5470,10 +5470,10 @@ 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"); + "union_int_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_int_set(arg0, arg1); } @@ -5483,10 +5483,10 @@ 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"); + "union_int_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_int_span(arg0, arg1); } @@ -5496,10 +5496,10 @@ 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"); + "union_int_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_int_spanset(arg0, arg1); } @@ -5509,10 +5509,10 @@ 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"); + "union_set_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_set_bigint(arg0, arg1); } @@ -5522,10 +5522,10 @@ 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"); + "union_set_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_set_date(arg0, arg1); } @@ -5535,10 +5535,10 @@ 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"); + "union_set_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_set_float(arg0, arg1); } @@ -5548,10 +5548,10 @@ 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"); + "union_set_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_set_int(arg0, arg1); } @@ -5561,10 +5561,10 @@ 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"); + "union_set_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_set_set(arg0, arg1); } @@ -5574,10 +5574,10 @@ 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"); + "union_set_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_set_text(arg0, arg1); } @@ -5587,10 +5587,10 @@ 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"); + "union_set_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_set_timestamptz(arg0, arg1); } @@ -5600,10 +5600,10 @@ 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"); + "union_span_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_span_bigint(arg0, arg1); } @@ -5613,10 +5613,10 @@ 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"); + "union_span_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_span_date(arg0, arg1); } @@ -5626,10 +5626,10 @@ 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"); + "union_span_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_span_float(arg0, arg1); } @@ -5639,10 +5639,10 @@ 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"); + "union_span_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_span_int(arg0, arg1); } @@ -5652,10 +5652,10 @@ 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"); + "union_span_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_span_span(arg0, arg1); } @@ -5665,10 +5665,10 @@ 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"); + "union_span_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_span_spanset(arg0, arg1); } @@ -5678,10 +5678,10 @@ 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"); + "union_span_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_span_timestamptz(arg0, arg1); } @@ -5691,10 +5691,10 @@ 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"); + "union_spanset_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_spanset_bigint(arg0, arg1); } @@ -5704,10 +5704,10 @@ 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"); + "union_spanset_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_spanset_date(arg0, arg1); } @@ -5717,10 +5717,10 @@ 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"); + "union_spanset_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_spanset_float(arg0, arg1); } @@ -5730,10 +5730,10 @@ 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"); + "union_spanset_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_spanset_int(arg0, arg1); } @@ -5743,10 +5743,10 @@ 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"); + "union_spanset_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_spanset_span(arg0, arg1); } @@ -5756,10 +5756,10 @@ 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"); + "union_spanset_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_spanset_spanset(arg0, arg1); } @@ -5769,10 +5769,10 @@ 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"); + "union_spanset_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_spanset_timestamptz(arg0, arg1); } @@ -5782,10 +5782,10 @@ 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"); + "union_tbox_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_tbox_tbox(arg0, arg1, arg2); } @@ -5795,10 +5795,10 @@ 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"); + "union_text_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_text_set(arg0, arg1); } @@ -5808,10 +5808,10 @@ 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"); + "union_timestamptz_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_timestamptz_set(arg0, arg1); } @@ -5821,10 +5821,10 @@ 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"); + "union_timestamptz_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_timestamptz_span(arg0, arg1); } @@ -5834,10 +5834,10 @@ 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"); + "union_timestamptz_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_timestamptz_spanset(arg0, arg1); } @@ -5847,10 +5847,10 @@ 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"); + "adjacent_numspan_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_numspan_tnumber(arg0, arg1); } @@ -5860,10 +5860,10 @@ 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"); + "adjacent_temporal_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_temporal_tstzspan(arg0, arg1); } @@ -5873,10 +5873,10 @@ 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"); + "adjacent_tnumber_numspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_tnumber_numspan(arg0, arg1); } @@ -5886,10 +5886,10 @@ 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"); + "adjacent_tnumber_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_tnumber_tbox(arg0, arg1); } @@ -5899,10 +5899,10 @@ 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"); + "adjacent_tstzspan_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_tstzspan_temporal(arg0, arg1); } @@ -5912,10 +5912,10 @@ 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"); + "after_temporal_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_temporal_tstzspan(arg0, arg1); } @@ -5925,10 +5925,10 @@ 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"); + "after_tnumber_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_tnumber_tbox(arg0, arg1); } @@ -5938,10 +5938,10 @@ 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"); + "after_tstzspan_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_tstzspan_temporal(arg0, arg1); } @@ -5951,10 +5951,10 @@ 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"); + "before_temporal_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_temporal_tstzspan(arg0, arg1); } @@ -5964,10 +5964,10 @@ 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"); + "before_tnumber_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_tnumber_tbox(arg0, arg1); } @@ -5977,10 +5977,10 @@ 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"); + "before_tstzspan_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_tstzspan_temporal(arg0, arg1); } @@ -5990,10 +5990,10 @@ 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"); + "contained_numspan_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_numspan_tnumber(arg0, arg1); } @@ -6003,10 +6003,10 @@ 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"); + "contained_temporal_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_temporal_tstzspan(arg0, arg1); } @@ -6016,10 +6016,10 @@ 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"); + "contained_tnumber_numspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_tnumber_numspan(arg0, arg1); } @@ -6029,10 +6029,10 @@ 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"); + "contained_tnumber_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_tnumber_tbox(arg0, arg1); } @@ -6042,10 +6042,10 @@ 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"); + "contained_tstzspan_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_tstzspan_temporal(arg0, arg1); } @@ -6055,10 +6055,10 @@ 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"); + "contains_numspan_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_numspan_tnumber(arg0, arg1); } @@ -6068,10 +6068,10 @@ 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"); + "contains_temporal_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_temporal_tstzspan(arg0, arg1); } @@ -6081,10 +6081,10 @@ 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"); + "contains_tnumber_numspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_tnumber_numspan(arg0, arg1); } @@ -6094,10 +6094,10 @@ 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"); + "contains_tnumber_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_tnumber_tbox(arg0, arg1); } @@ -6107,10 +6107,10 @@ 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"); + "contains_tstzspan_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_tstzspan_temporal(arg0, arg1); } @@ -6120,10 +6120,10 @@ 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"); + "distance_bigintset_bigintset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_bigintset_bigintset(arg0, arg1); } @@ -6133,10 +6133,10 @@ 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"); + "distance_bigintspan_bigintspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_bigintspan_bigintspan(arg0, arg1); } @@ -6146,10 +6146,10 @@ 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"); + "distance_bigintspanset_bigintspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_bigintspanset_bigintspan(arg0, arg1); } @@ -6159,10 +6159,10 @@ 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"); + "distance_bigintspanset_bigintspanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_bigintspanset_bigintspanset(arg0, arg1); } @@ -6172,10 +6172,10 @@ 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"); + "distance_dateset_dateset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_dateset_dateset(arg0, arg1); } @@ -6185,10 +6185,10 @@ 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"); + "distance_datespan_datespan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_datespan_datespan(arg0, arg1); } @@ -6198,10 +6198,10 @@ 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"); + "distance_datespanset_datespan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_datespanset_datespan(arg0, arg1); } @@ -6211,10 +6211,10 @@ 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"); + "distance_datespanset_datespanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_datespanset_datespanset(arg0, arg1); } @@ -6224,10 +6224,10 @@ 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"); + "distance_floatset_floatset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_floatset_floatset(arg0, arg1); } @@ -6237,10 +6237,10 @@ 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"); + "distance_floatspan_floatspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_floatspan_floatspan(arg0, arg1); } @@ -6250,10 +6250,10 @@ 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"); + "distance_floatspanset_floatspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_floatspanset_floatspan(arg0, arg1); } @@ -6263,10 +6263,10 @@ 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"); + "distance_floatspanset_floatspanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_floatspanset_floatspanset(arg0, arg1); } @@ -6276,10 +6276,10 @@ 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"); + "distance_intset_intset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_intset_intset(arg0, arg1); } @@ -6289,10 +6289,10 @@ 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"); + "distance_intspan_intspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_intspan_intspan(arg0, arg1); } @@ -6302,10 +6302,10 @@ 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"); + "distance_intspanset_intspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_intspanset_intspan(arg0, arg1); } @@ -6315,10 +6315,10 @@ 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"); + "distance_intspanset_intspanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_intspanset_intspanset(arg0, arg1); } @@ -6328,10 +6328,10 @@ 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"); + "distance_set_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_set_bigint(arg0, arg1); } @@ -6341,10 +6341,10 @@ 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"); + "distance_set_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_set_date(arg0, arg1); } @@ -6354,10 +6354,10 @@ 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"); + "distance_set_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_set_float(arg0, arg1); } @@ -6367,10 +6367,10 @@ 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"); + "distance_set_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_set_int(arg0, arg1); } @@ -6380,10 +6380,10 @@ 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"); + "distance_set_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_set_timestamptz(arg0, arg1); } @@ -6393,10 +6393,10 @@ 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"); + "distance_span_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_span_bigint(arg0, arg1); } @@ -6406,10 +6406,10 @@ 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"); + "distance_span_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_span_date(arg0, arg1); } @@ -6419,10 +6419,10 @@ 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"); + "distance_span_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_span_float(arg0, arg1); } @@ -6432,10 +6432,10 @@ 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"); + "distance_span_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_span_int(arg0, arg1); } @@ -6445,10 +6445,10 @@ 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"); + "distance_span_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_span_timestamptz(arg0, arg1); } @@ -6458,10 +6458,10 @@ 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"); + "distance_spanset_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_spanset_bigint(arg0, arg1); } @@ -6471,10 +6471,10 @@ 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"); + "distance_spanset_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_spanset_date(arg0, arg1); } @@ -6484,10 +6484,10 @@ 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"); + "distance_spanset_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_spanset_float(arg0, arg1); } @@ -6497,10 +6497,10 @@ 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"); + "distance_spanset_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_spanset_int(arg0, arg1); } @@ -6510,10 +6510,10 @@ 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"); + "distance_spanset_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_spanset_timestamptz(arg0, arg1); } @@ -6523,10 +6523,10 @@ 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"); + "distance_tstzset_tstzset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_tstzset_tstzset(arg0, arg1); } @@ -6536,10 +6536,10 @@ 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"); + "distance_tstzspan_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_tstzspan_tstzspan(arg0, arg1); } @@ -6549,10 +6549,10 @@ 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"); + "distance_tstzspanset_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_tstzspanset_tstzspan(arg0, arg1); } @@ -6562,10 +6562,10 @@ 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"); + "distance_tstzspanset_tstzspanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_tstzspanset_tstzspanset(arg0, arg1); } @@ -6575,10 +6575,10 @@ 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"); + "left_numspan_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_numspan_tnumber(arg0, arg1); } @@ -6588,10 +6588,10 @@ 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"); + "left_tnumber_numspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_tnumber_numspan(arg0, arg1); } @@ -6601,10 +6601,10 @@ 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"); + "left_tnumber_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_tnumber_tbox(arg0, arg1); } @@ -6614,10 +6614,10 @@ 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"); + "minus_bigint_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_bigint_set(arg0, arg1); } @@ -6627,10 +6627,10 @@ 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"); + "minus_bigint_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_bigint_span(arg0, arg1); } @@ -6640,10 +6640,10 @@ 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"); + "minus_bigint_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_bigint_spanset(arg0, arg1); } @@ -6656,7 +6656,7 @@ public static Pointer minus_bigint_spanset(int arg0, Pointer arg1) { public static int minus_date_date(int arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "minus_date_date requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "minus_date_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_date_date(arg0, arg1); } @@ -6669,7 +6669,7 @@ public static int minus_date_date(int arg0, int arg1) { public static int minus_date_int(int arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "minus_date_int requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "minus_date_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_date_int(arg0, arg1); } @@ -6679,10 +6679,10 @@ 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"); + "minus_date_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_date_set(arg0, arg1); } @@ -6692,10 +6692,10 @@ 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"); + "minus_date_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_date_span(arg0, arg1); } @@ -6705,10 +6705,10 @@ 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"); + "minus_date_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_date_spanset(arg0, arg1); } @@ -6718,10 +6718,10 @@ 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"); + "minus_float_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_float_set(arg0, arg1); } @@ -6731,10 +6731,10 @@ 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"); + "minus_float_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_float_span(arg0, arg1); } @@ -6744,10 +6744,10 @@ 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"); + "minus_float_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_float_spanset(arg0, arg1); } @@ -6757,10 +6757,10 @@ 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"); + "minus_int_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_int_set(arg0, arg1); } @@ -6770,10 +6770,10 @@ 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"); + "minus_int_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_int_span(arg0, arg1); } @@ -6783,10 +6783,10 @@ 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"); + "minus_int_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_int_spanset(arg0, arg1); } @@ -6796,10 +6796,10 @@ 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"); + "minus_set_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_set_bigint(arg0, arg1); } @@ -6809,10 +6809,10 @@ 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"); + "minus_set_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_set_date(arg0, arg1); } @@ -6822,10 +6822,10 @@ 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"); + "minus_set_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_set_float(arg0, arg1); } @@ -6835,10 +6835,10 @@ 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"); + "minus_set_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_set_int(arg0, arg1); } @@ -6848,10 +6848,10 @@ 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"); + "minus_set_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_set_set(arg0, arg1); } @@ -6861,10 +6861,10 @@ 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"); + "minus_set_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_set_text(arg0, arg1); } @@ -6874,10 +6874,10 @@ 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"); + "minus_set_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_set_timestamptz(arg0, arg1); } @@ -6887,10 +6887,10 @@ 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"); + "minus_span_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_span_bigint(arg0, arg1); } @@ -6900,10 +6900,10 @@ 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"); + "minus_span_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_span_date(arg0, arg1); } @@ -6913,10 +6913,10 @@ 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"); + "minus_span_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_span_float(arg0, arg1); } @@ -6926,10 +6926,10 @@ 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"); + "minus_span_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_span_int(arg0, arg1); } @@ -6939,10 +6939,10 @@ 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"); + "minus_span_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_span_span(arg0, arg1); } @@ -6952,10 +6952,10 @@ 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"); + "minus_span_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_span_spanset(arg0, arg1); } @@ -6965,10 +6965,10 @@ 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"); + "minus_span_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_span_timestamptz(arg0, arg1); } @@ -6978,10 +6978,10 @@ 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"); + "minus_spanset_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_spanset_bigint(arg0, arg1); } @@ -6991,10 +6991,10 @@ 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"); + "minus_spanset_date requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_spanset_date(arg0, arg1); } @@ -7004,10 +7004,10 @@ 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"); + "minus_spanset_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_spanset_float(arg0, arg1); } @@ -7017,10 +7017,10 @@ 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"); + "minus_spanset_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_spanset_int(arg0, arg1); } @@ -7030,10 +7030,10 @@ 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"); + "minus_spanset_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_spanset_span(arg0, arg1); } @@ -7043,10 +7043,10 @@ 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"); + "minus_spanset_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_spanset_spanset(arg0, arg1); } @@ -7056,10 +7056,10 @@ 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"); + "minus_spanset_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_spanset_timestamptz(arg0, arg1); } @@ -7069,10 +7069,10 @@ 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"); + "minus_text_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_text_set(arg0, arg1); } @@ -7082,10 +7082,10 @@ 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"); + "minus_timestamptz_interval requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_timestamptz_interval(arg0, arg1); } @@ -7095,10 +7095,10 @@ 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"); + "minus_timestamptz_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_timestamptz_set(arg0, arg1); } @@ -7108,10 +7108,10 @@ 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"); + "minus_timestamptz_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_timestamptz_span(arg0, arg1); } @@ -7121,10 +7121,10 @@ 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"); + "minus_timestamptz_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_timestamptz_spanset(arg0, arg1); } @@ -7134,10 +7134,10 @@ 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"); + "minus_timestamptz_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_timestamptz_timestamptz(arg0, arg1); } @@ -7147,10 +7147,10 @@ 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"); + "nad_tboxfloat_tboxfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tboxfloat_tboxfloat(arg0, arg1); } @@ -7160,10 +7160,10 @@ 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"); + "nad_tboxint_tboxint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tboxint_tboxint(arg0, arg1); } @@ -7173,10 +7173,10 @@ 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"); + "nad_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tfloat_float(arg0, arg1); } @@ -7186,10 +7186,10 @@ 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"); + "nad_tfloat_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tfloat_tbox(arg0, arg1); } @@ -7199,10 +7199,10 @@ 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"); + "nad_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tint_int(arg0, arg1); } @@ -7212,10 +7212,10 @@ 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"); + "nad_tint_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tint_tbox(arg0, arg1); } @@ -7225,10 +7225,10 @@ 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"); + "overafter_temporal_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_temporal_tstzspan(arg0, arg1); } @@ -7238,10 +7238,10 @@ 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"); + "overafter_tnumber_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_tnumber_tbox(arg0, arg1); } @@ -7251,10 +7251,10 @@ 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"); + "overafter_tstzspan_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_tstzspan_temporal(arg0, arg1); } @@ -7264,10 +7264,10 @@ 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"); + "overbefore_temporal_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_temporal_tstzspan(arg0, arg1); } @@ -7277,10 +7277,10 @@ 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"); + "overbefore_tnumber_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_tnumber_tbox(arg0, arg1); } @@ -7290,10 +7290,10 @@ 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"); + "overbefore_tstzspan_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_tstzspan_temporal(arg0, arg1); } @@ -7303,10 +7303,10 @@ 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"); + "overlaps_numspan_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overlaps_numspan_tnumber(arg0, arg1); } @@ -7316,10 +7316,10 @@ 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"); + "overlaps_temporal_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overlaps_temporal_tstzspan(arg0, arg1); } @@ -7329,10 +7329,10 @@ 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"); + "overlaps_tnumber_numspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overlaps_tnumber_numspan(arg0, arg1); } @@ -7342,10 +7342,10 @@ 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"); + "overlaps_tnumber_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overlaps_tnumber_tbox(arg0, arg1); } @@ -7355,10 +7355,10 @@ 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"); + "overlaps_tstzspan_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overlaps_tstzspan_temporal(arg0, arg1); } @@ -7368,10 +7368,10 @@ 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"); + "overleft_numspan_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_numspan_tnumber(arg0, arg1); } @@ -7381,10 +7381,10 @@ 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"); + "overleft_tnumber_numspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_tnumber_numspan(arg0, arg1); } @@ -7394,10 +7394,10 @@ 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"); + "overleft_tnumber_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_tnumber_tbox(arg0, arg1); } @@ -7407,10 +7407,10 @@ 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"); + "overright_numspan_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_numspan_tnumber(arg0, arg1); } @@ -7420,10 +7420,10 @@ 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"); + "overright_tnumber_numspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_tnumber_numspan(arg0, arg1); } @@ -7433,10 +7433,10 @@ 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"); + "overright_tnumber_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_tnumber_tbox(arg0, arg1); } @@ -7446,10 +7446,10 @@ 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"); + "right_numspan_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_numspan_tnumber(arg0, arg1); } @@ -7459,10 +7459,10 @@ 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"); + "right_tnumber_numspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_tnumber_numspan(arg0, arg1); } @@ -7472,10 +7472,10 @@ 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"); + "right_tnumber_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_tnumber_tbox(arg0, arg1); } @@ -7485,10 +7485,10 @@ 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"); + "tdistance_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdistance_tfloat_float(arg0, arg1); } @@ -7498,10 +7498,10 @@ 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"); + "tdistance_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdistance_tint_int(arg0, arg1); } @@ -7511,10 +7511,10 @@ 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"); + "always_eq_bool_tbool requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_bool_tbool(arg0, arg1); } @@ -7524,10 +7524,10 @@ 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"); + "always_eq_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_float_tfloat(arg0, arg1); } @@ -7537,10 +7537,10 @@ 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"); + "always_eq_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_int_tint(arg0, arg1); } @@ -7550,10 +7550,10 @@ 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"); + "always_eq_tbool_bool requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_tbool_bool(arg0, arg1); } @@ -7563,10 +7563,10 @@ 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"); + "always_eq_text_ttext requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_text_ttext(arg0, arg1); } @@ -7576,10 +7576,10 @@ 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"); + "always_eq_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_tfloat_float(arg0, arg1); } @@ -7589,10 +7589,10 @@ 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"); + "always_eq_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_tint_int(arg0, arg1); } @@ -7602,10 +7602,10 @@ 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"); + "always_eq_ttext_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_ttext_text(arg0, arg1); } @@ -7615,10 +7615,10 @@ 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"); + "always_ge_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ge_float_tfloat(arg0, arg1); } @@ -7628,10 +7628,10 @@ 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"); + "always_ge_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ge_int_tint(arg0, arg1); } @@ -7641,10 +7641,10 @@ 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"); + "always_ge_text_ttext requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ge_text_ttext(arg0, arg1); } @@ -7654,10 +7654,10 @@ 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"); + "always_ge_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ge_tfloat_float(arg0, arg1); } @@ -7667,10 +7667,10 @@ 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"); + "always_ge_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ge_tint_int(arg0, arg1); } @@ -7680,10 +7680,10 @@ 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"); + "always_ge_ttext_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ge_ttext_text(arg0, arg1); } @@ -7693,10 +7693,10 @@ 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"); + "always_gt_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_gt_float_tfloat(arg0, arg1); } @@ -7706,10 +7706,10 @@ 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"); + "always_gt_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_gt_int_tint(arg0, arg1); } @@ -7719,10 +7719,10 @@ 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"); + "always_gt_text_ttext requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_gt_text_ttext(arg0, arg1); } @@ -7732,10 +7732,10 @@ 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"); + "always_gt_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_gt_tfloat_float(arg0, arg1); } @@ -7745,10 +7745,10 @@ 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"); + "always_gt_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_gt_tint_int(arg0, arg1); } @@ -7758,10 +7758,10 @@ 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"); + "always_gt_ttext_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_gt_ttext_text(arg0, arg1); } @@ -7771,10 +7771,10 @@ 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"); + "always_le_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_le_float_tfloat(arg0, arg1); } @@ -7784,10 +7784,10 @@ 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"); + "always_le_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_le_int_tint(arg0, arg1); } @@ -7797,10 +7797,10 @@ 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"); + "always_le_text_ttext requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_le_text_ttext(arg0, arg1); } @@ -7810,10 +7810,10 @@ 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"); + "always_le_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_le_tfloat_float(arg0, arg1); } @@ -7823,10 +7823,10 @@ 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"); + "always_le_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_le_tint_int(arg0, arg1); } @@ -7836,10 +7836,10 @@ 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"); + "always_le_ttext_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_le_ttext_text(arg0, arg1); } @@ -7849,10 +7849,10 @@ 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"); + "always_lt_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_lt_float_tfloat(arg0, arg1); } @@ -7862,10 +7862,10 @@ 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"); + "always_lt_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_lt_int_tint(arg0, arg1); } @@ -7875,10 +7875,10 @@ 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"); + "always_lt_text_ttext requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_lt_text_ttext(arg0, arg1); } @@ -7888,10 +7888,10 @@ 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"); + "always_lt_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_lt_tfloat_float(arg0, arg1); } @@ -7901,10 +7901,10 @@ 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"); + "always_lt_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_lt_tint_int(arg0, arg1); } @@ -7914,10 +7914,10 @@ 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"); + "always_lt_ttext_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_lt_ttext_text(arg0, arg1); } @@ -7927,10 +7927,10 @@ 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"); + "always_ne_bool_tbool requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_bool_tbool(arg0, arg1); } @@ -7940,10 +7940,10 @@ 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"); + "always_ne_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_float_tfloat(arg0, arg1); } @@ -7953,10 +7953,10 @@ 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"); + "always_ne_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_int_tint(arg0, arg1); } @@ -7966,10 +7966,10 @@ 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"); + "always_ne_tbool_bool requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_tbool_bool(arg0, arg1); } @@ -7979,10 +7979,10 @@ 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"); + "always_ne_text_ttext requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_text_ttext(arg0, arg1); } @@ -7992,10 +7992,10 @@ 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"); + "always_ne_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_tfloat_float(arg0, arg1); } @@ -8005,10 +8005,10 @@ 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"); + "always_ne_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_tint_int(arg0, arg1); } @@ -8018,10 +8018,10 @@ 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"); + "always_ne_ttext_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_ttext_text(arg0, arg1); } @@ -8031,10 +8031,10 @@ 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"); + "ever_eq_bool_tbool requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_bool_tbool(arg0, arg1); } @@ -8044,10 +8044,10 @@ 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"); + "ever_eq_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_float_tfloat(arg0, arg1); } @@ -8057,10 +8057,10 @@ 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"); + "ever_eq_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_int_tint(arg0, arg1); } @@ -8070,10 +8070,10 @@ 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"); + "ever_eq_tbool_bool requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_tbool_bool(arg0, arg1); } @@ -8083,10 +8083,10 @@ 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"); + "ever_eq_text_ttext requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_text_ttext(arg0, arg1); } @@ -8096,10 +8096,10 @@ 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"); + "ever_eq_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_tfloat_float(arg0, arg1); } @@ -8109,10 +8109,10 @@ 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"); + "ever_eq_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_tint_int(arg0, arg1); } @@ -8122,10 +8122,10 @@ 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"); + "ever_eq_ttext_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_ttext_text(arg0, arg1); } @@ -8135,10 +8135,10 @@ 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"); + "ever_ge_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ge_float_tfloat(arg0, arg1); } @@ -8148,10 +8148,10 @@ 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"); + "ever_ge_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ge_int_tint(arg0, arg1); } @@ -8161,10 +8161,10 @@ 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"); + "ever_ge_text_ttext requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ge_text_ttext(arg0, arg1); } @@ -8174,10 +8174,10 @@ 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"); + "ever_ge_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ge_tfloat_float(arg0, arg1); } @@ -8187,10 +8187,10 @@ 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"); + "ever_ge_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ge_tint_int(arg0, arg1); } @@ -8200,10 +8200,10 @@ 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"); + "ever_ge_ttext_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ge_ttext_text(arg0, arg1); } @@ -8213,10 +8213,10 @@ 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"); + "ever_gt_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_gt_float_tfloat(arg0, arg1); } @@ -8226,10 +8226,10 @@ 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"); + "ever_gt_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_gt_int_tint(arg0, arg1); } @@ -8239,10 +8239,10 @@ 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"); + "ever_gt_text_ttext requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_gt_text_ttext(arg0, arg1); } @@ -8252,10 +8252,10 @@ 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"); + "ever_gt_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_gt_tfloat_float(arg0, arg1); } @@ -8265,10 +8265,10 @@ 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"); + "ever_gt_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_gt_tint_int(arg0, arg1); } @@ -8278,10 +8278,10 @@ 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"); + "ever_gt_ttext_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_gt_ttext_text(arg0, arg1); } @@ -8291,10 +8291,10 @@ 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"); + "ever_le_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_le_float_tfloat(arg0, arg1); } @@ -8304,10 +8304,10 @@ 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"); + "ever_le_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_le_int_tint(arg0, arg1); } @@ -8317,10 +8317,10 @@ 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"); + "ever_le_text_ttext requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_le_text_ttext(arg0, arg1); } @@ -8330,10 +8330,10 @@ 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"); + "ever_le_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_le_tfloat_float(arg0, arg1); } @@ -8343,10 +8343,10 @@ 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"); + "ever_le_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_le_tint_int(arg0, arg1); } @@ -8356,10 +8356,10 @@ 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"); + "ever_le_ttext_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_le_ttext_text(arg0, arg1); } @@ -8369,10 +8369,10 @@ 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"); + "ever_lt_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_lt_float_tfloat(arg0, arg1); } @@ -8382,10 +8382,10 @@ 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"); + "ever_lt_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_lt_int_tint(arg0, arg1); } @@ -8395,10 +8395,10 @@ 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"); + "ever_lt_text_ttext requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_lt_text_ttext(arg0, arg1); } @@ -8408,10 +8408,10 @@ 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"); + "ever_lt_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_lt_tfloat_float(arg0, arg1); } @@ -8421,10 +8421,10 @@ 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"); + "ever_lt_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_lt_tint_int(arg0, arg1); } @@ -8434,10 +8434,10 @@ 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"); + "ever_lt_ttext_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_lt_ttext_text(arg0, arg1); } @@ -8447,10 +8447,10 @@ 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"); + "ever_ne_bool_tbool requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_bool_tbool(arg0, arg1); } @@ -8460,10 +8460,10 @@ 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"); + "ever_ne_float_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_float_tfloat(arg0, arg1); } @@ -8473,10 +8473,10 @@ 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"); + "ever_ne_int_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_int_tint(arg0, arg1); } @@ -8486,10 +8486,10 @@ 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"); + "ever_ne_tbool_bool requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_tbool_bool(arg0, arg1); } @@ -8499,10 +8499,10 @@ 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"); + "ever_ne_text_ttext requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_text_ttext(arg0, arg1); } @@ -8512,10 +8512,10 @@ 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"); + "ever_ne_tfloat_float requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_tfloat_float(arg0, arg1); } @@ -8525,10 +8525,10 @@ 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"); + "ever_ne_tint_int requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_tint_int(arg0, arg1); } @@ -8538,10 +8538,10 @@ 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"); + "ever_ne_ttext_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_ttext_text(arg0, arg1); } @@ -8551,10 +8551,10 @@ 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"); + "adjacent_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_temporal_temporal(arg0, arg1); } @@ -8564,10 +8564,10 @@ 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"); + "adjacent_tnumber_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_tnumber_tnumber(arg0, arg1); } @@ -8577,10 +8577,10 @@ 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"); + "after_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_temporal_temporal(arg0, arg1); } @@ -8590,10 +8590,10 @@ 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"); + "after_tnumber_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_tnumber_tnumber(arg0, arg1); } @@ -8603,10 +8603,10 @@ 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"); + "always_eq_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_temporal_temporal(arg0, arg1); } @@ -8616,10 +8616,10 @@ 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"); + "always_ge_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ge_temporal_temporal(arg0, arg1); } @@ -8629,10 +8629,10 @@ 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"); + "always_gt_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_gt_temporal_temporal(arg0, arg1); } @@ -8642,10 +8642,10 @@ 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"); + "always_le_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_le_temporal_temporal(arg0, arg1); } @@ -8655,10 +8655,10 @@ 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"); + "always_lt_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_lt_temporal_temporal(arg0, arg1); } @@ -8668,10 +8668,10 @@ 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"); + "always_ne_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_temporal_temporal(arg0, arg1); } @@ -8681,10 +8681,10 @@ 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"); + "before_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_temporal_temporal(arg0, arg1); } @@ -8694,10 +8694,10 @@ 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"); + "before_tnumber_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_tnumber_tnumber(arg0, arg1); } @@ -8707,10 +8707,10 @@ 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"); + "contained_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_temporal_temporal(arg0, arg1); } @@ -8720,10 +8720,10 @@ 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"); + "contained_tnumber_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_tnumber_tnumber(arg0, arg1); } @@ -8733,10 +8733,10 @@ 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"); + "contains_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_temporal_temporal(arg0, arg1); } @@ -8746,10 +8746,10 @@ 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"); + "contains_tnumber_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_tnumber_tnumber(arg0, arg1); } @@ -8759,10 +8759,10 @@ 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"); + "ever_eq_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_temporal_temporal(arg0, arg1); } @@ -8772,10 +8772,10 @@ 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"); + "ever_ge_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ge_temporal_temporal(arg0, arg1); } @@ -8785,10 +8785,10 @@ 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"); + "ever_gt_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_gt_temporal_temporal(arg0, arg1); } @@ -8798,10 +8798,10 @@ 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"); + "ever_le_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_le_temporal_temporal(arg0, arg1); } @@ -8811,10 +8811,10 @@ 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"); + "ever_lt_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_lt_temporal_temporal(arg0, arg1); } @@ -8824,10 +8824,10 @@ 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"); + "ever_ne_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_temporal_temporal(arg0, arg1); } @@ -8837,10 +8837,10 @@ 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"); + "left_tnumber_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_tnumber_tnumber(arg0, arg1); } @@ -8850,10 +8850,10 @@ 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"); + "nad_tfloat_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tfloat_tfloat(arg0, arg1); } @@ -8863,10 +8863,10 @@ 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"); + "nad_tint_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tint_tint(arg0, arg1); } @@ -8876,10 +8876,10 @@ 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"); + "overafter_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_temporal_temporal(arg0, arg1); } @@ -8889,10 +8889,10 @@ 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"); + "overafter_tnumber_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_tnumber_tnumber(arg0, arg1); } @@ -8902,10 +8902,10 @@ 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"); + "overbefore_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_temporal_temporal(arg0, arg1); } @@ -8915,10 +8915,10 @@ 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"); + "overbefore_tnumber_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_tnumber_tnumber(arg0, arg1); } @@ -8928,10 +8928,10 @@ 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"); + "overlaps_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overlaps_temporal_temporal(arg0, arg1); } @@ -8941,10 +8941,10 @@ 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"); + "overlaps_tnumber_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overlaps_tnumber_tnumber(arg0, arg1); } @@ -8954,10 +8954,10 @@ 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"); + "overleft_tnumber_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_tnumber_tnumber(arg0, arg1); } @@ -8967,10 +8967,10 @@ 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"); + "overright_tnumber_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_tnumber_tnumber(arg0, arg1); } @@ -8980,10 +8980,10 @@ 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"); + "right_tnumber_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_tnumber_tnumber(arg0, arg1); } @@ -8993,10 +8993,10 @@ 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"); + "same_temporal_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.same_temporal_temporal(arg0, arg1); } @@ -9006,10 +9006,10 @@ 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"); + "same_tnumber_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.same_tnumber_tnumber(arg0, arg1); } @@ -9019,10 +9019,10 @@ 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"); + "tdistance_tnumber_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdistance_tnumber_tnumber(arg0, arg1); } @@ -9032,10 +9032,10 @@ 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"); + "bool_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bool_in(arg0); } @@ -9045,10 +9045,10 @@ 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"); + "bool_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.bool_out(arg0); } @@ -9058,10 +9058,10 @@ 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"); + "cstring2text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.cstring2text(arg0); } @@ -9071,10 +9071,10 @@ 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"); + "float8_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.float8_out(arg0, arg1); } @@ -9084,10 +9084,10 @@ 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"); + "meos_array_add requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } GeneratedFunctions.meos_array_add(arg0, arg1); } @@ -9097,10 +9097,10 @@ 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"); + "meos_array_count requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.meos_array_count(arg0); } @@ -9110,10 +9110,10 @@ 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"); + "meos_array_create requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.meos_array_create(arg0); } @@ -9123,10 +9123,10 @@ 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"); + "meos_array_destroy requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } GeneratedFunctions.meos_array_destroy(arg0); } @@ -9136,10 +9136,10 @@ 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"); + "meos_array_destroy_free requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } GeneratedFunctions.meos_array_destroy_free(arg0); } @@ -9149,10 +9149,10 @@ 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"); + "meos_array_get requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.meos_array_get(arg0, arg1); } @@ -9162,10 +9162,10 @@ 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"); + "meos_array_reset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } GeneratedFunctions.meos_array_reset(arg0); } @@ -9175,10 +9175,10 @@ 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"); + "meos_array_reset_free requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } GeneratedFunctions.meos_array_reset_free(arg0); } @@ -9191,7 +9191,7 @@ public static void meos_array_reset_free(Pointer arg0) { public static int meos_errno() { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "meos_errno requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "meos_errno requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.meos_errno(); } @@ -9204,7 +9204,7 @@ public static int meos_errno() { public static int meos_errno_reset() { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "meos_errno_reset requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "meos_errno_reset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.meos_errno_reset(); } @@ -9217,7 +9217,7 @@ public static int meos_errno_reset() { public static int meos_errno_restore(int arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "meos_errno_restore requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "meos_errno_restore requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.meos_errno_restore(arg0); } @@ -9230,7 +9230,7 @@ public static int meos_errno_restore(int arg0) { public static int meos_errno_set(int arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "meos_errno_set requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "meos_errno_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.meos_errno_set(arg0); } @@ -9240,10 +9240,10 @@ 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"); + "meos_error requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } GeneratedFunctions.meos_error(arg0, arg1, arg2); } @@ -9256,7 +9256,7 @@ public static void meos_error(int arg0, int arg1, String arg2) { public static void meos_finalize() { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "meos_finalize requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "meos_finalize requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } GeneratedFunctions.meos_finalize(); } @@ -9269,7 +9269,7 @@ public static void meos_finalize() { public static void meos_finalize_projsrs() { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "meos_finalize_projsrs requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "meos_finalize_projsrs requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } GeneratedFunctions.meos_finalize_projsrs(); } @@ -9282,7 +9282,7 @@ public static void meos_finalize_projsrs() { public static void meos_finalize_timezone() { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "meos_finalize_timezone requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "meos_finalize_timezone requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } GeneratedFunctions.meos_finalize_timezone(); } @@ -9295,7 +9295,7 @@ public static void meos_finalize_timezone() { public static void meos_finalize_ways() { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "meos_finalize_ways requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "meos_finalize_ways requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } GeneratedFunctions.meos_finalize_ways(); } @@ -9305,10 +9305,10 @@ 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"); + "meos_get_datestyle requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.meos_get_datestyle(); } @@ -9318,10 +9318,10 @@ 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"); + "meos_get_intervalstyle requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.meos_get_intervalstyle(); } @@ -9334,7 +9334,7 @@ public static String meos_get_intervalstyle() { public static void meos_initialize() { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "meos_initialize requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "meos_initialize requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } GeneratedFunctions.meos_initialize(); } @@ -9344,10 +9344,10 @@ 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"); + "meos_initialize_error_handler requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } GeneratedFunctions.meos_initialize_error_handler(arg0); } @@ -9357,10 +9357,10 @@ 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"); + "meos_initialize_timezone requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } GeneratedFunctions.meos_initialize_timezone(arg0); } @@ -9370,10 +9370,10 @@ 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"); + "meos_set_datestyle requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.meos_set_datestyle(arg0, arg1); } @@ -9383,10 +9383,10 @@ 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"); + "meos_set_intervalstyle requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.meos_set_intervalstyle(arg0, arg1); } @@ -9396,10 +9396,10 @@ 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"); + "meos_set_spatial_ref_sys_csv requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } GeneratedFunctions.meos_set_spatial_ref_sys_csv(arg0); } @@ -9409,10 +9409,10 @@ 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"); + "pg_date_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pg_date_in(arg0); } @@ -9422,10 +9422,10 @@ 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"); + "pg_date_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pg_date_out(arg0); } @@ -9435,10 +9435,10 @@ 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"); + "pg_interval_cmp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pg_interval_cmp(arg0, arg1); } @@ -9448,10 +9448,10 @@ 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"); + "pg_interval_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pg_interval_in(arg0, arg1); } @@ -9461,10 +9461,10 @@ 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"); + "pg_interval_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pg_interval_out(arg0); } @@ -9474,10 +9474,10 @@ 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"); + "pg_timestamp_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pg_timestamp_in(arg0, arg1); } @@ -9487,10 +9487,10 @@ 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"); + "pg_timestamp_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pg_timestamp_out(arg0); } @@ -9500,10 +9500,10 @@ 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"); + "pg_timestamptz_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pg_timestamptz_in(arg0, arg1); } @@ -9513,10 +9513,10 @@ 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"); + "pg_timestamptz_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pg_timestamptz_out(arg0); } @@ -9526,10 +9526,10 @@ 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"); + "rtree_create_bigintspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.rtree_create_bigintspan(); } @@ -9539,10 +9539,10 @@ 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"); + "rtree_create_datespan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.rtree_create_datespan(); } @@ -9552,10 +9552,10 @@ 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"); + "rtree_create_floatspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.rtree_create_floatspan(); } @@ -9565,10 +9565,10 @@ 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"); + "rtree_create_intspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.rtree_create_intspan(); } @@ -9578,10 +9578,10 @@ 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"); + "rtree_create_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.rtree_create_stbox(); } @@ -9591,10 +9591,10 @@ 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"); + "rtree_create_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.rtree_create_tbox(); } @@ -9604,10 +9604,10 @@ 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"); + "rtree_create_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.rtree_create_tstzspan(); } @@ -9617,10 +9617,10 @@ 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"); + "rtree_free requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } GeneratedFunctions.rtree_free(arg0); } @@ -9630,10 +9630,10 @@ 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"); + "rtree_insert requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } GeneratedFunctions.rtree_insert(arg0, arg1, arg2); } @@ -9643,10 +9643,10 @@ 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"); + "rtree_insert_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } GeneratedFunctions.rtree_insert_temporal(arg0, arg1, arg2); } @@ -9656,10 +9656,10 @@ 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"); + "rtree_search requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.rtree_search(arg0, arg1, arg2, arg3); } @@ -9669,10 +9669,10 @@ 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"); + "rtree_search_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.rtree_search_temporal(arg0, arg1, arg2, arg3); } @@ -9682,10 +9682,10 @@ 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"); + "text2cstring requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.text2cstring(arg0); } @@ -9695,10 +9695,10 @@ 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"); + "text_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.text_in(arg0); } @@ -9708,10 +9708,10 @@ 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"); + "text_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.text_out(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeGeo.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeGeo.java index 93f0b9a..9255cb1 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeGeo.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeGeo.java @@ -22,10 +22,10 @@ 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"); + "above_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.above_stbox_stbox(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "above_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.above_stbox_tspatial(arg0, arg1); } @@ -48,10 +48,10 @@ 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"); + "adjacent_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_stbox_stbox(arg0, arg1); } @@ -61,10 +61,10 @@ 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"); + "adjacent_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_stbox_tspatial(arg0, arg1); } @@ -74,10 +74,10 @@ 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"); + "after_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_stbox_stbox(arg0, arg1); } @@ -87,10 +87,10 @@ 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"); + "after_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_stbox_tspatial(arg0, arg1); } @@ -100,10 +100,10 @@ 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"); + "back_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.back_stbox_stbox(arg0, arg1); } @@ -113,10 +113,10 @@ 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"); + "back_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.back_stbox_tspatial(arg0, arg1); } @@ -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"); + "bearing_point_point requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.bearing_point_point(arg0, arg1, arg2); + return GeneratedFunctions.bearing_point_point(arg0, arg1); } /** @@ -139,10 +139,10 @@ 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"); + "before_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_stbox_stbox(arg0, arg1); } @@ -152,10 +152,10 @@ 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"); + "before_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_stbox_tspatial(arg0, arg1); } @@ -165,10 +165,10 @@ 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"); + "below_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.below_stbox_stbox(arg0, arg1); } @@ -178,10 +178,10 @@ 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"); + "below_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.below_stbox_tspatial(arg0, arg1); } @@ -191,10 +191,10 @@ 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"); + "box3d_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.box3d_make(arg0, arg1, arg2, arg3, arg4, arg5, arg6); } @@ -204,10 +204,10 @@ 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"); + "box3d_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.box3d_to_stbox(arg0); } @@ -217,10 +217,10 @@ 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"); + "contained_geo_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_geo_set(arg0, arg1); } @@ -230,10 +230,10 @@ 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"); + "contained_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_stbox_stbox(arg0, arg1); } @@ -243,10 +243,10 @@ 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"); + "contained_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_stbox_tspatial(arg0, arg1); } @@ -256,10 +256,10 @@ 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"); + "contains_set_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_set_geo(arg0, arg1); } @@ -269,10 +269,10 @@ 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"); + "contains_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_stbox_stbox(arg0, arg1); } @@ -282,10 +282,10 @@ 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"); + "contains_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_stbox_tspatial(arg0, arg1); } @@ -295,10 +295,10 @@ 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"); + "front_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.front_stbox_stbox(arg0, arg1); } @@ -308,10 +308,10 @@ 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"); + "front_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.front_stbox_tspatial(arg0, arg1); } @@ -321,10 +321,10 @@ 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"); + "gbox_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.gbox_make(arg0, arg1, arg2, arg3, arg4, arg5, arg6); } @@ -334,10 +334,10 @@ 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"); + "gbox_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.gbox_to_stbox(arg0); } @@ -347,10 +347,10 @@ 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"); + "geo_cluster_dbscan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_cluster_dbscan(arg0, arg1, arg2, arg3, arg4); } @@ -360,10 +360,10 @@ 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"); + "geo_cluster_intersecting requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_cluster_intersecting(arg0, arg1, arg2); } @@ -373,10 +373,10 @@ 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"); + "geo_cluster_kmeans requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_cluster_kmeans(arg0, arg1, arg2); } @@ -386,10 +386,10 @@ 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"); + "geo_cluster_within requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_cluster_within(arg0, arg1, arg2, arg3); } @@ -399,10 +399,10 @@ 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"); + "geo_collect_garray requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_collect_garray(arg0, arg1); } @@ -412,10 +412,10 @@ 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"); + "geo_copy requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_copy(arg0); } @@ -425,10 +425,10 @@ 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"); + "geo_equals requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_equals(arg0, arg1); } @@ -438,10 +438,10 @@ 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"); + "geo_geo_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_geo_n(arg0, arg1); } @@ -451,10 +451,10 @@ 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"); + "geo_is_empty requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_is_empty(arg0); } @@ -464,10 +464,10 @@ 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"); + "geo_is_unitary requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_is_unitary(arg0); } @@ -477,10 +477,10 @@ 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"); + "geo_makeline_garray requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_makeline_garray(arg0, arg1); } @@ -490,10 +490,10 @@ 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"); + "geo_num_geos requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_num_geos(arg0); } @@ -503,10 +503,10 @@ 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"); + "geo_num_points requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_num_points(arg0); } @@ -516,10 +516,10 @@ 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"); + "geo_pointarr requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_pointarr(arg0, arg1); } @@ -529,10 +529,10 @@ 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"); + "geo_points requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_points(arg0); } @@ -542,10 +542,10 @@ 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"); + "geo_reverse requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_reverse(arg0); } @@ -555,10 +555,10 @@ 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"); + "geo_round requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_round(arg0, arg1); } @@ -568,10 +568,10 @@ 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"); + "geo_same requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_same(arg0, arg1); } @@ -581,10 +581,10 @@ 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"); + "geo_set_srid requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_set_srid(arg0, arg1); } @@ -594,10 +594,10 @@ 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"); + "geo_split_each_n_stboxes requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_split_each_n_stboxes(arg0, arg1, arg2); } @@ -607,10 +607,10 @@ 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"); + "geo_split_n_stboxes requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_split_n_stboxes(arg0, arg1, arg2); } @@ -620,10 +620,10 @@ 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"); + "geo_srid requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_srid(arg0); } @@ -633,10 +633,10 @@ 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"); + "geo_stboxes requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_stboxes(arg0, arg1); } @@ -646,10 +646,10 @@ 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"); + "geo_timestamptz_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_timestamptz_to_stbox(arg0, arg1); } @@ -659,10 +659,10 @@ 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"); + "geo_to_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_to_set(arg0); } @@ -672,10 +672,10 @@ 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"); + "geo_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_to_stbox(arg0); } @@ -685,10 +685,10 @@ 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"); + "geo_transform requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_transform(arg0, arg1); } @@ -698,10 +698,10 @@ 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"); + "geo_transform_pipeline requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_transform_pipeline(arg0, arg1, arg2, arg3); } @@ -711,10 +711,10 @@ 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"); + "geo_tstzspan_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_tstzspan_to_stbox(arg0, arg1); } @@ -724,10 +724,10 @@ 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"); + "geo_typename requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_typename(arg0); } @@ -737,10 +737,10 @@ 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"); + "geo_union_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_union_transfn(arg0, arg1); } @@ -750,10 +750,10 @@ 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"); + "geog_area requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geog_area(arg0, arg1); } @@ -763,10 +763,10 @@ 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"); + "geog_centroid requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geog_centroid(arg0, arg1); } @@ -776,10 +776,10 @@ 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"); + "geog_distance requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geog_distance(arg0, arg1); } @@ -789,10 +789,10 @@ 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"); + "geog_dwithin requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geog_dwithin(arg0, arg1, arg2, arg3); } @@ -802,10 +802,10 @@ 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"); + "geog_from_binary requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geog_from_binary(arg0); } @@ -815,10 +815,10 @@ 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"); + "geog_intersects requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geog_intersects(arg0, arg1, arg2); } @@ -828,10 +828,10 @@ 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"); + "geog_length requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geog_length(arg0, arg1); } @@ -841,10 +841,10 @@ 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"); + "geog_perimeter requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geog_perimeter(arg0, arg1); } @@ -854,10 +854,10 @@ 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"); + "geog_to_geom requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geog_to_geom(arg0); } @@ -867,10 +867,10 @@ 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"); + "geom_array_union requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_array_union(arg0, arg1); } @@ -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"); + "geom_azimuth requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.geom_azimuth(arg0, arg1, arg2); + return GeneratedFunctions.geom_azimuth(arg0, arg1); } /** @@ -893,10 +893,10 @@ 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"); + "geom_boundary requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_boundary(arg0); } @@ -906,10 +906,10 @@ 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"); + "geom_buffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_buffer(arg0, arg1, arg2); } @@ -919,10 +919,10 @@ 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"); + "geom_centroid requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_centroid(arg0); } @@ -932,10 +932,10 @@ 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"); + "geom_contains requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_contains(arg0, arg1); } @@ -945,10 +945,10 @@ 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"); + "geom_convex_hull requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_convex_hull(arg0); } @@ -958,10 +958,10 @@ 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"); + "geom_covers requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_covers(arg0, arg1); } @@ -971,10 +971,10 @@ 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"); + "geom_difference2d requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_difference2d(arg0, arg1); } @@ -984,10 +984,10 @@ 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"); + "geom_disjoint2d requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_disjoint2d(arg0, arg1); } @@ -997,10 +997,10 @@ 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"); + "geom_distance2d requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_distance2d(arg0, arg1); } @@ -1010,10 +1010,10 @@ 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"); + "geom_distance3d requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_distance3d(arg0, arg1); } @@ -1023,10 +1023,10 @@ 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"); + "geom_dwithin2d requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_dwithin2d(arg0, arg1, arg2); } @@ -1036,10 +1036,10 @@ 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"); + "geom_dwithin3d requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_dwithin3d(arg0, arg1, arg2); } @@ -1049,10 +1049,10 @@ 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"); + "geom_intersection2d requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_intersection2d(arg0, arg1); } @@ -1062,10 +1062,10 @@ 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"); + "geom_intersection2d_coll requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_intersection2d_coll(arg0, arg1); } @@ -1075,10 +1075,10 @@ 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"); + "geom_intersects2d requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_intersects2d(arg0, arg1); } @@ -1088,10 +1088,10 @@ 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"); + "geom_intersects3d requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_intersects3d(arg0, arg1); } @@ -1101,10 +1101,10 @@ 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"); + "geom_length requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_length(arg0); } @@ -1114,10 +1114,10 @@ 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"); + "geom_min_bounding_radius requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_min_bounding_radius(arg0, arg1); } @@ -1127,10 +1127,10 @@ 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"); + "geom_perimeter requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_perimeter(arg0); } @@ -1140,10 +1140,10 @@ 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"); + "geom_relate_pattern requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_relate_pattern(arg0, arg1, arg2); } @@ -1153,10 +1153,10 @@ 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"); + "geom_shortestline2d requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_shortestline2d(arg0, arg1); } @@ -1166,10 +1166,10 @@ 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"); + "geom_shortestline3d requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_shortestline3d(arg0, arg1); } @@ -1179,10 +1179,10 @@ 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"); + "geom_to_geog requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_to_geog(arg0); } @@ -1192,10 +1192,10 @@ 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"); + "geom_touches requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_touches(arg0, arg1); } @@ -1205,10 +1205,10 @@ 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"); + "geom_unary_union requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_unary_union(arg0, arg1); } @@ -1218,10 +1218,10 @@ 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"); + "intersection_geo_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_geo_set(arg0, arg1); } @@ -1231,10 +1231,10 @@ 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"); + "intersection_set_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_set_geo(arg0, arg1); } @@ -1244,10 +1244,10 @@ 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"); + "intersection_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_stbox_stbox(arg0, arg1); } @@ -1257,10 +1257,10 @@ 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"); + "left_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_stbox_stbox(arg0, arg1); } @@ -1270,10 +1270,10 @@ 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"); + "left_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_stbox_tspatial(arg0, arg1); } @@ -1283,10 +1283,10 @@ 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"); + "line_numpoints requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.line_numpoints(arg0); } @@ -1296,10 +1296,10 @@ 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"); + "overabove_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overabove_stbox_stbox(arg0, arg1); } @@ -1309,10 +1309,10 @@ 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"); + "overabove_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overabove_stbox_tspatial(arg0, arg1); } @@ -1322,10 +1322,10 @@ 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"); + "overafter_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_stbox_stbox(arg0, arg1); } @@ -1335,10 +1335,10 @@ 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"); + "overafter_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_stbox_tspatial(arg0, arg1); } @@ -1348,10 +1348,10 @@ 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"); + "overback_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overback_stbox_stbox(arg0, arg1); } @@ -1361,10 +1361,10 @@ 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"); + "overback_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overback_stbox_tspatial(arg0, arg1); } @@ -1374,10 +1374,10 @@ 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"); + "overbefore_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_stbox_stbox(arg0, arg1); } @@ -1387,10 +1387,10 @@ 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"); + "overbefore_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_stbox_tspatial(arg0, arg1); } @@ -1400,10 +1400,10 @@ 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"); + "overbelow_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbelow_stbox_stbox(arg0, arg1); } @@ -1413,10 +1413,10 @@ 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"); + "overbelow_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbelow_stbox_tspatial(arg0, arg1); } @@ -1426,10 +1426,10 @@ 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"); + "overfront_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overfront_stbox_stbox(arg0, arg1); } @@ -1439,10 +1439,10 @@ 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"); + "overfront_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overfront_stbox_tspatial(arg0, arg1); } @@ -1452,10 +1452,10 @@ 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"); + "overlaps_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overlaps_stbox_stbox(arg0, arg1); } @@ -1465,10 +1465,10 @@ 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"); + "overlaps_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overlaps_stbox_tspatial(arg0, arg1); } @@ -1478,10 +1478,10 @@ 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"); + "overleft_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_stbox_stbox(arg0, arg1); } @@ -1491,10 +1491,10 @@ 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"); + "overleft_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_stbox_tspatial(arg0, arg1); } @@ -1504,10 +1504,10 @@ 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"); + "overright_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_stbox_stbox(arg0, arg1); } @@ -1517,10 +1517,10 @@ 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"); + "overright_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_stbox_tspatial(arg0, arg1); } @@ -1530,10 +1530,10 @@ 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"); + "right_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_stbox_stbox(arg0, arg1); } @@ -1543,10 +1543,10 @@ 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"); + "right_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_stbox_tspatial(arg0, arg1); } @@ -1556,10 +1556,10 @@ 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"); + "same_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.same_stbox_stbox(arg0, arg1); } @@ -1569,10 +1569,10 @@ 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"); + "same_stbox_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.same_stbox_tspatial(arg0, arg1); } @@ -1582,10 +1582,10 @@ 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"); + "same_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.same_tspatial_stbox(arg0, arg1); } @@ -1595,10 +1595,10 @@ 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"); + "spatialset_srid requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spatialset_srid(arg0); } @@ -1608,10 +1608,10 @@ 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"); + "spatialset_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spatialset_to_stbox(arg0); } @@ -1621,10 +1621,10 @@ 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"); + "stboxarr_round requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stboxarr_round(arg0, arg1, arg2); } @@ -1634,10 +1634,10 @@ 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"); + "teq_geo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.teq_geo_tgeo(arg0, arg1); } @@ -1647,10 +1647,10 @@ 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"); + "teq_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.teq_tgeo_geo(arg0, arg1); } @@ -1660,10 +1660,10 @@ 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"); + "tgeoinst_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeoinst_make(arg0, arg1); } @@ -1673,10 +1673,10 @@ 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"); + "timestamptz_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.timestamptz_to_stbox(arg0); } @@ -1686,10 +1686,10 @@ 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"); + "tne_geo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tne_geo_tgeo(arg0, arg1); } @@ -1699,10 +1699,10 @@ 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"); + "tne_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tne_tgeo_geo(arg0, arg1); } @@ -1712,10 +1712,10 @@ 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"); + "tpointinst_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpointinst_make(arg0, arg1); } @@ -1725,10 +1725,10 @@ 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"); + "union_geo_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_geo_set(arg0, arg1); } @@ -1738,10 +1738,10 @@ 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"); + "union_set_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_set_geo(arg0, arg1); } @@ -1751,10 +1751,10 @@ 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"); + "union_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_stbox_stbox(arg0, arg1, arg2); } @@ -1764,10 +1764,10 @@ 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"); + "above_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.above_tspatial_stbox(arg0, arg1); } @@ -1777,10 +1777,10 @@ 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"); + "acontains_geo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.acontains_geo_tgeo(arg0, arg1); } @@ -1790,10 +1790,10 @@ 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"); + "acontains_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.acontains_tgeo_geo(arg0, arg1); } @@ -1803,10 +1803,10 @@ 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"); + "adisjoint_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adisjoint_tgeo_geo(arg0, arg1); } @@ -1816,10 +1816,10 @@ 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"); + "adjacent_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_tspatial_stbox(arg0, arg1); } @@ -1829,10 +1829,10 @@ 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"); + "adwithin_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adwithin_tgeo_geo(arg0, arg1, arg2); } @@ -1842,10 +1842,10 @@ 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"); + "after_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_tspatial_stbox(arg0, arg1); } @@ -1855,10 +1855,10 @@ 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"); + "aintersects_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.aintersects_tgeo_geo(arg0, arg1); } @@ -1868,10 +1868,10 @@ 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"); + "atouches_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.atouches_tgeo_geo(arg0, arg1); } @@ -1881,10 +1881,10 @@ 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"); + "atouches_tpoint_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.atouches_tpoint_geo(arg0, arg1); } @@ -1894,10 +1894,10 @@ 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"); + "back_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.back_tspatial_stbox(arg0, arg1); } @@ -1907,10 +1907,10 @@ 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"); + "before_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_tspatial_stbox(arg0, arg1); } @@ -1920,10 +1920,10 @@ 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"); + "below_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.below_tspatial_stbox(arg0, arg1); } @@ -1933,10 +1933,10 @@ 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"); + "contained_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_tspatial_stbox(arg0, arg1); } @@ -1946,10 +1946,10 @@ 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"); + "contains_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_tspatial_stbox(arg0, arg1); } @@ -1959,10 +1959,10 @@ 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"); + "econtains_geo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.econtains_geo_tgeo(arg0, arg1); } @@ -1972,10 +1972,10 @@ 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"); + "econtains_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.econtains_tgeo_geo(arg0, arg1); } @@ -1985,10 +1985,10 @@ 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"); + "ecovers_geo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ecovers_geo_tgeo(arg0, arg1); } @@ -1998,10 +1998,10 @@ 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"); + "ecovers_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ecovers_tgeo_geo(arg0, arg1); } @@ -2011,10 +2011,10 @@ 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"); + "edisjoint_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.edisjoint_tgeo_geo(arg0, arg1); } @@ -2024,10 +2024,10 @@ 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"); + "edwithin_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.edwithin_tgeo_geo(arg0, arg1, arg2); } @@ -2037,10 +2037,10 @@ 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"); + "eintersects_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.eintersects_tgeo_geo(arg0, arg1); } @@ -2050,10 +2050,10 @@ 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"); + "etouches_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.etouches_tgeo_geo(arg0, arg1); } @@ -2063,10 +2063,10 @@ 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"); + "etouches_tpoint_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.etouches_tpoint_geo(arg0, arg1); } @@ -2076,10 +2076,10 @@ 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"); + "front_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.front_tspatial_stbox(arg0, arg1); } @@ -2089,10 +2089,10 @@ 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"); + "left_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_tspatial_stbox(arg0, arg1); } @@ -2102,10 +2102,10 @@ 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"); + "minus_geo_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_geo_set(arg0, arg1); } @@ -2115,10 +2115,10 @@ 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"); + "minus_set_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_set_geo(arg0, arg1); } @@ -2128,10 +2128,10 @@ 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"); + "nad_stbox_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_stbox_geo(arg0, arg1); } @@ -2141,10 +2141,10 @@ 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"); + "nad_stbox_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_stbox_stbox(arg0, arg1); } @@ -2154,10 +2154,10 @@ 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"); + "nad_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tgeo_geo(arg0, arg1); } @@ -2167,10 +2167,10 @@ 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"); + "nad_tgeo_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tgeo_stbox(arg0, arg1); } @@ -2180,10 +2180,10 @@ 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"); + "nai_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nai_tgeo_geo(arg0, arg1); } @@ -2193,10 +2193,10 @@ 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"); + "overabove_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overabove_tspatial_stbox(arg0, arg1); } @@ -2206,10 +2206,10 @@ 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"); + "overafter_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_tspatial_stbox(arg0, arg1); } @@ -2219,10 +2219,10 @@ 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"); + "overback_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overback_tspatial_stbox(arg0, arg1); } @@ -2232,10 +2232,10 @@ 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"); + "overbefore_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_tspatial_stbox(arg0, arg1); } @@ -2245,10 +2245,10 @@ 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"); + "overbelow_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbelow_tspatial_stbox(arg0, arg1); } @@ -2258,10 +2258,10 @@ 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"); + "overfront_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overfront_tspatial_stbox(arg0, arg1); } @@ -2271,10 +2271,10 @@ 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"); + "overlaps_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overlaps_tspatial_stbox(arg0, arg1); } @@ -2284,10 +2284,10 @@ 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"); + "overleft_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_tspatial_stbox(arg0, arg1); } @@ -2297,10 +2297,10 @@ 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"); + "overright_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_tspatial_stbox(arg0, arg1); } @@ -2310,10 +2310,10 @@ 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"); + "right_tspatial_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_tspatial_stbox(arg0, arg1); } @@ -2323,10 +2323,10 @@ 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"); + "shortestline_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.shortestline_tgeo_geo(arg0, arg1); } @@ -2336,10 +2336,10 @@ 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"); + "tcontains_geo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcontains_geo_tgeo(arg0, arg1); } @@ -2349,10 +2349,10 @@ 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"); + "tcontains_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcontains_tgeo_geo(arg0, arg1); } @@ -2362,10 +2362,10 @@ 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"); + "tcovers_geo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcovers_geo_tgeo(arg0, arg1); } @@ -2375,10 +2375,10 @@ 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"); + "tcovers_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcovers_tgeo_geo(arg0, arg1); } @@ -2388,10 +2388,10 @@ 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"); + "tdisjoint_geo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdisjoint_geo_tgeo(arg0, arg1); } @@ -2401,10 +2401,10 @@ 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"); + "tdisjoint_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdisjoint_tgeo_geo(arg0, arg1); } @@ -2414,10 +2414,10 @@ 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"); + "tdistance_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdistance_tgeo_geo(arg0, arg1); } @@ -2427,10 +2427,10 @@ 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"); + "tdwithin_geo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdwithin_geo_tgeo(arg0, arg1, arg2); } @@ -2440,10 +2440,10 @@ 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"); + "tdwithin_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdwithin_tgeo_geo(arg0, arg1, arg2); } @@ -2453,10 +2453,10 @@ 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"); + "tintersects_geo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tintersects_geo_tgeo(arg0, arg1); } @@ -2466,10 +2466,10 @@ 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"); + "tintersects_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tintersects_tgeo_geo(arg0, arg1); } @@ -2479,10 +2479,10 @@ 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"); + "ttouches_geo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttouches_geo_tgeo(arg0, arg1); } @@ -2492,10 +2492,10 @@ 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"); + "ttouches_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttouches_tgeo_geo(arg0, arg1); } @@ -2505,10 +2505,10 @@ 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"); + "always_eq_geo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_geo_tgeo(arg0, arg1); } @@ -2518,10 +2518,10 @@ 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"); + "always_eq_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_tgeo_geo(arg0, arg1); } @@ -2531,10 +2531,10 @@ 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"); + "always_ne_geo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_geo_tgeo(arg0, arg1); } @@ -2544,10 +2544,10 @@ 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"); + "always_ne_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_tgeo_geo(arg0, arg1); } @@ -2557,10 +2557,10 @@ 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"); + "ever_eq_geo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_geo_tgeo(arg0, arg1); } @@ -2570,10 +2570,10 @@ 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"); + "ever_eq_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_tgeo_geo(arg0, arg1); } @@ -2583,10 +2583,10 @@ 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"); + "ever_ne_geo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_geo_tgeo(arg0, arg1); } @@ -2596,10 +2596,10 @@ 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"); + "ever_ne_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_tgeo_geo(arg0, arg1); } @@ -2609,10 +2609,10 @@ 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"); + "above_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.above_tspatial_tspatial(arg0, arg1); } @@ -2622,10 +2622,10 @@ 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"); + "acontains_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.acontains_tgeo_tgeo(arg0, arg1); } @@ -2635,10 +2635,10 @@ 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"); + "adisjoint_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adisjoint_tgeo_tgeo(arg0, arg1); } @@ -2648,10 +2648,10 @@ 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"); + "adjacent_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adjacent_tspatial_tspatial(arg0, arg1); } @@ -2661,10 +2661,10 @@ 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"); + "adwithin_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.adwithin_tgeo_tgeo(arg0, arg1, arg2); } @@ -2674,10 +2674,10 @@ 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"); + "after_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.after_tspatial_tspatial(arg0, arg1); } @@ -2687,10 +2687,10 @@ 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"); + "aintersects_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.aintersects_tgeo_tgeo(arg0, arg1); } @@ -2700,10 +2700,10 @@ 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"); + "always_eq_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_tgeo_tgeo(arg0, arg1); } @@ -2713,10 +2713,10 @@ 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"); + "always_ne_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_tgeo_tgeo(arg0, arg1); } @@ -2726,10 +2726,10 @@ 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"); + "atouches_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.atouches_tgeo_tgeo(arg0, arg1); } @@ -2739,10 +2739,10 @@ 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"); + "back_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.back_tspatial_tspatial(arg0, arg1); } @@ -2752,10 +2752,10 @@ 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"); + "before_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.before_tspatial_tspatial(arg0, arg1); } @@ -2765,10 +2765,10 @@ 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"); + "below_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.below_tspatial_tspatial(arg0, arg1); } @@ -2778,10 +2778,10 @@ 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"); + "contained_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_tspatial_tspatial(arg0, arg1); } @@ -2791,10 +2791,10 @@ 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"); + "contains_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_tspatial_tspatial(arg0, arg1); } @@ -2804,10 +2804,10 @@ 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"); + "econtains_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.econtains_tgeo_tgeo(arg0, arg1); } @@ -2817,10 +2817,10 @@ 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"); + "ecovers_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ecovers_tgeo_tgeo(arg0, arg1); } @@ -2830,10 +2830,10 @@ 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"); + "edisjoint_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.edisjoint_tgeo_tgeo(arg0, arg1); } @@ -2843,10 +2843,10 @@ 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"); + "edwithin_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.edwithin_tgeo_tgeo(arg0, arg1, arg2); } @@ -2856,10 +2856,10 @@ 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"); + "eintersects_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.eintersects_tgeo_tgeo(arg0, arg1); } @@ -2869,10 +2869,10 @@ 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"); + "etouches_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.etouches_tgeo_tgeo(arg0, arg1); } @@ -2882,10 +2882,10 @@ 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"); + "ever_eq_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_tgeo_tgeo(arg0, arg1); } @@ -2895,10 +2895,10 @@ 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"); + "ever_ne_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_tgeo_tgeo(arg0, arg1); } @@ -2908,10 +2908,10 @@ 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"); + "front_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.front_tspatial_tspatial(arg0, arg1); } @@ -2921,10 +2921,10 @@ 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"); + "left_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.left_tspatial_tspatial(arg0, arg1); } @@ -2934,10 +2934,10 @@ 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"); + "nad_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tgeo_tgeo(arg0, arg1); } @@ -2947,10 +2947,10 @@ 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"); + "nai_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nai_tgeo_tgeo(arg0, arg1); } @@ -2960,10 +2960,10 @@ 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"); + "overabove_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overabove_tspatial_tspatial(arg0, arg1); } @@ -2973,10 +2973,10 @@ 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"); + "overafter_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overafter_tspatial_tspatial(arg0, arg1); } @@ -2986,10 +2986,10 @@ 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"); + "overback_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overback_tspatial_tspatial(arg0, arg1); } @@ -2999,10 +2999,10 @@ 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"); + "overbefore_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbefore_tspatial_tspatial(arg0, arg1); } @@ -3012,10 +3012,10 @@ 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"); + "overbelow_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overbelow_tspatial_tspatial(arg0, arg1); } @@ -3025,10 +3025,10 @@ 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"); + "overfront_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overfront_tspatial_tspatial(arg0, arg1); } @@ -3038,10 +3038,10 @@ 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"); + "overlaps_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overlaps_tspatial_tspatial(arg0, arg1); } @@ -3051,10 +3051,10 @@ 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"); + "overleft_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overleft_tspatial_tspatial(arg0, arg1); } @@ -3064,10 +3064,10 @@ 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"); + "overright_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.overright_tspatial_tspatial(arg0, arg1); } @@ -3077,10 +3077,10 @@ 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"); + "right_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.right_tspatial_tspatial(arg0, arg1); } @@ -3090,10 +3090,10 @@ 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"); + "same_tspatial_tspatial requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.same_tspatial_tspatial(arg0, arg1); } @@ -3103,10 +3103,10 @@ 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"); + "shortestline_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.shortestline_tgeo_tgeo(arg0, arg1); } @@ -3116,10 +3116,10 @@ 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"); + "tcontains_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcontains_tgeo_tgeo(arg0, arg1); } @@ -3129,10 +3129,10 @@ 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"); + "tcovers_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcovers_tgeo_tgeo(arg0, arg1); } @@ -3142,10 +3142,10 @@ 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"); + "tdisjoint_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdisjoint_tgeo_tgeo(arg0, arg1); } @@ -3155,10 +3155,10 @@ 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"); + "tdistance_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdistance_tgeo_tgeo(arg0, arg1); } @@ -3168,10 +3168,10 @@ 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"); + "tdwithin_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdwithin_tgeo_tgeo(arg0, arg1, arg2); } @@ -3181,10 +3181,10 @@ 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"); + "tintersects_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tintersects_tgeo_tgeo(arg0, arg1); } @@ -3194,10 +3194,10 @@ 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"); + "ttouches_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttouches_tgeo_tgeo(arg0, arg1); } @@ -3207,10 +3207,10 @@ 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"); + "box3d_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.box3d_out(arg0, arg1); } @@ -3220,10 +3220,10 @@ 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"); + "gbox_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.gbox_out(arg0, arg1); } @@ -3233,10 +3233,10 @@ 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"); + "geo_as_ewkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_as_ewkb(arg0, arg1, arg2); } @@ -3246,10 +3246,10 @@ 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"); + "geo_as_ewkt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_as_ewkt(arg0, arg1); } @@ -3259,10 +3259,10 @@ 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"); + "geo_as_geojson requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_as_geojson(arg0, arg1, arg2, arg3); } @@ -3272,10 +3272,10 @@ 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"); + "geo_as_hexewkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_as_hexewkb(arg0, arg1); } @@ -3285,10 +3285,10 @@ 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"); + "geo_as_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_as_text(arg0, arg1); } @@ -3298,10 +3298,10 @@ 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"); + "geo_from_ewkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_from_ewkb(arg0, arg1, arg2); } @@ -3311,10 +3311,10 @@ 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"); + "geo_from_geojson requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_from_geojson(arg0); } @@ -3324,10 +3324,10 @@ 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"); + "geo_from_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_from_text(arg0, arg1); } @@ -3337,10 +3337,10 @@ 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"); + "geo_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geo_out(arg0); } @@ -3350,10 +3350,10 @@ 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"); + "geog_from_hexewkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geog_from_hexewkb(arg0); } @@ -3363,10 +3363,10 @@ 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"); + "geog_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geog_in(arg0, arg1); } @@ -3376,10 +3376,10 @@ 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"); + "geom_from_hexewkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_from_hexewkb(arg0); } @@ -3389,10 +3389,10 @@ 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"); + "geom_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_in(arg0, arg1); } @@ -3402,10 +3402,10 @@ 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"); + "spatialset_as_ewkt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spatialset_as_ewkt(arg0, arg1); } @@ -3415,10 +3415,10 @@ 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"); + "spatialset_as_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spatialset_as_text(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeH3.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeH3.java new file mode 100644 index 0000000..b00e774 --- /dev/null +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeH3.java @@ -0,0 +1,258 @@ +package org.mobilitydb.kafka.meos; + +/* AUTO-GENERATED by tools/codegen/emit_h3_facade.py — do not edit by hand. + * H3 / th3index family facade over functions.GeneratedFunctions. + */ + +import functions.GeneratedFunctions; +import jnr.ffi.Pointer; + +public final class MeosOpsFreeH3 { + + public static final boolean MEOS_AVAILABLE = MeosOpsRuntime.MEOS_AVAILABLE; + + private MeosOpsFreeH3() { /* utility */ } + + /** MEOS {@code always_eq_h3index_th3index} — H3 / th3index family. */ + public static int always_eq_h3index_th3index(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "always_eq_h3index_th3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.always_eq_h3index_th3index(arg0, arg1); + } + + /** MEOS {@code always_eq_th3index_h3index} — H3 / th3index family. */ + public static int always_eq_th3index_h3index(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "always_eq_th3index_h3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.always_eq_th3index_h3index(arg0, arg1); + } + + /** MEOS {@code always_eq_th3index_th3index} — H3 / th3index family. */ + public static int always_eq_th3index_th3index(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "always_eq_th3index_th3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.always_eq_th3index_th3index(arg0, arg1); + } + + /** MEOS {@code always_ne_h3index_th3index} — H3 / th3index family. */ + public static int always_ne_h3index_th3index(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "always_ne_h3index_th3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.always_ne_h3index_th3index(arg0, arg1); + } + + /** MEOS {@code always_ne_th3index_h3index} — H3 / th3index family. */ + public static int always_ne_th3index_h3index(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "always_ne_th3index_h3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.always_ne_th3index_h3index(arg0, arg1); + } + + /** MEOS {@code always_ne_th3index_th3index} — H3 / th3index family. */ + public static int always_ne_th3index_th3index(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "always_ne_th3index_th3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.always_ne_th3index_th3index(arg0, arg1); + } + + /** MEOS {@code ever_eq_h3index_th3index} — H3 / th3index family. */ + public static int ever_eq_h3index_th3index(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "ever_eq_h3index_th3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.ever_eq_h3index_th3index(arg0, arg1); + } + + /** MEOS {@code ever_eq_h3indexset_th3index} — H3 / th3index family. */ + public static int ever_eq_h3indexset_th3index(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "ever_eq_h3indexset_th3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.ever_eq_h3indexset_th3index(arg0, arg1); + } + + /** MEOS {@code ever_eq_th3index_h3index} — H3 / th3index family. */ + public static int ever_eq_th3index_h3index(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "ever_eq_th3index_h3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.ever_eq_th3index_h3index(arg0, arg1); + } + + /** MEOS {@code ever_eq_th3index_th3index} — H3 / th3index family. */ + public static int ever_eq_th3index_th3index(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "ever_eq_th3index_th3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.ever_eq_th3index_th3index(arg0, arg1); + } + + /** MEOS {@code ever_ne_h3index_th3index} — H3 / th3index family. */ + public static int ever_ne_h3index_th3index(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "ever_ne_h3index_th3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.ever_ne_h3index_th3index(arg0, arg1); + } + + /** MEOS {@code ever_ne_th3index_h3index} — H3 / th3index family. */ + public static int ever_ne_th3index_h3index(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "ever_ne_th3index_h3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.ever_ne_th3index_h3index(arg0, arg1); + } + + /** MEOS {@code ever_ne_th3index_th3index} — H3 / th3index family. */ + public static int ever_ne_th3index_th3index(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "ever_ne_th3index_th3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.ever_ne_th3index_th3index(arg0, arg1); + } + + /** MEOS {@code geo_to_h3index_set} — H3 / th3index family. */ + public static jnr.ffi.Pointer geo_to_h3index_set(jnr.ffi.Pointer arg0, int arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "geo_to_h3index_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.geo_to_h3index_set(arg0, arg1); + } + + /** MEOS {@code h3_gs_point_to_cell} — H3 / th3index family. */ + public static long h3_gs_point_to_cell(jnr.ffi.Pointer arg0, int arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "h3_gs_point_to_cell requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.h3_gs_point_to_cell(arg0, arg1); + } + + /** MEOS {@code h3index_in} — H3 / th3index family. */ + public static long h3index_in(java.lang.String arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "h3index_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.h3index_in(arg0); + } + + /** MEOS {@code h3index_out} — H3 / th3index family. */ + public static java.lang.String h3index_out(long arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "h3index_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.h3index_out(arg0); + } + + /** MEOS {@code tbigint_to_th3index} — H3 / th3index family. */ + public static jnr.ffi.Pointer tbigint_to_th3index(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigint_to_th3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigint_to_th3index(arg0); + } + + /** MEOS {@code teq_h3index_th3index} — H3 / th3index family. */ + public static jnr.ffi.Pointer teq_h3index_th3index(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "teq_h3index_th3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.teq_h3index_th3index(arg0, arg1); + } + + /** MEOS {@code teq_th3index_h3index} — H3 / th3index family. */ + public static jnr.ffi.Pointer teq_th3index_h3index(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "teq_th3index_h3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.teq_th3index_h3index(arg0, arg1); + } + + /** MEOS {@code teq_th3index_th3index} — H3 / th3index family. */ + public static jnr.ffi.Pointer teq_th3index_th3index(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "teq_th3index_th3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.teq_th3index_th3index(arg0, arg1); + } + + /** MEOS {@code tgeogpoint_great_circle_distance} — H3 / th3index family. */ + public static jnr.ffi.Pointer tgeogpoint_great_circle_distance(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, java.lang.String arg2) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tgeogpoint_great_circle_distance requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tgeogpoint_great_circle_distance(arg0, arg1, arg2); + } + + /** MEOS {@code tgeogpoint_to_th3index} — H3 / th3index family. */ + public static jnr.ffi.Pointer tgeogpoint_to_th3index(jnr.ffi.Pointer arg0, int arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tgeogpoint_to_th3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tgeogpoint_to_th3index(arg0, arg1); + } + + /** MEOS {@code tgeompoint_to_th3index} — H3 / th3index family. */ + public static jnr.ffi.Pointer tgeompoint_to_th3index(jnr.ffi.Pointer arg0, int arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tgeompoint_to_th3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tgeompoint_to_th3index(arg0, arg1); + } + + /** MEOS {@code tne_h3index_th3index} — H3 / th3index family. */ + public static jnr.ffi.Pointer tne_h3index_th3index(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tne_h3index_th3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tne_h3index_th3index(arg0, arg1); + } + + /** MEOS {@code tne_th3index_h3index} — H3 / th3index family. */ + public static jnr.ffi.Pointer tne_th3index_h3index(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tne_th3index_h3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tne_th3index_h3index(arg0, arg1); + } + + /** MEOS {@code tne_th3index_th3index} — H3 / th3index family. */ + public static jnr.ffi.Pointer tne_th3index_th3index(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tne_th3index_th3index requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tne_th3index_th3index(arg0, arg1); + } +} diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeNpoint.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeNpoint.java index da51c05..3d24bb8 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeNpoint.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeNpoint.java @@ -22,10 +22,10 @@ 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"); + "contained_npoint_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_npoint_set(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "contains_set_npoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_set_npoint(arg0, arg1); } @@ -48,10 +48,10 @@ 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"); + "geom_to_nsegment requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geom_to_nsegment(arg0); } @@ -64,7 +64,7 @@ public static Pointer geom_to_nsegment(Pointer arg0) { public static int get_srid_ways() { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "get_srid_ways requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "get_srid_ways requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.get_srid_ways(); } @@ -74,10 +74,10 @@ 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"); + "intersection_set_npoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_set_npoint(arg0, arg1); } @@ -87,10 +87,10 @@ 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"); + "npoint_cmp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_cmp(arg0, arg1); } @@ -100,10 +100,10 @@ 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"); + "npoint_eq requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_eq(arg0, arg1); } @@ -113,10 +113,10 @@ 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"); + "npoint_ge requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_ge(arg0, arg1); } @@ -126,10 +126,10 @@ 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"); + "npoint_gt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_gt(arg0, arg1); } @@ -139,10 +139,10 @@ 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"); + "npoint_hash requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_hash(arg0); } @@ -152,10 +152,10 @@ 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"); + "npoint_hash_extended requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_hash_extended(arg0, arg1); } @@ -165,10 +165,10 @@ 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"); + "npoint_le requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_le(arg0, arg1); } @@ -178,10 +178,10 @@ 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"); + "npoint_lt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_lt(arg0, arg1); } @@ -191,10 +191,10 @@ 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"); + "npoint_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_make(arg0, arg1); } @@ -204,10 +204,10 @@ 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"); + "npoint_ne requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_ne(arg0, arg1); } @@ -217,10 +217,10 @@ 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"); + "npoint_position requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_position(arg0); } @@ -230,10 +230,10 @@ 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"); + "npoint_round requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_round(arg0, arg1); } @@ -243,10 +243,10 @@ 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"); + "npoint_route requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_route(arg0); } @@ -256,10 +256,10 @@ 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"); + "npoint_same requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_same(arg0, arg1); } @@ -269,10 +269,10 @@ 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"); + "npoint_srid requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_srid(arg0); } @@ -282,10 +282,10 @@ 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"); + "npoint_timestamptz_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_timestamptz_to_stbox(arg0, arg1); } @@ -295,10 +295,10 @@ 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"); + "npoint_to_geompoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_to_geompoint(arg0); } @@ -308,10 +308,10 @@ 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"); + "npoint_to_nsegment requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_to_nsegment(arg0); } @@ -321,10 +321,10 @@ 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"); + "npoint_to_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_to_set(arg0); } @@ -334,10 +334,10 @@ 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"); + "npoint_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_to_stbox(arg0); } @@ -347,10 +347,10 @@ 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"); + "npoint_tstzspan_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_tstzspan_to_stbox(arg0, arg1); } @@ -360,10 +360,10 @@ 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"); + "npoint_union_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_union_transfn(arg0, arg1); } @@ -373,10 +373,10 @@ 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"); + "nsegment_cmp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nsegment_cmp(arg0, arg1); } @@ -386,10 +386,10 @@ 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"); + "nsegment_eq requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nsegment_eq(arg0, arg1); } @@ -399,10 +399,10 @@ 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"); + "nsegment_ge requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nsegment_ge(arg0, arg1); } @@ -412,10 +412,10 @@ 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"); + "nsegment_gt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nsegment_gt(arg0, arg1); } @@ -425,10 +425,10 @@ 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"); + "nsegment_le requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nsegment_le(arg0, arg1); } @@ -438,10 +438,10 @@ 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"); + "nsegment_lt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nsegment_lt(arg0, arg1); } @@ -451,10 +451,10 @@ 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"); + "nsegment_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nsegment_make(arg0, arg1, arg2); } @@ -464,10 +464,10 @@ 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"); + "nsegment_ne requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nsegment_ne(arg0, arg1); } @@ -477,10 +477,10 @@ 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"); + "nsegment_round requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nsegment_round(arg0, arg1); } @@ -490,10 +490,10 @@ 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"); + "nsegment_route requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nsegment_route(arg0); } @@ -503,10 +503,10 @@ 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"); + "nsegment_srid requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nsegment_srid(arg0); } @@ -516,10 +516,10 @@ 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"); + "nsegment_to_geom requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nsegment_to_geom(arg0); } @@ -529,10 +529,10 @@ 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"); + "nsegment_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nsegment_to_stbox(arg0); } @@ -542,10 +542,10 @@ 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"); + "route_exists requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.route_exists(arg0); } @@ -555,10 +555,10 @@ 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"); + "teq_tnpoint_npoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.teq_tnpoint_npoint(arg0, arg1); } @@ -568,10 +568,10 @@ 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"); + "tne_tnpoint_npoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tne_tnpoint_npoint(arg0, arg1); } @@ -581,10 +581,10 @@ 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"); + "union_set_npoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_set_npoint(arg0, arg1); } @@ -594,10 +594,10 @@ 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"); + "minus_npoint_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_npoint_set(arg0, arg1); } @@ -607,10 +607,10 @@ 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"); + "minus_set_npoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_set_npoint(arg0, arg1); } @@ -620,10 +620,10 @@ 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"); + "nad_tnpoint_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tnpoint_geo(arg0, arg1); } @@ -633,10 +633,10 @@ 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"); + "nad_tnpoint_npoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tnpoint_npoint(arg0, arg1); } @@ -646,10 +646,10 @@ 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"); + "nad_tnpoint_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tnpoint_stbox(arg0, arg1); } @@ -659,10 +659,10 @@ 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"); + "nai_tnpoint_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nai_tnpoint_geo(arg0, arg1); } @@ -672,10 +672,10 @@ 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"); + "nai_tnpoint_npoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nai_tnpoint_npoint(arg0, arg1); } @@ -685,10 +685,10 @@ 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"); + "shortestline_tnpoint_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.shortestline_tnpoint_geo(arg0, arg1); } @@ -698,10 +698,10 @@ 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"); + "shortestline_tnpoint_npoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.shortestline_tnpoint_npoint(arg0, arg1); } @@ -711,10 +711,10 @@ 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"); + "tdistance_tnpoint_npoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdistance_tnpoint_npoint(arg0, arg1); } @@ -724,10 +724,10 @@ 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"); + "tdistance_tnpoint_point requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdistance_tnpoint_point(arg0, arg1); } @@ -737,10 +737,10 @@ 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"); + "always_eq_npoint_tnpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_npoint_tnpoint(arg0, arg1); } @@ -750,10 +750,10 @@ 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"); + "always_eq_tnpoint_npoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_tnpoint_npoint(arg0, arg1); } @@ -763,10 +763,10 @@ 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"); + "always_ne_npoint_tnpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_npoint_tnpoint(arg0, arg1); } @@ -776,10 +776,10 @@ 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"); + "always_ne_tnpoint_npoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_tnpoint_npoint(arg0, arg1); } @@ -789,10 +789,10 @@ 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"); + "ever_eq_npoint_tnpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_npoint_tnpoint(arg0, arg1); } @@ -802,10 +802,10 @@ 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"); + "ever_eq_tnpoint_npoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_tnpoint_npoint(arg0, arg1); } @@ -815,10 +815,10 @@ 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"); + "ever_ne_npoint_tnpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_npoint_tnpoint(arg0, arg1); } @@ -828,10 +828,10 @@ 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"); + "ever_ne_tnpoint_npoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_tnpoint_npoint(arg0, arg1); } @@ -841,10 +841,10 @@ 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"); + "route_length requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.route_length(arg0); } @@ -854,10 +854,10 @@ 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"); + "always_eq_tnpoint_tnpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_tnpoint_tnpoint(arg0, arg1); } @@ -867,10 +867,10 @@ 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"); + "always_ne_tnpoint_tnpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_tnpoint_tnpoint(arg0, arg1); } @@ -880,10 +880,10 @@ 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"); + "ever_eq_tnpoint_tnpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_tnpoint_tnpoint(arg0, arg1); } @@ -893,10 +893,10 @@ 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"); + "ever_ne_tnpoint_tnpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_tnpoint_tnpoint(arg0, arg1); } @@ -906,10 +906,10 @@ 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"); + "nad_tnpoint_tnpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tnpoint_tnpoint(arg0, arg1); } @@ -919,10 +919,10 @@ 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"); + "nai_tnpoint_tnpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nai_tnpoint_tnpoint(arg0, arg1); } @@ -932,10 +932,10 @@ 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"); + "shortestline_tnpoint_tnpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.shortestline_tnpoint_tnpoint(arg0, arg1); } @@ -945,10 +945,10 @@ 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"); + "tdistance_tnpoint_tnpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdistance_tnpoint_tnpoint(arg0, arg1); } @@ -958,10 +958,10 @@ 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"); + "npoint_as_ewkt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_as_ewkt(arg0, arg1); } @@ -971,10 +971,10 @@ 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"); + "npoint_as_hexwkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_as_hexwkb(arg0, arg1); } @@ -984,10 +984,10 @@ 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"); + "npoint_as_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_as_text(arg0, arg1); } @@ -997,10 +997,10 @@ 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"); + "npoint_as_wkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_as_wkb(arg0, arg1); } @@ -1010,10 +1010,10 @@ 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"); + "npoint_from_hexwkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_from_hexwkb(arg0); } @@ -1023,10 +1023,10 @@ 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"); + "npoint_from_wkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_from_wkb(arg0, arg1); } @@ -1036,10 +1036,10 @@ 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"); + "npoint_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_in(arg0); } @@ -1049,10 +1049,10 @@ 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"); + "npoint_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npoint_out(arg0, arg1); } @@ -1062,10 +1062,10 @@ 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"); + "nsegment_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nsegment_in(arg0); } @@ -1075,10 +1075,10 @@ 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"); + "nsegment_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nsegment_out(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreePose.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreePose.java index 93c6a1f..2537079 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreePose.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreePose.java @@ -22,10 +22,10 @@ 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"); + "contained_pose_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contained_pose_set(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "contains_set_pose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.contains_set_pose(arg0, arg1); } @@ -48,10 +48,10 @@ 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"); + "intersection_set_pose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intersection_set_pose(arg0, arg1); } @@ -61,10 +61,10 @@ 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"); + "pose_cmp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_cmp(arg0, arg1); } @@ -74,10 +74,10 @@ 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"); + "pose_copy requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_copy(arg0); } @@ -87,10 +87,10 @@ 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"); + "pose_eq requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_eq(arg0, arg1); } @@ -100,10 +100,10 @@ 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"); + "pose_ge requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_ge(arg0, arg1); } @@ -113,10 +113,10 @@ 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"); + "pose_gt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_gt(arg0, arg1); } @@ -126,10 +126,10 @@ 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"); + "pose_hash requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_hash(arg0); } @@ -139,10 +139,10 @@ 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"); + "pose_hash_extended requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_hash_extended(arg0, arg1); } @@ -152,10 +152,10 @@ 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"); + "pose_le requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_le(arg0, arg1); } @@ -165,10 +165,10 @@ 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"); + "pose_lt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_lt(arg0, arg1); } @@ -178,10 +178,10 @@ 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"); + "pose_make_2d requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_make_2d(arg0, arg1, arg2, arg3); } @@ -191,10 +191,10 @@ 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"); + "pose_make_3d requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_make_3d(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -204,10 +204,10 @@ 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"); + "pose_make_point2d requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_make_point2d(arg0, arg1); } @@ -217,10 +217,10 @@ 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"); + "pose_make_point3d requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_make_point3d(arg0, arg1, arg2, arg3, arg4); } @@ -230,10 +230,10 @@ 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"); + "pose_ne requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_ne(arg0, arg1); } @@ -243,10 +243,10 @@ 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"); + "pose_nsame requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_nsame(arg0, arg1); } @@ -256,10 +256,10 @@ 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"); + "pose_orientation requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_orientation(arg0); } @@ -269,10 +269,10 @@ 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"); + "pose_rotation requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_rotation(arg0); } @@ -282,10 +282,10 @@ 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"); + "pose_round requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_round(arg0, arg1); } @@ -295,10 +295,10 @@ 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"); + "pose_same requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_same(arg0, arg1); } @@ -308,10 +308,10 @@ 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"); + "pose_set_srid requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } GeneratedFunctions.pose_set_srid(arg0, arg1); } @@ -321,10 +321,10 @@ 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"); + "pose_srid requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_srid(arg0); } @@ -334,10 +334,10 @@ 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"); + "pose_timestamptz_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_timestamptz_to_stbox(arg0, arg1); } @@ -347,10 +347,10 @@ 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"); + "pose_to_point requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_to_point(arg0); } @@ -360,10 +360,10 @@ 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"); + "pose_to_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_to_set(arg0); } @@ -373,10 +373,10 @@ 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"); + "pose_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_to_stbox(arg0); } @@ -386,10 +386,10 @@ 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"); + "pose_transform requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_transform(arg0, arg1); } @@ -399,10 +399,10 @@ 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"); + "pose_transform_pipeline requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_transform_pipeline(arg0, arg1, arg2, arg3); } @@ -412,10 +412,10 @@ 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"); + "pose_tstzspan_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_tstzspan_to_stbox(arg0, arg1); } @@ -425,10 +425,10 @@ 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"); + "pose_union_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_union_transfn(arg0, arg1); } @@ -438,10 +438,10 @@ 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"); + "posearr_round requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.posearr_round(arg0, arg1, arg2); } @@ -451,10 +451,10 @@ 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"); + "teq_pose_tpose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.teq_pose_tpose(arg0, arg1); } @@ -464,10 +464,10 @@ 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"); + "teq_tpose_pose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.teq_tpose_pose(arg0, arg1); } @@ -477,10 +477,10 @@ 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"); + "tne_pose_tpose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tne_pose_tpose(arg0, arg1); } @@ -490,10 +490,10 @@ 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"); + "tne_tpose_pose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tne_tpose_pose(arg0, arg1); } @@ -503,10 +503,10 @@ 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"); + "union_set_pose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.union_set_pose(arg0, arg1); } @@ -516,10 +516,10 @@ 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"); + "distance_pose_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_pose_geo(arg0, arg1); } @@ -529,10 +529,10 @@ 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"); + "distance_pose_pose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_pose_pose(arg0, arg1); } @@ -542,10 +542,10 @@ 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"); + "distance_pose_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.distance_pose_stbox(arg0, arg1); } @@ -555,10 +555,10 @@ 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"); + "minus_pose_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_pose_set(arg0, arg1); } @@ -568,10 +568,10 @@ 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"); + "minus_set_pose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.minus_set_pose(arg0, arg1); } @@ -581,10 +581,10 @@ 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"); + "nad_tpose_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tpose_geo(arg0, arg1); } @@ -594,10 +594,10 @@ 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"); + "nad_tpose_pose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tpose_pose(arg0, arg1); } @@ -607,10 +607,10 @@ 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"); + "nad_tpose_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tpose_stbox(arg0, arg1); } @@ -620,10 +620,10 @@ 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"); + "nai_tpose_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nai_tpose_geo(arg0, arg1); } @@ -633,10 +633,10 @@ 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"); + "nai_tpose_pose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nai_tpose_pose(arg0, arg1); } @@ -646,10 +646,10 @@ 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"); + "shortestline_tpose_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.shortestline_tpose_geo(arg0, arg1); } @@ -659,10 +659,10 @@ 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"); + "shortestline_tpose_pose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.shortestline_tpose_pose(arg0, arg1); } @@ -672,10 +672,10 @@ 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"); + "tdistance_tpose_point requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdistance_tpose_point(arg0, arg1); } @@ -685,10 +685,10 @@ 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"); + "tdistance_tpose_pose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdistance_tpose_pose(arg0, arg1); } @@ -698,10 +698,10 @@ 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"); + "always_eq_pose_tpose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_pose_tpose(arg0, arg1); } @@ -711,10 +711,10 @@ 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"); + "always_eq_tpose_pose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_tpose_pose(arg0, arg1); } @@ -724,10 +724,10 @@ 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"); + "always_ne_pose_tpose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_pose_tpose(arg0, arg1); } @@ -737,10 +737,10 @@ 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"); + "always_ne_tpose_pose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_tpose_pose(arg0, arg1); } @@ -750,10 +750,10 @@ 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"); + "ever_eq_pose_tpose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_pose_tpose(arg0, arg1); } @@ -763,10 +763,10 @@ 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"); + "ever_eq_tpose_pose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_tpose_pose(arg0, arg1); } @@ -776,10 +776,10 @@ 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"); + "ever_ne_pose_tpose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_pose_tpose(arg0, arg1); } @@ -789,10 +789,10 @@ 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"); + "ever_ne_tpose_pose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_tpose_pose(arg0, arg1); } @@ -802,10 +802,10 @@ 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"); + "always_eq_tpose_tpose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_eq_tpose_tpose(arg0, arg1); } @@ -815,10 +815,10 @@ 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"); + "always_ne_tpose_tpose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.always_ne_tpose_tpose(arg0, arg1); } @@ -828,10 +828,10 @@ 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"); + "ever_eq_tpose_tpose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_eq_tpose_tpose(arg0, arg1); } @@ -841,10 +841,10 @@ 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"); + "ever_ne_tpose_tpose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ever_ne_tpose_tpose(arg0, arg1); } @@ -854,10 +854,10 @@ 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"); + "nad_tpose_tpose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nad_tpose_tpose(arg0, arg1); } @@ -867,10 +867,10 @@ 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"); + "nai_tpose_tpose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.nai_tpose_tpose(arg0, arg1); } @@ -880,10 +880,10 @@ 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"); + "shortestline_tpose_tpose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.shortestline_tpose_tpose(arg0, arg1); } @@ -893,10 +893,10 @@ 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"); + "tdistance_tpose_tpose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tdistance_tpose_tpose(arg0, arg1); } @@ -906,10 +906,10 @@ 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"); + "pose_as_ewkt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_as_ewkt(arg0, arg1); } @@ -919,10 +919,10 @@ 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"); + "pose_as_hexwkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_as_hexwkb(arg0, arg1, arg2); } @@ -932,10 +932,10 @@ 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"); + "pose_as_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_as_text(arg0, arg1); } @@ -945,10 +945,10 @@ 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"); + "pose_as_wkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_as_wkb(arg0, arg1); } @@ -958,10 +958,10 @@ 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"); + "pose_from_hexwkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_from_hexwkb(arg0); } @@ -971,10 +971,10 @@ 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"); + "pose_from_wkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_from_wkb(arg0, arg1); } @@ -984,10 +984,10 @@ 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"); + "pose_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_in(arg0); } @@ -997,10 +997,10 @@ 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"); + "pose_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.pose_out(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeRgeo.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeRgeo.java index 6e55e12..837760b 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeRgeo.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsFreeRgeo.java @@ -18,406 +18,406 @@ public final class MeosOpsFreeRgeo { private MeosOpsFreeRgeo() { /* utility */ } /** - * MEOS {@code geo_tpose_to_trgeo} — tier stateless. + * MEOS {@code geo_tpose_to_trgeometry} — tier stateless. *

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_trgeometry(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"); + "geo_tpose_to_trgeometry requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.geo_tpose_to_trgeo(arg0, arg1); + return GeneratedFunctions.geo_tpose_to_trgeometry(arg0, arg1); } /** - * MEOS {@code teq_geo_trgeo} — tier stateless. + * MEOS {@code teq_geo_trgeometry} — tier stateless. *

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_trgeometry(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "teq_geo_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "teq_geo_trgeometry requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.teq_geo_trgeo(arg0, arg1); + return GeneratedFunctions.teq_geo_trgeometry(arg0, arg1); } /** - * MEOS {@code teq_trgeo_geo} — tier stateless. + * MEOS {@code teq_trgeometry_geo} — tier stateless. *

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_trgeometry_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"); + "teq_trgeometry_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.teq_trgeo_geo(arg0, arg1); + return GeneratedFunctions.teq_trgeometry_geo(arg0, arg1); } /** - * MEOS {@code tne_geo_trgeo} — tier stateless. + * MEOS {@code tne_geo_trgeometry} — tier stateless. *

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_trgeometry(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "tne_geo_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "tne_geo_trgeometry requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.tne_geo_trgeo(arg0, arg1); + return GeneratedFunctions.tne_geo_trgeometry(arg0, arg1); } /** - * MEOS {@code tne_trgeo_geo} — tier stateless. + * MEOS {@code tne_trgeometry_geo} — tier stateless. *

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_trgeometry_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"); + "tne_trgeometry_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.tne_trgeo_geo(arg0, arg1); + return GeneratedFunctions.tne_trgeometry_geo(arg0, arg1); } /** - * MEOS {@code nad_stbox_trgeo} — tier bounded-state. + * MEOS {@code nad_stbox_trgeometry} — tier bounded-state. *

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_trgeometry(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "nad_stbox_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "nad_stbox_trgeometry requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.nad_stbox_trgeo(arg0, arg1); + return GeneratedFunctions.nad_stbox_trgeometry(arg0, arg1); } /** - * MEOS {@code nad_trgeo_geo} — tier bounded-state. + * MEOS {@code nad_trgeometry_geo} — tier bounded-state. *

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_trgeometry_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"); + "nad_trgeometry_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.nad_trgeo_geo(arg0, arg1); + return GeneratedFunctions.nad_trgeometry_geo(arg0, arg1); } /** - * MEOS {@code nad_trgeo_stbox} — tier bounded-state. + * MEOS {@code nad_trgeometry_stbox} — tier bounded-state. *

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_trgeometry_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"); + "nad_trgeometry_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.nad_trgeo_stbox(arg0, arg1); + return GeneratedFunctions.nad_trgeometry_stbox(arg0, arg1); } /** - * MEOS {@code nai_trgeo_geo} — tier bounded-state. + * MEOS {@code nai_trgeometry_geo} — tier bounded-state. *

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_trgeometry_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"); + "nai_trgeometry_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.nai_trgeo_geo(arg0, arg1); + return GeneratedFunctions.nai_trgeometry_geo(arg0, arg1); } /** - * MEOS {@code shortestline_trgeo_geo} — tier bounded-state. + * MEOS {@code shortestline_trgeometry_geo} — tier bounded-state. *

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_trgeometry_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"); + "shortestline_trgeometry_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.shortestline_trgeo_geo(arg0, arg1); + return GeneratedFunctions.shortestline_trgeometry_geo(arg0, arg1); } /** - * MEOS {@code tdistance_trgeo_geo} — tier bounded-state. + * MEOS {@code tdistance_trgeometry_geo} — tier bounded-state. *

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_trgeometry_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"); + "tdistance_trgeometry_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.tdistance_trgeo_geo(arg0, arg1); + return GeneratedFunctions.tdistance_trgeometry_geo(arg0, arg1); } /** - * MEOS {@code always_eq_geo_trgeo} — tier windowed. + * MEOS {@code always_eq_geo_trgeometry} — tier windowed. *

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_trgeometry(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"); + "always_eq_geo_trgeometry requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.always_eq_geo_trgeo(arg0, arg1); + return GeneratedFunctions.always_eq_geo_trgeometry(arg0, arg1); } /** - * MEOS {@code always_eq_trgeo_geo} — tier windowed. + * MEOS {@code always_eq_trgeometry_geo} — tier windowed. *

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_trgeometry_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"); + "always_eq_trgeometry_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.always_eq_trgeo_geo(arg0, arg1); + return GeneratedFunctions.always_eq_trgeometry_geo(arg0, arg1); } /** - * MEOS {@code always_ne_geo_trgeo} — tier windowed. + * MEOS {@code always_ne_geo_trgeometry} — tier windowed. *

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_trgeometry(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"); + "always_ne_geo_trgeometry requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.always_ne_geo_trgeo(arg0, arg1); + return GeneratedFunctions.always_ne_geo_trgeometry(arg0, arg1); } /** - * MEOS {@code always_ne_trgeo_geo} — tier windowed. + * MEOS {@code always_ne_trgeometry_geo} — tier windowed. *

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_trgeometry_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"); + "always_ne_trgeometry_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.always_ne_trgeo_geo(arg0, arg1); + return GeneratedFunctions.always_ne_trgeometry_geo(arg0, arg1); } /** - * MEOS {@code ever_eq_geo_trgeo} — tier windowed. + * MEOS {@code ever_eq_geo_trgeometry} — tier windowed. *

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_trgeometry(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"); + "ever_eq_geo_trgeometry requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.ever_eq_geo_trgeo(arg0, arg1); + return GeneratedFunctions.ever_eq_geo_trgeometry(arg0, arg1); } /** - * MEOS {@code ever_eq_trgeo_geo} — tier windowed. + * MEOS {@code ever_eq_trgeometry_geo} — tier windowed. *

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_trgeometry_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"); + "ever_eq_trgeometry_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.ever_eq_trgeo_geo(arg0, arg1); + return GeneratedFunctions.ever_eq_trgeometry_geo(arg0, arg1); } /** - * MEOS {@code ever_ne_geo_trgeo} — tier windowed. + * MEOS {@code ever_ne_geo_trgeometry} — tier windowed. *

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_trgeometry(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"); + "ever_ne_geo_trgeometry requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.ever_ne_geo_trgeo(arg0, arg1); + return GeneratedFunctions.ever_ne_geo_trgeometry(arg0, arg1); } /** - * MEOS {@code ever_ne_trgeo_geo} — tier windowed. + * MEOS {@code ever_ne_trgeometry_geo} — tier windowed. *

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_trgeometry_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"); + "ever_ne_trgeometry_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.ever_ne_trgeo_geo(arg0, arg1); + return GeneratedFunctions.ever_ne_trgeometry_geo(arg0, arg1); } /** - * MEOS {@code always_eq_trgeo_trgeo} — tier cross-stream. + * MEOS {@code always_eq_trgeometry_trgeometry} — tier cross-stream. *

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_trgeometry_trgeometry(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"); + "always_eq_trgeometry_trgeometry requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.always_eq_trgeo_trgeo(arg0, arg1); + return GeneratedFunctions.always_eq_trgeometry_trgeometry(arg0, arg1); } /** - * MEOS {@code always_ne_trgeo_trgeo} — tier cross-stream. + * MEOS {@code always_ne_trgeometry_trgeometry} — tier cross-stream. *

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_trgeometry_trgeometry(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"); + "always_ne_trgeometry_trgeometry requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.always_ne_trgeo_trgeo(arg0, arg1); + return GeneratedFunctions.always_ne_trgeometry_trgeometry(arg0, arg1); } /** - * MEOS {@code ever_eq_trgeo_trgeo} — tier cross-stream. + * MEOS {@code ever_eq_trgeometry_trgeometry} — tier cross-stream. *

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_trgeometry_trgeometry(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"); + "ever_eq_trgeometry_trgeometry requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.ever_eq_trgeo_trgeo(arg0, arg1); + return GeneratedFunctions.ever_eq_trgeometry_trgeometry(arg0, arg1); } /** - * MEOS {@code ever_ne_trgeo_trgeo} — tier cross-stream. + * MEOS {@code ever_ne_trgeometry_trgeometry} — tier cross-stream. *

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_trgeometry_trgeometry(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"); + "ever_ne_trgeometry_trgeometry requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.ever_ne_trgeo_trgeo(arg0, arg1); + return GeneratedFunctions.ever_ne_trgeometry_trgeometry(arg0, arg1); } /** - * MEOS {@code nad_trgeo_tpoint} — tier cross-stream. + * MEOS {@code nad_trgeometry_tpoint} — tier cross-stream. *

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_trgeometry_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"); + "nad_trgeometry_tpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.nad_trgeo_tpoint(arg0, arg1); + return GeneratedFunctions.nad_trgeometry_tpoint(arg0, arg1); } /** - * MEOS {@code nad_trgeo_trgeo} — tier cross-stream. + * MEOS {@code nad_trgeometry_trgeometry} — tier cross-stream. *

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_trgeometry_trgeometry(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "nad_trgeo_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "nad_trgeometry_trgeometry requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.nad_trgeo_trgeo(arg0, arg1); + return GeneratedFunctions.nad_trgeometry_trgeometry(arg0, arg1); } /** - * MEOS {@code nai_trgeo_tpoint} — tier cross-stream. + * MEOS {@code nai_trgeometry_tpoint} — tier cross-stream. *

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_trgeometry_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"); + "nai_trgeometry_tpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.nai_trgeo_tpoint(arg0, arg1); + return GeneratedFunctions.nai_trgeometry_tpoint(arg0, arg1); } /** - * MEOS {@code nai_trgeo_trgeo} — tier cross-stream. + * MEOS {@code nai_trgeometry_trgeometry} — tier cross-stream. *

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_trgeometry_trgeometry(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "nai_trgeo_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "nai_trgeometry_trgeometry requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.nai_trgeo_trgeo(arg0, arg1); + return GeneratedFunctions.nai_trgeometry_trgeometry(arg0, arg1); } /** - * MEOS {@code shortestline_trgeo_tpoint} — tier cross-stream. + * MEOS {@code shortestline_trgeometry_tpoint} — tier cross-stream. *

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_trgeometry_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"); + "shortestline_trgeometry_tpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.shortestline_trgeo_tpoint(arg0, arg1); + return GeneratedFunctions.shortestline_trgeometry_tpoint(arg0, arg1); } /** - * MEOS {@code shortestline_trgeo_trgeo} — tier cross-stream. + * MEOS {@code shortestline_trgeometry_trgeometry} — tier cross-stream. *

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_trgeometry_trgeometry(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "shortestline_trgeo_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "shortestline_trgeometry_trgeometry requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.shortestline_trgeo_trgeo(arg0, arg1); + return GeneratedFunctions.shortestline_trgeometry_trgeometry(arg0, arg1); } /** - * MEOS {@code tdistance_trgeo_tpoint} — tier cross-stream. + * MEOS {@code tdistance_trgeometry_tpoint} — tier cross-stream. *

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_trgeometry_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"); + "tdistance_trgeometry_tpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.tdistance_trgeo_tpoint(arg0, arg1); + return GeneratedFunctions.tdistance_trgeometry_tpoint(arg0, arg1); } /** - * MEOS {@code tdistance_trgeo_trgeo} — tier cross-stream. + * MEOS {@code tdistance_trgeometry_trgeometry} — tier cross-stream. *

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_trgeometry_trgeometry(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "tdistance_trgeo_trgeo requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "tdistance_trgeometry_trgeometry requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.tdistance_trgeo_trgeo(arg0, arg1); + return GeneratedFunctions.tdistance_trgeometry_trgeometry(arg0, arg1); } } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsGeogSet.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsGeogSet.java index 2f54c28..23c9ebe 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsGeogSet.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsGeogSet.java @@ -21,10 +21,10 @@ 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"); + "geogset_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geogset_in(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsGeomSet.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsGeomSet.java index 0311f9f..671904e 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsGeomSet.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsGeomSet.java @@ -21,10 +21,10 @@ 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"); + "geoset_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geoset_make(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "geoset_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geoset_end_value(arg0); } @@ -49,10 +49,10 @@ 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"); + "geoset_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geoset_start_value(arg0); } @@ -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"); + "geoset_value_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.geoset_value_n(arg0, arg1, arg2); + return GeneratedFunctions.geoset_value_n(arg0, arg1); } /** @@ -77,10 +77,10 @@ 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"); + "geoset_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geoset_values(arg0); } @@ -91,10 +91,10 @@ 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"); + "geomset_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.geomset_in(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsIntSet.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsIntSet.java index 61d1517..0c46b7e 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsIntSet.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsIntSet.java @@ -21,10 +21,10 @@ 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"); + "intset_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intset_make(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "intset_to_floatset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intset_to_floatset(arg0); } @@ -49,10 +49,10 @@ 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"); + "intset_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intset_end_value(arg0); } @@ -63,10 +63,10 @@ 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"); + "intset_shift_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intset_shift_scale(arg0, arg1, arg2, arg3, arg4); } @@ -77,10 +77,10 @@ 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"); + "intset_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intset_start_value(arg0); } @@ -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"); + "intset_value_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.intset_value_n(arg0, arg1, arg2); + return GeneratedFunctions.intset_value_n(arg0, arg1); } /** @@ -105,10 +105,10 @@ 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"); + "intset_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intset_values(arg0); } @@ -119,10 +119,10 @@ 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"); + "intset_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intset_in(arg0); } @@ -133,10 +133,10 @@ 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"); + "intset_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intset_out(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsIntSpan.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsIntSpan.java index 14d1f52..6a4de23 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsIntSpan.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsIntSpan.java @@ -21,10 +21,10 @@ 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"); + "intspan_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intspan_make(arg0, arg1, arg2, arg3); } @@ -35,10 +35,10 @@ 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"); + "intspan_to_floatspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intspan_to_floatspan(arg0); } @@ -49,10 +49,10 @@ 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"); + "intspan_bins requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intspan_bins(arg0, arg1, arg2, arg3); } @@ -63,10 +63,10 @@ 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"); + "intspan_expand requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intspan_expand(arg0, arg1); } @@ -77,10 +77,10 @@ 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"); + "intspan_lower requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intspan_lower(arg0); } @@ -91,10 +91,10 @@ 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"); + "intspan_shift_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intspan_shift_scale(arg0, arg1, arg2, arg3, arg4); } @@ -105,10 +105,10 @@ 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"); + "intspan_upper requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intspan_upper(arg0); } @@ -119,10 +119,10 @@ 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"); + "intspan_width requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intspan_width(arg0); } @@ -133,10 +133,10 @@ 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"); + "intspan_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intspan_in(arg0); } @@ -147,10 +147,10 @@ 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"); + "intspan_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intspan_out(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsIntSpanSet.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsIntSpanSet.java index e90edb3..fdad3a3 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsIntSpanSet.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsIntSpanSet.java @@ -21,10 +21,10 @@ 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"); + "intspanset_to_floatspanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intspanset_to_floatspanset(arg0); } @@ -35,10 +35,10 @@ 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"); + "intspanset_bins requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intspanset_bins(arg0, arg1, arg2, arg3); } @@ -49,10 +49,10 @@ 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"); + "intspanset_lower requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intspanset_lower(arg0); } @@ -63,10 +63,10 @@ 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"); + "intspanset_shift_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intspanset_shift_scale(arg0, arg1, arg2, arg3, arg4); } @@ -77,10 +77,10 @@ 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"); + "intspanset_upper requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intspanset_upper(arg0); } @@ -91,10 +91,10 @@ 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"); + "intspanset_width requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intspanset_width(arg0, arg1); } @@ -105,10 +105,10 @@ 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"); + "intspanset_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intspanset_in(arg0); } @@ -119,10 +119,10 @@ 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"); + "intspanset_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.intspanset_out(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsNpointSet.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsNpointSet.java index 3aab9a8..21eafde 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsNpointSet.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsNpointSet.java @@ -21,10 +21,10 @@ 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"); + "npointset_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npointset_make(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "npointset_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npointset_end_value(arg0); } @@ -49,10 +49,10 @@ 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"); + "npointset_routes requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npointset_routes(arg0); } @@ -63,10 +63,10 @@ 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"); + "npointset_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npointset_start_value(arg0); } @@ -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"); + "npointset_value_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.npointset_value_n(arg0, arg1, arg2); + return GeneratedFunctions.npointset_value_n(arg0, arg1); } /** @@ -91,10 +91,10 @@ 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"); + "npointset_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npointset_values(arg0); } @@ -105,10 +105,10 @@ 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"); + "npointset_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npointset_in(arg0); } @@ -119,10 +119,10 @@ 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"); + "npointset_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.npointset_out(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsParityGaps.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsParityGaps.java new file mode 100644 index 0000000..afb99a6 --- /dev/null +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsParityGaps.java @@ -0,0 +1,531 @@ +package org.mobilitydb.kafka.meos; + +/** + * Forwarding facade methods for MEOS public-surface functions not emitted + * by the tier-aware code generator. Each method delegates to its JMEOS + * {@code functions.GeneratedFunctions} export under the shared + * {@link MeosOpsRuntime#MEOS_AVAILABLE} guard. + */ +public final class MeosOpsParityGaps { + + private MeosOpsParityGaps() { /* utility */ } + + /** MEOS {@code acovers_geo_tgeo} — meos_geo.h · scalar / stateless. */ + public static int acovers_geo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("acovers_geo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.acovers_geo_tgeo(arg0, arg1); + } + + /** MEOS {@code acovers_tcbuffer_tcbuffer} — meos_cbuffer.h · scalar / stateless. */ + public static int acovers_tcbuffer_tcbuffer(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("acovers_tcbuffer_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.acovers_tcbuffer_tcbuffer(arg0, arg1); + } + + /** MEOS {@code acovers_tgeo_geo} — meos_geo.h · scalar / stateless. */ + public static int acovers_tgeo_geo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("acovers_tgeo_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.acovers_tgeo_geo(arg0, arg1); + } + + /** 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, boolean arg2) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("bearing_tpoint_point requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.bearing_tpoint_point(arg0, arg1, arg2); + } + + /** MEOS {@code bearing_tpoint_tpoint} — meos_geo.h · scalar / stateless. */ + public static jnr.ffi.Pointer bearing_tpoint_tpoint(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("bearing_tpoint_tpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.bearing_tpoint_tpoint(arg0, arg1); + } + + /** MEOS {@code bigintspan_to_floatspan} — meos.h · scalar / stateless. */ + public static jnr.ffi.Pointer bigintspan_to_floatspan(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("bigintspan_to_floatspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.bigintspan_to_floatspan(arg0); + } + + /** MEOS {@code bigintspan_to_intspan} — meos.h · scalar / stateless. */ + public static jnr.ffi.Pointer bigintspan_to_intspan(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("bigintspan_to_intspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.bigintspan_to_intspan(arg0); + } + + /** MEOS {@code floatspan_to_bigintspan} — meos.h · scalar / stateless. */ + public static jnr.ffi.Pointer floatspan_to_bigintspan(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("floatspan_to_bigintspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.floatspan_to_bigintspan(arg0); + } + + /** MEOS {@code geogpoint_make2d} — meos_geo.h · scalar / stateless. */ + public static jnr.ffi.Pointer geogpoint_make2d(int arg0, double arg1, double arg2) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("geogpoint_make2d requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.geogpoint_make2d(arg0, arg1, arg2); + } + + /** MEOS {@code geogpoint_make3dz} — meos_geo.h · scalar / stateless. */ + public static jnr.ffi.Pointer geogpoint_make3dz(int arg0, double arg1, double arg2, double arg3) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("geogpoint_make3dz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.geogpoint_make3dz(arg0, arg1, arg2, arg3); + } + + /** MEOS {@code geomeas_to_tpoint} — meos_geo.h · scalar / stateless. */ + public static jnr.ffi.Pointer geomeas_to_tpoint(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("geomeas_to_tpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.geomeas_to_tpoint(arg0); + } + + /** MEOS {@code geompoint_make2d} — meos_geo.h · scalar / stateless. */ + public static jnr.ffi.Pointer geompoint_make2d(int arg0, double arg1, double arg2) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("geompoint_make2d requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.geompoint_make2d(arg0, arg1, arg2); + } + + /** MEOS {@code geompoint_make3dz} — meos_geo.h · scalar / stateless. */ + public static jnr.ffi.Pointer geompoint_make3dz(int arg0, double arg1, double arg2, double arg3) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("geompoint_make3dz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.geompoint_make3dz(arg0, arg1, arg2, arg3); + } + + /** MEOS {@code geompoint_to_npoint} — meos_npoint.h · scalar / stateless. */ + public static jnr.ffi.Pointer geompoint_to_npoint(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("geompoint_to_npoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.geompoint_to_npoint(arg0); + } + + /** MEOS {@code intersection_cbuffer_set} — meos_cbuffer.h · scalar / stateless. */ + public static jnr.ffi.Pointer intersection_cbuffer_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("intersection_cbuffer_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.intersection_cbuffer_set(arg0, arg1); + } + + /** MEOS {@code intersection_npoint_set} — meos_npoint.h · scalar / stateless. */ + public static jnr.ffi.Pointer intersection_npoint_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("intersection_npoint_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.intersection_npoint_set(arg0, arg1); + } + + /** MEOS {@code intersection_pose_set} — meos_pose.h · scalar / stateless. */ + public static jnr.ffi.Pointer intersection_pose_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("intersection_pose_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.intersection_pose_set(arg0, arg1); + } + + /** MEOS {@code intspan_to_bigintspan} — meos.h · scalar / stateless. */ + public static jnr.ffi.Pointer intspan_to_bigintspan(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("intspan_to_bigintspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.intspan_to_bigintspan(arg0); + } + + /** MEOS {@code line_interpolate_point} — meos_geo.h · scalar / stateless. */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.line_interpolate_point(arg0, arg1, arg2); + } + + /** MEOS {@code line_locate_point} — meos_geo.h · scalar / stateless. */ + public static double line_locate_point(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("line_locate_point requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.line_locate_point(arg0, arg1); + } + + /** MEOS {@code line_point_n} — meos_geo.h · scalar / stateless. */ + public static jnr.ffi.Pointer line_point_n(jnr.ffi.Pointer arg0, int arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("line_point_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.line_point_n(arg0, arg1); + } + + /** MEOS {@code line_substring} — meos_geo.h · scalar / stateless. */ + public static jnr.ffi.Pointer line_substring(jnr.ffi.Pointer arg0, double arg1, double arg2) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("line_substring requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.line_substring(arg0, arg1, arg2); + } + + /** MEOS {@code meos_initialize_noexit_error_handler} — meos.h · scalar / stateless. */ + public static void meos_initialize_noexit_error_handler() { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("meos_initialize_noexit_error_handler requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + functions.GeneratedFunctions.meos_initialize_noexit_error_handler(); + } + + /** MEOS {@code mindistance_tgeo_tgeo} — meos_geo.h · scalar / stateless. */ + public static double mindistance_tgeo_tgeo(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, double arg2) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("mindistance_tgeo_tgeo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + 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 -Dmobilitykafka.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 -Dmobilitykafka.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 -Dmobilitykafka.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 -Dmobilitykafka.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 -Dmobilitykafka.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) + throw new UnsupportedOperationException("nsegment_end_position requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.nsegment_end_position(arg0); + } + + /** MEOS {@code nsegment_start_position} — meos_npoint.h · scalar / stateless. */ + public static double nsegment_start_position(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("nsegment_start_position requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.nsegment_start_position(arg0); + } + + /** MEOS {@code route_geom} — meos_npoint.h · scalar / stateless. */ + public static jnr.ffi.Pointer route_geom(long arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("route_geom requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.route_geom(arg0); + } + + /** MEOS {@code spatialset_set_srid} — meos_geo.h · scalar / stateless. */ + public static jnr.ffi.Pointer spatialset_set_srid(jnr.ffi.Pointer arg0, int arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("spatialset_set_srid requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.spatialset_set_srid(arg0, arg1); + } + + /** MEOS {@code spatialset_transform} — meos_geo.h · scalar / stateless. */ + public static jnr.ffi.Pointer spatialset_transform(jnr.ffi.Pointer arg0, int arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("spatialset_transform requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.spatialset_transform(arg0, arg1); + } + + /** 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, boolean arg3) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("spatialset_transform_pipeline requires libmeos — set -Dmobilitykafka.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(boolean arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tand_bool_tbool requires libmeos — set -Dmobilitykafka.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, boolean arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tand_tbool_bool requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tand_tbool_bool(arg0, arg1); + } + + /** MEOS {@code tand_tbool_tbool} — meos.h · scalar / stateless. */ + public static jnr.ffi.Pointer tand_tbool_tbool(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tand_tbool_tbool requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tand_tbool_tbool(arg0, arg1); + } + + /** 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(boolean arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tboolseq_from_base_tstzset requires libmeos — set -Dmobilitykafka.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(boolean arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tboolseq_from_base_tstzspan requires libmeos — set -Dmobilitykafka.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(boolean arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tboolseqset_from_base_tstzspanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tboolseqset_from_base_tstzspanset(arg0, arg1); + } + + /** MEOS {@code tbox_to_bigintspan} — meos.h · scalar / stateless. */ + public static jnr.ffi.Pointer tbox_to_bigintspan(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tbox_to_bigintspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tbox_to_bigintspan(arg0); + } + + /** 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, java.time.OffsetDateTime arg2, jnr.ffi.Pointer arg3) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tfloatbox_time_tiles requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tfloatbox_time_tiles(arg0, arg1, arg2, arg3); + } + + /** MEOS {@code tfloatbox_value_tiles} — meos.h · multidimensional tiling (windowed). */ + public static jnr.ffi.Pointer tfloatbox_value_tiles(jnr.ffi.Pointer arg0, double arg1, double arg2, jnr.ffi.Pointer arg3) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tfloatbox_value_tiles requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tfloatbox_value_tiles(arg0, arg1, arg2, arg3); + } + + /** 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, java.time.OffsetDateTime arg4, jnr.ffi.Pointer arg5) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tfloatbox_value_time_tiles requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tfloatbox_value_time_tiles(arg0, arg1, arg2, arg3, arg4, arg5); + } + + /** MEOS {@code tfloatseq_from_base_tstzset} — meos.h · whole-sequence constructor — not a per-event op. */ + public static jnr.ffi.Pointer tfloatseq_from_base_tstzset(double arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tfloatseq_from_base_tstzset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tfloatseq_from_base_tstzset(arg0, arg1); + } + + /** MEOS {@code tfloatseq_from_base_tstzspan} — meos.h · whole-sequence constructor — not a per-event op. */ + public static jnr.ffi.Pointer tfloatseq_from_base_tstzspan(double arg0, jnr.ffi.Pointer arg1, int arg2) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tfloatseq_from_base_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tfloatseq_from_base_tstzspan(arg0, arg1, arg2); + } + + /** MEOS {@code tfloatseqset_from_base_tstzspanset} — meos.h · whole-sequence constructor — not a per-event op. */ + public static jnr.ffi.Pointer tfloatseqset_from_base_tstzspanset(double arg0, jnr.ffi.Pointer arg1, int arg2) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tfloatseqset_from_base_tstzspanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tfloatseqset_from_base_tstzspanset(arg0, arg1, arg2); + } + + /** MEOS {@code tgeoarr_tgeoarr_mindist} — meos_geo.h · scalar / stateless. */ + public static double tgeoarr_tgeoarr_mindist(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2, int arg3) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tgeoarr_tgeoarr_mindist requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tgeoarr_tgeoarr_mindist(arg0, arg1, arg2, arg3); + } + + /** MEOS {@code tgeoseq_from_base_tstzset} — meos_geo.h · whole-sequence constructor — not a per-event op. */ + public static jnr.ffi.Pointer tgeoseq_from_base_tstzset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tgeoseq_from_base_tstzset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tgeoseq_from_base_tstzset(arg0, arg1); + } + + /** MEOS {@code tgeoseq_from_base_tstzspan} — meos_geo.h · whole-sequence constructor — not a per-event op. */ + public static jnr.ffi.Pointer tgeoseq_from_base_tstzspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, int arg2) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tgeoseq_from_base_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tgeoseq_from_base_tstzspan(arg0, arg1, arg2); + } + + /** MEOS {@code tgeoseqset_from_base_tstzspanset} — meos_geo.h · whole-sequence constructor — not a per-event op. */ + public static jnr.ffi.Pointer tgeoseqset_from_base_tstzspanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, int arg2) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tgeoseqset_from_base_tstzspanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tgeoseqset_from_base_tstzspanset(arg0, arg1, arg2); + } + + /** 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, java.time.OffsetDateTime arg2, jnr.ffi.Pointer arg3) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tintbox_time_tiles requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tintbox_time_tiles(arg0, arg1, arg2, arg3); + } + + /** MEOS {@code tintbox_value_tiles} — meos.h · multidimensional tiling (windowed). */ + public static jnr.ffi.Pointer tintbox_value_tiles(jnr.ffi.Pointer arg0, int arg1, int arg2, jnr.ffi.Pointer arg3) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tintbox_value_tiles requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tintbox_value_tiles(arg0, arg1, arg2, arg3); + } + + /** 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, java.time.OffsetDateTime arg4, jnr.ffi.Pointer arg5) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tintbox_value_time_tiles requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tintbox_value_time_tiles(arg0, arg1, arg2, arg3, arg4, arg5); + } + + /** MEOS {@code tintseq_from_base_tstzset} — meos.h · whole-sequence constructor — not a per-event op. */ + public static jnr.ffi.Pointer tintseq_from_base_tstzset(int arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tintseq_from_base_tstzset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tintseq_from_base_tstzset(arg0, arg1); + } + + /** MEOS {@code tintseq_from_base_tstzspan} — meos.h · whole-sequence constructor — not a per-event op. */ + public static jnr.ffi.Pointer tintseq_from_base_tstzspan(int arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tintseq_from_base_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tintseq_from_base_tstzspan(arg0, arg1); + } + + /** MEOS {@code tintseqset_from_base_tstzspanset} — meos.h · whole-sequence constructor — not a per-event op. */ + public static jnr.ffi.Pointer tintseqset_from_base_tstzspanset(int arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tintseqset_from_base_tstzspanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tintseqset_from_base_tstzspanset(arg0, arg1); + } + + /** MEOS {@code tnot_tbool} — meos.h · scalar / stateless. */ + public static jnr.ffi.Pointer tnot_tbool(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tnot_tbool requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tnot_tbool(arg0); + } + + /** MEOS {@code tor_bool_tbool} — meos.h · scalar / stateless. */ + 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 -Dmobilitykafka.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, boolean arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tor_tbool_bool requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tor_tbool_bool(arg0, arg1); + } + + /** MEOS {@code tor_tbool_tbool} — meos.h · scalar / stateless. */ + public static jnr.ffi.Pointer tor_tbool_tbool(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tor_tbool_tbool requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tor_tbool_tbool(arg0, arg1); + } + + /** MEOS {@code tpointseq_from_base_tstzset} — meos_geo.h · whole-sequence constructor — not a per-event op. */ + public static jnr.ffi.Pointer tpointseq_from_base_tstzset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tpointseq_from_base_tstzset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tpointseq_from_base_tstzset(arg0, arg1); + } + + /** MEOS {@code tpointseq_from_base_tstzspan} — meos_geo.h · whole-sequence constructor — not a per-event op. */ + public static jnr.ffi.Pointer tpointseq_from_base_tstzspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, int arg2) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tpointseq_from_base_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tpointseq_from_base_tstzspan(arg0, arg1, arg2); + } + + /** 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, boolean arg6, boolean arg7, boolean arg8, int arg9, boolean arg10) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tpointseq_make_coords requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tpointseq_make_coords(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); + } + + /** MEOS {@code tpointseqset_from_base_tstzspanset} — meos_geo.h · whole-sequence constructor — not a per-event op. */ + public static jnr.ffi.Pointer tpointseqset_from_base_tstzspanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, int arg2) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tpointseqset_from_base_tstzspanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tpointseqset_from_base_tstzspanset(arg0, arg1, arg2); + } + + /** 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, boolean arg2, boolean arg3, int arg4, boolean arg5) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tsequence_make requires libmeos — set -Dmobilitykafka.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, boolean arg2) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tsequenceset_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tsequenceset_make(arg0, arg1, arg2); + } + + /** MEOS {@code ttextseq_from_base_tstzset} — meos.h · whole-sequence constructor — not a per-event op. */ + public static jnr.ffi.Pointer ttextseq_from_base_tstzset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("ttextseq_from_base_tstzset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.ttextseq_from_base_tstzset(arg0, arg1); + } + + /** MEOS {@code ttextseq_from_base_tstzspan} — meos.h · whole-sequence constructor — not a per-event op. */ + public static jnr.ffi.Pointer ttextseq_from_base_tstzspan(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("ttextseq_from_base_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.ttextseq_from_base_tstzspan(arg0, arg1); + } + + /** MEOS {@code ttextseqset_from_base_tstzspanset} — meos.h · whole-sequence constructor — not a per-event op. */ + public static jnr.ffi.Pointer ttextseqset_from_base_tstzspanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("ttextseqset_from_base_tstzspanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.ttextseqset_from_base_tstzspanset(arg0, arg1); + } + + /** MEOS {@code union_cbuffer_set} — meos_cbuffer.h · scalar / stateless. */ + public static jnr.ffi.Pointer union_cbuffer_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("union_cbuffer_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.union_cbuffer_set(arg0, arg1); + } + + /** MEOS {@code union_npoint_set} — meos_npoint.h · scalar / stateless. */ + public static jnr.ffi.Pointer union_npoint_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("union_npoint_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.union_npoint_set(arg0, arg1); + } + + /** MEOS {@code union_pose_set} — meos_pose.h · scalar / stateless. */ + public static jnr.ffi.Pointer union_pose_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("union_pose_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.union_pose_set(arg0, arg1); + } + +} diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsPoseSet.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsPoseSet.java index f3a69f1..c5df20c 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsPoseSet.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsPoseSet.java @@ -21,10 +21,10 @@ 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"); + "poseset_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.poseset_make(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "poseset_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.poseset_end_value(arg0); } @@ -49,10 +49,10 @@ 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"); + "poseset_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.poseset_start_value(arg0); } @@ -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"); + "poseset_value_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.poseset_value_n(arg0, arg1, arg2); + return GeneratedFunctions.poseset_value_n(arg0, arg1); } /** @@ -77,10 +77,10 @@ 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"); + "poseset_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.poseset_values(arg0); } @@ -91,10 +91,10 @@ 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"); + "poseset_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.poseset_in(arg0); } @@ -105,10 +105,10 @@ 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"); + "poseset_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.poseset_out(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsRuntime.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsRuntime.java index cbf8209..7788c16 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsRuntime.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsRuntime.java @@ -12,7 +12,7 @@ final class MeosOpsRuntime { static { boolean enabled = Boolean.parseBoolean( - System.getProperty("mobilityflink.meos.enabled", "true")); + System.getProperty("mobilitykafka.meos.enabled", "true")); boolean ok = false; if (enabled) { try { diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsSTBox.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsSTBox.java index 4717975..60e50a0 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsSTBox.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsSTBox.java @@ -21,10 +21,10 @@ 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"); + "stbox_copy requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_copy(arg0); } @@ -35,10 +35,10 @@ 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"); + "stbox_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_make(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); } @@ -49,10 +49,10 @@ 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"); + "stbox_to_box3d requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_to_box3d(arg0); } @@ -63,10 +63,10 @@ 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"); + "stbox_to_gbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_to_gbox(arg0); } @@ -77,10 +77,10 @@ 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"); + "stbox_to_geo requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_to_geo(arg0); } @@ -91,10 +91,10 @@ 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"); + "stbox_to_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_to_tstzspan(arg0); } @@ -105,10 +105,10 @@ 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"); + "stbox_area requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_area(arg0, arg1); } @@ -119,10 +119,10 @@ 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"); + "stbox_cmp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_cmp(arg0, arg1); } @@ -133,10 +133,10 @@ 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"); + "stbox_eq requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_eq(arg0, arg1); } @@ -147,10 +147,10 @@ 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"); + "stbox_expand_space requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_expand_space(arg0, arg1); } @@ -161,10 +161,10 @@ 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"); + "stbox_expand_time requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_expand_time(arg0, arg1); } @@ -175,10 +175,10 @@ 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"); + "stbox_ge requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_ge(arg0, arg1); } @@ -189,10 +189,10 @@ 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"); + "stbox_get_space requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_get_space(arg0); } @@ -203,10 +203,10 @@ 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"); + "stbox_get_space_tile requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_get_space_tile(arg0, arg1, arg2, arg3, arg4); } @@ -217,10 +217,10 @@ 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"); + "stbox_get_space_time_tile requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_get_space_time_tile(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -231,10 +231,10 @@ 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"); + "stbox_get_time_tile requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_get_time_tile(arg0, arg1, arg2); } @@ -245,10 +245,10 @@ 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"); + "stbox_gt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_gt(arg0, arg1); } @@ -259,10 +259,10 @@ 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"); + "stbox_hash requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_hash(arg0); } @@ -273,10 +273,10 @@ 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"); + "stbox_hash_extended requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_hash_extended(arg0, arg1); } @@ -287,10 +287,10 @@ 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"); + "stbox_hast requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_hast(arg0); } @@ -301,10 +301,10 @@ 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"); + "stbox_hasx requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_hasx(arg0); } @@ -315,10 +315,10 @@ 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"); + "stbox_hasz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_hasz(arg0); } @@ -329,10 +329,10 @@ 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"); + "stbox_isgeodetic requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_isgeodetic(arg0); } @@ -343,10 +343,10 @@ 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"); + "stbox_le requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_le(arg0, arg1); } @@ -357,10 +357,10 @@ 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"); + "stbox_lt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_lt(arg0, arg1); } @@ -371,10 +371,10 @@ 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"); + "stbox_ne requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_ne(arg0, arg1); } @@ -385,10 +385,10 @@ 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"); + "stbox_perimeter requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_perimeter(arg0, arg1); } @@ -399,10 +399,10 @@ 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"); + "stbox_quad_split requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_quad_split(arg0, arg1); } @@ -413,10 +413,10 @@ 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"); + "stbox_round requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_round(arg0, arg1); } @@ -427,10 +427,10 @@ 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"); + "stbox_set_srid requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_set_srid(arg0, arg1); } @@ -441,10 +441,10 @@ 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"); + "stbox_shift_scale_time requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_shift_scale_time(arg0, arg1, arg2); } @@ -455,10 +455,10 @@ 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"); + "stbox_space_tiles requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_space_tiles(arg0, arg1, arg2, arg3, arg4, arg5, arg6); } @@ -469,10 +469,10 @@ 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"); + "stbox_space_time_tiles requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_space_time_tiles(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); } @@ -483,10 +483,10 @@ 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"); + "stbox_srid requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_srid(arg0); } @@ -497,10 +497,10 @@ 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"); + "stbox_time_tiles requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_time_tiles(arg0, arg1, arg2, arg3, arg4); } @@ -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"); + "stbox_tmax requires libmeos — set -Dmobilitykafka.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"); + "stbox_tmax_inc requires libmeos — set -Dmobilitykafka.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"); + "stbox_tmin requires libmeos — set -Dmobilitykafka.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"); + "stbox_tmin_inc requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.stbox_tmin_inc(arg0, arg1); + return GeneratedFunctions.stbox_tmin_inc(arg0); } /** @@ -567,10 +567,10 @@ 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"); + "stbox_transform requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_transform(arg0, arg1); } @@ -581,10 +581,10 @@ 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"); + "stbox_transform_pipeline requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_transform_pipeline(arg0, arg1, arg2, arg3); } @@ -595,10 +595,10 @@ 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"); + "stbox_volume requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_volume(arg0); } @@ -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"); + "stbox_xmax requires libmeos — set -Dmobilitykafka.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"); + "stbox_xmin requires libmeos — set -Dmobilitykafka.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"); + "stbox_ymax requires libmeos — set -Dmobilitykafka.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"); + "stbox_ymin requires libmeos — set -Dmobilitykafka.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"); + "stbox_zmax requires libmeos — set -Dmobilitykafka.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"); + "stbox_zmin requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.stbox_zmin(arg0, arg1); + return GeneratedFunctions.stbox_zmin(arg0); } /** @@ -693,10 +693,10 @@ 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"); + "stbox_as_hexwkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_as_hexwkb(arg0, arg1, arg2); } @@ -707,10 +707,10 @@ 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"); + "stbox_as_wkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_as_wkb(arg0, arg1); } @@ -721,10 +721,10 @@ 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"); + "stbox_from_hexwkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_from_hexwkb(arg0); } @@ -735,10 +735,10 @@ 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"); + "stbox_from_wkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_from_wkb(arg0, arg1); } @@ -749,10 +749,10 @@ 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"); + "stbox_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_in(arg0); } @@ -763,10 +763,10 @@ 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"); + "stbox_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.stbox_out(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsSet.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsSet.java index 52a364a..626fd9c 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsSet.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsSet.java @@ -21,10 +21,10 @@ 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"); + "set_copy requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_copy(arg0); } @@ -35,10 +35,10 @@ 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"); + "set_to_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_to_span(arg0); } @@ -49,10 +49,10 @@ 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"); + "set_to_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_to_spanset(arg0); } @@ -63,10 +63,10 @@ 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"); + "set_to_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_to_tbox(arg0); } @@ -77,10 +77,10 @@ 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"); + "set_cmp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_cmp(arg0, arg1); } @@ -91,10 +91,10 @@ 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"); + "set_eq requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_eq(arg0, arg1); } @@ -105,10 +105,10 @@ 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"); + "set_ge requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_ge(arg0, arg1); } @@ -119,10 +119,10 @@ 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"); + "set_gt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_gt(arg0, arg1); } @@ -133,10 +133,10 @@ 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"); + "set_hash requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_hash(arg0); } @@ -147,10 +147,10 @@ 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"); + "set_hash_extended requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_hash_extended(arg0, arg1); } @@ -161,10 +161,10 @@ 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"); + "set_le requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_le(arg0, arg1); } @@ -175,10 +175,10 @@ 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"); + "set_lt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_lt(arg0, arg1); } @@ -189,10 +189,10 @@ 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"); + "set_ne requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_ne(arg0, arg1); } @@ -203,10 +203,10 @@ 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"); + "set_num_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_num_values(arg0); } @@ -217,10 +217,10 @@ 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"); + "set_round requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_round(arg0, arg1); } @@ -231,10 +231,10 @@ 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"); + "set_spans requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_spans(arg0); } @@ -245,10 +245,10 @@ 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"); + "set_split_each_n_spans requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_split_each_n_spans(arg0, arg1, arg2); } @@ -259,10 +259,10 @@ 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"); + "set_split_n_spans requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_split_n_spans(arg0, arg1, arg2); } @@ -273,10 +273,10 @@ 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"); + "set_extent_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_extent_transfn(arg0, arg1); } @@ -287,10 +287,10 @@ 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"); + "set_union_finalfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_union_finalfn(arg0); } @@ -301,10 +301,10 @@ 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"); + "set_union_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_union_transfn(arg0, arg1); } @@ -315,10 +315,10 @@ 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"); + "set_as_hexwkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_as_hexwkb(arg0, arg1); } @@ -329,10 +329,10 @@ 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"); + "set_as_wkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_as_wkb(arg0, arg1); } @@ -343,10 +343,10 @@ 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"); + "set_from_hexwkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_from_hexwkb(arg0); } @@ -357,10 +357,10 @@ 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"); + "set_from_wkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.set_from_wkb(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsSpan.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsSpan.java index c5921f8..80a871f 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsSpan.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsSpan.java @@ -21,10 +21,10 @@ 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"); + "span_copy requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.span_copy(arg0); } @@ -35,10 +35,10 @@ 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"); + "span_to_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.span_to_spanset(arg0); } @@ -49,10 +49,10 @@ 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"); + "span_to_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.span_to_tbox(arg0); } @@ -63,10 +63,10 @@ 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"); + "span_cmp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.span_cmp(arg0, arg1); } @@ -77,10 +77,10 @@ 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"); + "span_eq requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.span_eq(arg0, arg1); } @@ -91,10 +91,10 @@ 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"); + "span_ge requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.span_ge(arg0, arg1); } @@ -105,10 +105,10 @@ 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"); + "span_gt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.span_gt(arg0, arg1); } @@ -119,10 +119,10 @@ 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"); + "span_hash requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.span_hash(arg0); } @@ -133,10 +133,10 @@ 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"); + "span_hash_extended requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.span_hash_extended(arg0, arg1); } @@ -147,10 +147,10 @@ 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"); + "span_le requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.span_le(arg0, arg1); } @@ -161,10 +161,10 @@ 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"); + "span_lower_inc requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.span_lower_inc(arg0); } @@ -175,10 +175,10 @@ 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"); + "span_lt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.span_lt(arg0, arg1); } @@ -189,10 +189,10 @@ 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"); + "span_ne requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.span_ne(arg0, arg1); } @@ -203,10 +203,10 @@ 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"); + "span_upper_inc requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.span_upper_inc(arg0); } @@ -217,10 +217,10 @@ 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"); + "span_extent_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.span_extent_transfn(arg0, arg1); } @@ -231,10 +231,10 @@ 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"); + "span_union_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.span_union_transfn(arg0, arg1); } @@ -245,10 +245,10 @@ 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"); + "span_as_hexwkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.span_as_hexwkb(arg0, arg1); } @@ -259,10 +259,10 @@ 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"); + "span_as_wkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.span_as_wkb(arg0, arg1); } @@ -273,10 +273,10 @@ 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"); + "span_from_hexwkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.span_from_hexwkb(arg0); } @@ -287,10 +287,10 @@ 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"); + "span_from_wkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.span_from_wkb(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsSpanSet.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsSpanSet.java index 0994d78..a9a0d00 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsSpanSet.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsSpanSet.java @@ -21,10 +21,10 @@ 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"); + "spanset_copy requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_copy(arg0); } @@ -35,10 +35,10 @@ 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"); + "spanset_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_make(arg0, arg1); } @@ -49,10 +49,10 @@ 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"); + "spanset_to_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_to_tbox(arg0); } @@ -63,10 +63,10 @@ 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"); + "spanset_cmp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_cmp(arg0, arg1); } @@ -77,10 +77,10 @@ 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"); + "spanset_end_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_end_span(arg0); } @@ -91,10 +91,10 @@ 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"); + "spanset_eq requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_eq(arg0, arg1); } @@ -105,10 +105,10 @@ 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"); + "spanset_ge requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_ge(arg0, arg1); } @@ -119,10 +119,10 @@ 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"); + "spanset_gt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_gt(arg0, arg1); } @@ -133,10 +133,10 @@ 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"); + "spanset_hash requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_hash(arg0); } @@ -147,10 +147,10 @@ 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"); + "spanset_hash_extended requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_hash_extended(arg0, arg1); } @@ -161,10 +161,10 @@ 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"); + "spanset_le requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_le(arg0, arg1); } @@ -175,10 +175,10 @@ 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"); + "spanset_lower_inc requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_lower_inc(arg0); } @@ -189,10 +189,10 @@ 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"); + "spanset_lt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_lt(arg0, arg1); } @@ -203,10 +203,10 @@ 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"); + "spanset_ne requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_ne(arg0, arg1); } @@ -217,10 +217,10 @@ 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"); + "spanset_num_spans requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_num_spans(arg0); } @@ -231,10 +231,10 @@ 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"); + "spanset_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_span(arg0); } @@ -245,10 +245,10 @@ 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"); + "spanset_span_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_span_n(arg0, arg1); } @@ -259,10 +259,10 @@ 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"); + "spanset_spanarr requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_spanarr(arg0); } @@ -273,10 +273,10 @@ 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"); + "spanset_spans requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_spans(arg0); } @@ -287,10 +287,10 @@ 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"); + "spanset_split_each_n_spans requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_split_each_n_spans(arg0, arg1, arg2); } @@ -301,10 +301,10 @@ 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"); + "spanset_split_n_spans requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_split_n_spans(arg0, arg1, arg2); } @@ -315,10 +315,10 @@ 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"); + "spanset_start_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_start_span(arg0); } @@ -329,10 +329,10 @@ 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"); + "spanset_upper_inc requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_upper_inc(arg0); } @@ -343,10 +343,10 @@ 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"); + "spanset_extent_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_extent_transfn(arg0, arg1); } @@ -357,10 +357,10 @@ 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"); + "spanset_union_finalfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_union_finalfn(arg0); } @@ -371,10 +371,10 @@ 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"); + "spanset_union_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_union_transfn(arg0, arg1); } @@ -385,10 +385,10 @@ 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"); + "spanset_as_hexwkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_as_hexwkb(arg0, arg1); } @@ -399,10 +399,10 @@ 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"); + "spanset_as_wkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_as_wkb(arg0, arg1); } @@ -413,10 +413,10 @@ 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"); + "spanset_from_hexwkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_from_hexwkb(arg0); } @@ -427,10 +427,10 @@ 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"); + "spanset_from_wkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.spanset_from_wkb(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsSqlSurface.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsSqlSurface.java new file mode 100644 index 0000000..eb7ee3e --- /dev/null +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsSqlSurface.java @@ -0,0 +1,897 @@ +package org.mobilitydb.kafka.meos; + +/** + * Forwarding facade methods for MEOS functions that the MobilityDB SQL layer + * exposes as user functions but whose implementation lives in the internal headers + * ({@code meos_internal*.h}). JMEOS binds them; they are exposed here so the facade + * matches the SQL user surface as well as the public MEOS API. Each method delegates + * to its {@code functions.GeneratedFunctions} export under the + * {@link MeosOpsRuntime#MEOS_AVAILABLE} guard. + */ +public final class MeosOpsSqlSurface { + + private MeosOpsSqlSurface() { /* utility */ } + + /** MEOS {@code adjacent_span_value} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.adjacent_span_value(arg0, arg1); + } + + /** MEOS {@code adjacent_spanset_value} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.adjacent_spanset_value(arg0, arg1); + } + + /** MEOS {@code adjacent_value_spanset} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.adjacent_value_spanset(arg0, arg1); + } + + /** MEOS {@code always_eq_base_temporal} — SQL-surface function (meos_internal). */ + public static int always_eq_base_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("always_eq_base_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.always_eq_base_temporal(arg0, arg1); + } + + /** MEOS {@code always_eq_temporal_base} — SQL-surface function (meos_internal). */ + public static int always_eq_temporal_base(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("always_eq_temporal_base requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.always_eq_temporal_base(arg0, arg1); + } + + /** MEOS {@code always_ge_base_temporal} — SQL-surface function (meos_internal). */ + public static int always_ge_base_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("always_ge_base_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.always_ge_base_temporal(arg0, arg1); + } + + /** MEOS {@code always_ge_temporal_base} — SQL-surface function (meos_internal). */ + public static int always_ge_temporal_base(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("always_ge_temporal_base requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.always_ge_temporal_base(arg0, arg1); + } + + /** MEOS {@code always_gt_base_temporal} — SQL-surface function (meos_internal). */ + public static int always_gt_base_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("always_gt_base_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.always_gt_base_temporal(arg0, arg1); + } + + /** MEOS {@code always_gt_temporal_base} — SQL-surface function (meos_internal). */ + public static int always_gt_temporal_base(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("always_gt_temporal_base requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.always_gt_temporal_base(arg0, arg1); + } + + /** MEOS {@code always_le_base_temporal} — SQL-surface function (meos_internal). */ + public static int always_le_base_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("always_le_base_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.always_le_base_temporal(arg0, arg1); + } + + /** MEOS {@code always_le_temporal_base} — SQL-surface function (meos_internal). */ + public static int always_le_temporal_base(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("always_le_temporal_base requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.always_le_temporal_base(arg0, arg1); + } + + /** MEOS {@code always_lt_base_temporal} — SQL-surface function (meos_internal). */ + public static int always_lt_base_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("always_lt_base_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.always_lt_base_temporal(arg0, arg1); + } + + /** MEOS {@code always_lt_temporal_base} — SQL-surface function (meos_internal). */ + public static int always_lt_temporal_base(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("always_lt_temporal_base requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.always_lt_temporal_base(arg0, arg1); + } + + /** MEOS {@code always_ne_base_temporal} — SQL-surface function (meos_internal). */ + public static int always_ne_base_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("always_ne_base_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.always_ne_base_temporal(arg0, arg1); + } + + /** MEOS {@code always_ne_temporal_base} — SQL-surface function (meos_internal). */ + public static int always_ne_temporal_base(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("always_ne_temporal_base requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.always_ne_temporal_base(arg0, arg1); + } + + /** MEOS {@code contained_value_set} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.contained_value_set(arg0, arg1); + } + + /** MEOS {@code contained_value_span} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.contained_value_span(arg0, arg1); + } + + /** MEOS {@code contained_value_spanset} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.contained_value_spanset(arg0, arg1); + } + + /** MEOS {@code contains_set_value} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.contains_set_value(arg0, arg1); + } + + /** MEOS {@code contains_span_value} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.contains_span_value(arg0, arg1); + } + + /** MEOS {@code contains_spanset_value} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.contains_spanset_value(arg0, arg1); + } + + /** MEOS {@code distance_set_set} — SQL-surface function (meos_internal). */ + public static int distance_set_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("distance_set_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.distance_set_set(arg0, arg1); + } + + /** MEOS {@code distance_set_value} — SQL-surface function (meos_internal). */ + public static int distance_set_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("distance_set_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.distance_set_value(arg0, arg1); + } + + /** MEOS {@code distance_span_span} — SQL-surface function (meos_internal). */ + public static int distance_span_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("distance_span_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.distance_span_span(arg0, arg1); + } + + /** MEOS {@code distance_span_value} — SQL-surface function (meos_internal). */ + public static int distance_span_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("distance_span_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.distance_span_value(arg0, arg1); + } + + /** MEOS {@code distance_spanset_span} — SQL-surface function (meos_internal). */ + public static int distance_spanset_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("distance_spanset_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.distance_spanset_span(arg0, arg1); + } + + /** MEOS {@code distance_spanset_spanset} — SQL-surface function (meos_internal). */ + public static int distance_spanset_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("distance_spanset_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.distance_spanset_spanset(arg0, arg1); + } + + /** MEOS {@code distance_spanset_value} — SQL-surface function (meos_internal). */ + public static int distance_spanset_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("distance_spanset_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.distance_spanset_value(arg0, arg1); + } + + /** MEOS {@code distance_value_value} — SQL-surface function (meos_internal). */ + public static int distance_value_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, int arg2) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("distance_value_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.distance_value_value(arg0, arg1, arg2); + } + + /** MEOS {@code ever_eq_base_temporal} — SQL-surface function (meos_internal). */ + public static int ever_eq_base_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("ever_eq_base_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.ever_eq_base_temporal(arg0, arg1); + } + + /** MEOS {@code ever_eq_temporal_base} — SQL-surface function (meos_internal). */ + public static int ever_eq_temporal_base(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("ever_eq_temporal_base requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.ever_eq_temporal_base(arg0, arg1); + } + + /** MEOS {@code ever_ge_base_temporal} — SQL-surface function (meos_internal). */ + public static int ever_ge_base_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("ever_ge_base_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.ever_ge_base_temporal(arg0, arg1); + } + + /** MEOS {@code ever_ge_temporal_base} — SQL-surface function (meos_internal). */ + public static int ever_ge_temporal_base(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("ever_ge_temporal_base requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.ever_ge_temporal_base(arg0, arg1); + } + + /** MEOS {@code ever_gt_base_temporal} — SQL-surface function (meos_internal). */ + public static int ever_gt_base_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("ever_gt_base_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.ever_gt_base_temporal(arg0, arg1); + } + + /** MEOS {@code ever_gt_temporal_base} — SQL-surface function (meos_internal). */ + public static int ever_gt_temporal_base(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("ever_gt_temporal_base requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.ever_gt_temporal_base(arg0, arg1); + } + + /** MEOS {@code ever_le_base_temporal} — SQL-surface function (meos_internal). */ + public static int ever_le_base_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("ever_le_base_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.ever_le_base_temporal(arg0, arg1); + } + + /** MEOS {@code ever_le_temporal_base} — SQL-surface function (meos_internal). */ + public static int ever_le_temporal_base(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("ever_le_temporal_base requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.ever_le_temporal_base(arg0, arg1); + } + + /** MEOS {@code ever_lt_base_temporal} — SQL-surface function (meos_internal). */ + public static int ever_lt_base_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("ever_lt_base_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.ever_lt_base_temporal(arg0, arg1); + } + + /** MEOS {@code ever_lt_temporal_base} — SQL-surface function (meos_internal). */ + public static int ever_lt_temporal_base(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("ever_lt_temporal_base requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.ever_lt_temporal_base(arg0, arg1); + } + + /** MEOS {@code ever_ne_base_temporal} — SQL-surface function (meos_internal). */ + public static int ever_ne_base_temporal(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("ever_ne_base_temporal requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.ever_ne_base_temporal(arg0, arg1); + } + + /** MEOS {@code ever_ne_temporal_base} — SQL-surface function (meos_internal). */ + public static int ever_ne_temporal_base(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("ever_ne_temporal_base requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.ever_ne_temporal_base(arg0, arg1); + } + + /** MEOS {@code intersection_set_value} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer intersection_set_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("intersection_set_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.intersection_set_value(arg0, arg1); + } + + /** MEOS {@code intersection_span_value} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer intersection_span_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("intersection_span_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.intersection_span_value(arg0, arg1); + } + + /** MEOS {@code intersection_spanset_value} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer intersection_spanset_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("intersection_spanset_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.intersection_spanset_value(arg0, arg1); + } + + /** MEOS {@code intersection_value_set} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer intersection_value_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("intersection_value_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.intersection_value_set(arg0, arg1); + } + + /** MEOS {@code intersection_value_span} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer intersection_value_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("intersection_value_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.intersection_value_span(arg0, arg1); + } + + /** MEOS {@code intersection_value_spanset} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer intersection_value_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("intersection_value_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.intersection_value_spanset(arg0, arg1); + } + + /** MEOS {@code left_set_value} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.left_set_value(arg0, arg1); + } + + /** MEOS {@code left_span_value} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.left_span_value(arg0, arg1); + } + + /** MEOS {@code left_spanset_value} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.left_spanset_value(arg0, arg1); + } + + /** MEOS {@code left_value_set} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.left_value_set(arg0, arg1); + } + + /** MEOS {@code left_value_span} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.left_value_span(arg0, arg1); + } + + /** MEOS {@code left_value_spanset} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.left_value_spanset(arg0, arg1); + } + + /** MEOS {@code minus_set_value} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer minus_set_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("minus_set_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.minus_set_value(arg0, arg1); + } + + /** MEOS {@code minus_span_value} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer minus_span_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("minus_span_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.minus_span_value(arg0, arg1); + } + + /** MEOS {@code minus_spanset_value} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer minus_spanset_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("minus_spanset_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.minus_spanset_value(arg0, arg1); + } + + /** MEOS {@code minus_value_set} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer minus_value_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("minus_value_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.minus_value_set(arg0, arg1); + } + + /** MEOS {@code minus_value_span} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer minus_value_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("minus_value_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.minus_value_span(arg0, arg1); + } + + /** MEOS {@code minus_value_spanset} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer minus_value_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("minus_value_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.minus_value_spanset(arg0, arg1); + } + + /** MEOS {@code nad_tbox_tbox} — SQL-surface function (meos_internal). */ + public static double nad_tbox_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("nad_tbox_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.nad_tbox_tbox(arg0, arg1); + } + + /** MEOS {@code nad_tnumber_number} — SQL-surface function (meos_internal). */ + public static double nad_tnumber_number(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("nad_tnumber_number requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.nad_tnumber_number(arg0, arg1); + } + + /** MEOS {@code nad_tnumber_tbox} — SQL-surface function (meos_internal). */ + public static double nad_tnumber_tbox(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("nad_tnumber_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.nad_tnumber_tbox(arg0, arg1); + } + + /** MEOS {@code nad_tnumber_tnumber} — SQL-surface function (meos_internal). */ + public static double nad_tnumber_tnumber(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("nad_tnumber_tnumber requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.nad_tnumber_tnumber(arg0, arg1); + } + + /** 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, java.time.OffsetDateTime arg2) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("number_timestamptz_to_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.number_timestamptz_to_tbox(arg0, arg1, arg2); + } + + /** MEOS {@code number_tstzspan_to_tbox} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer number_tstzspan_to_tbox(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("number_tstzspan_to_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.number_tstzspan_to_tbox(arg0, arg1, arg2); + } + + /** 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, boolean arg3, boolean arg4) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("numset_shift_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.numset_shift_scale(arg0, arg1, arg2, arg3, arg4); + } + + /** MEOS {@code numspan_expand} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer numspan_expand(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("numspan_expand requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.numspan_expand(arg0, arg1); + } + + /** 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, boolean arg3, boolean arg4) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("numspan_shift_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.numspan_shift_scale(arg0, arg1, arg2, arg3, arg4); + } + + /** MEOS {@code numspan_width} — SQL-surface function (meos_internal). */ + public static int numspan_width(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("numspan_width requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.numspan_width(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, boolean arg3, boolean arg4) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("numspanset_shift_scale requires libmeos — set -Dmobilitykafka.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, boolean arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("numspanset_width requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.numspanset_width(arg0, arg1); + } + + /** MEOS {@code overleft_set_value} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.overleft_set_value(arg0, arg1); + } + + /** MEOS {@code overleft_span_value} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.overleft_span_value(arg0, arg1); + } + + /** MEOS {@code overleft_spanset_value} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.overleft_spanset_value(arg0, arg1); + } + + /** MEOS {@code overleft_value_set} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.overleft_value_set(arg0, arg1); + } + + /** MEOS {@code overleft_value_span} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.overleft_value_span(arg0, arg1); + } + + /** MEOS {@code overleft_value_spanset} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.overleft_value_spanset(arg0, arg1); + } + + /** MEOS {@code overright_set_value} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.overright_set_value(arg0, arg1); + } + + /** MEOS {@code overright_span_value} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.overright_span_value(arg0, arg1); + } + + /** MEOS {@code overright_spanset_value} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.overright_spanset_value(arg0, arg1); + } + + /** MEOS {@code overright_value_set} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.overright_value_set(arg0, arg1); + } + + /** MEOS {@code overright_value_span} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.overright_value_span(arg0, arg1); + } + + /** MEOS {@code overright_value_spanset} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.overright_value_spanset(arg0, arg1); + } + + /** MEOS {@code right_set_value} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.right_set_value(arg0, arg1); + } + + /** MEOS {@code right_span_value} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.right_span_value(arg0, arg1); + } + + /** MEOS {@code right_spanset_value} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.right_spanset_value(arg0, arg1); + } + + /** MEOS {@code right_value_set} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.right_value_set(arg0, arg1); + } + + /** MEOS {@code right_value_span} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.right_value_span(arg0, arg1); + } + + /** MEOS {@code right_value_spanset} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.right_value_spanset(arg0, arg1); + } + + /** MEOS {@code set_end_value} — SQL-surface function (meos_internal). */ + public static int set_end_value(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("set_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.set_end_value(arg0); + } + + /** MEOS {@code set_mem_size} — SQL-surface function (meos_internal). */ + public static int set_mem_size(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("set_mem_size requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.set_mem_size(arg0); + } + + /** MEOS {@code set_start_value} — SQL-surface function (meos_internal). */ + public static int set_start_value(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("set_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.set_start_value(arg0); + } + + /** MEOS {@code set_value_n} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.set_value_n(arg0, arg1); + } + + /** MEOS {@code set_values} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer set_values(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("set_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.set_values(arg0); + } + + /** MEOS {@code span_bins} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer span_bins(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2, jnr.ffi.Pointer arg3) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("span_bins requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.span_bins(arg0, arg1, arg2, arg3); + } + + /** MEOS {@code spanset_bins} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer spanset_bins(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2, jnr.ffi.Pointer arg3) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("spanset_bins requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.spanset_bins(arg0, arg1, arg2, arg3); + } + + /** MEOS {@code spanset_lower} — SQL-surface function (meos_internal). */ + public static int spanset_lower(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("spanset_lower requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.spanset_lower(arg0); + } + + /** MEOS {@code spanset_mem_size} — SQL-surface function (meos_internal). */ + public static int spanset_mem_size(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("spanset_mem_size requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.spanset_mem_size(arg0); + } + + /** MEOS {@code spanset_upper} — SQL-surface function (meos_internal). */ + public static int spanset_upper(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("spanset_upper requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.spanset_upper(arg0); + } + + /** MEOS {@code tbox_expand_value} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer tbox_expand_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, int arg2) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tbox_expand_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tbox_expand_value(arg0, arg1, arg2); + } + + /** 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, 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 -Dmobilitykafka.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, boolean arg3, boolean arg4) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tbox_shift_scale_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tbox_shift_scale_value(arg0, arg1, arg2, arg3, arg4); + } + + /** MEOS {@code tdistance_tnumber_number} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer tdistance_tnumber_number(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tdistance_tnumber_number requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tdistance_tnumber_number(arg0, arg1); + } + + /** MEOS {@code temporal_end_value} — SQL-surface function (meos_internal). */ + public static int temporal_end_value(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("temporal_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.temporal_end_value(arg0); + } + + /** MEOS {@code temporal_from_mfjson} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer temporal_from_mfjson(java.lang.String arg0, int arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("temporal_from_mfjson requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.temporal_from_mfjson(arg0, arg1); + } + + /** MEOS {@code temporal_max_value} — SQL-surface function (meos_internal). */ + public static int temporal_max_value(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("temporal_max_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.temporal_max_value(arg0); + } + + /** MEOS {@code temporal_mem_size} — SQL-surface function (meos_internal). */ + public static long temporal_mem_size(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("temporal_mem_size requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.temporal_mem_size(arg0); + } + + /** MEOS {@code temporal_min_value} — SQL-surface function (meos_internal). */ + public static int temporal_min_value(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("temporal_min_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.temporal_min_value(arg0); + } + + /** MEOS {@code temporal_start_value} — SQL-surface function (meos_internal). */ + public static int temporal_start_value(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("temporal_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.temporal_start_value(arg0); + } + + /** MEOS {@code temporal_value_at_timestamptz} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.temporal_value_at_timestamptz(arg0, arg1, arg2); + } + + /** MEOS {@code temporal_value_n} — SQL-surface function (meos_internal). */ + 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.temporal_value_n(arg0, arg1); + } + + /** MEOS {@code tinstant_value} — SQL-surface function (meos_internal). */ + public static int tinstant_value(jnr.ffi.Pointer arg0) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tinstant_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tinstant_value(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, boolean arg3, boolean arg4) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tnumber_shift_scale_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tnumber_shift_scale_value(arg0, arg1, arg2, arg3, arg4); + } + + /** MEOS {@code tnumber_value_bins} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer tnumber_value_bins(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2, jnr.ffi.Pointer arg3) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tnumber_value_bins requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tnumber_value_bins(arg0, arg1, arg2, arg3); + } + + /** MEOS {@code tnumber_value_split} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer tnumber_value_split(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, jnr.ffi.Pointer arg2, jnr.ffi.Pointer arg3, jnr.ffi.Pointer arg4) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tnumber_value_split requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tnumber_value_split(arg0, arg1, arg2, arg3, arg4); + } + + /** 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, java.time.OffsetDateTime arg4, jnr.ffi.Pointer arg5) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tnumber_value_time_boxes requires libmeos — set -Dmobilitykafka.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, 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 -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tnumber_value_time_split(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); + } + + /** MEOS {@code tsequence_from_base_tstzset} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer tsequence_from_base_tstzset(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tsequence_from_base_tstzset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tsequence_from_base_tstzset(arg0, arg1, arg2); + } + + /** MEOS {@code tsequence_from_base_tstzspan} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer tsequence_from_base_tstzspan(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2, int arg3) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tsequence_from_base_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tsequence_from_base_tstzspan(arg0, arg1, arg2, arg3); + } + + /** MEOS {@code tsequenceset_from_base_tstzspanset} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer tsequenceset_from_base_tstzspanset(jnr.ffi.Pointer arg0, int arg1, jnr.ffi.Pointer arg2, int arg3) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("tsequenceset_from_base_tstzspanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.tsequenceset_from_base_tstzspanset(arg0, arg1, arg2, arg3); + } + + /** MEOS {@code union_set_value} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer union_set_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("union_set_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.union_set_value(arg0, arg1); + } + + /** MEOS {@code union_span_value} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer union_span_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("union_span_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.union_span_value(arg0, arg1); + } + + /** MEOS {@code union_spanset_value} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer union_spanset_value(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("union_spanset_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.union_spanset_value(arg0, arg1); + } + + /** MEOS {@code union_value_set} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer union_value_set(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("union_value_set requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.union_value_set(arg0, arg1); + } + + /** MEOS {@code union_value_span} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer union_value_span(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("union_value_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.union_value_span(arg0, arg1); + } + + /** MEOS {@code union_value_spanset} — SQL-surface function (meos_internal). */ + public static jnr.ffi.Pointer union_value_spanset(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MeosOpsRuntime.MEOS_AVAILABLE) + throw new UnsupportedOperationException("union_value_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + return functions.GeneratedFunctions.union_value_spanset(arg0, arg1); + } + +} diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTBigint.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTBigint.java new file mode 100644 index 0000000..ff4edb6 --- /dev/null +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTBigint.java @@ -0,0 +1,537 @@ +package org.mobilitydb.kafka.meos; + +/* AUTO-GENERATED by tools/codegen/emit_tbigint_facade.py — do not edit by hand. + * tbigint temporal-type family facade over functions.GeneratedFunctions. + */ + +import functions.GeneratedFunctions; +import jnr.ffi.Pointer; + +public final class MeosOpsTBigint { + + public static final boolean MEOS_AVAILABLE = MeosOpsRuntime.MEOS_AVAILABLE; + + private MeosOpsTBigint() { /* utility */ } + + /** MEOS {@code add_bigint_tbigint} — tbigint temporal family. */ + public static jnr.ffi.Pointer add_bigint_tbigint(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "add_bigint_tbigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.add_bigint_tbigint(arg0, arg1); + } + + /** MEOS {@code add_tbigint_bigint} — tbigint temporal family. */ + public static jnr.ffi.Pointer add_tbigint_bigint(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "add_tbigint_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.add_tbigint_bigint(arg0, arg1); + } + + /** MEOS {@code always_eq_bigint_tbigint} — tbigint temporal family. */ + public static int always_eq_bigint_tbigint(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "always_eq_bigint_tbigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.always_eq_bigint_tbigint(arg0, arg1); + } + + /** MEOS {@code always_eq_tbigint_bigint} — tbigint temporal family. */ + public static int always_eq_tbigint_bigint(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "always_eq_tbigint_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.always_eq_tbigint_bigint(arg0, arg1); + } + + /** MEOS {@code always_ge_bigint_tbigint} — tbigint temporal family. */ + public static int always_ge_bigint_tbigint(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "always_ge_bigint_tbigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.always_ge_bigint_tbigint(arg0, arg1); + } + + /** MEOS {@code always_ge_tbigint_bigint} — tbigint temporal family. */ + public static int always_ge_tbigint_bigint(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "always_ge_tbigint_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.always_ge_tbigint_bigint(arg0, arg1); + } + + /** MEOS {@code always_gt_bigint_tbigint} — tbigint temporal family. */ + public static int always_gt_bigint_tbigint(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "always_gt_bigint_tbigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.always_gt_bigint_tbigint(arg0, arg1); + } + + /** MEOS {@code always_gt_tbigint_bigint} — tbigint temporal family. */ + public static int always_gt_tbigint_bigint(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "always_gt_tbigint_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.always_gt_tbigint_bigint(arg0, arg1); + } + + /** MEOS {@code always_le_bigint_tbigint} — tbigint temporal family. */ + public static int always_le_bigint_tbigint(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "always_le_bigint_tbigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.always_le_bigint_tbigint(arg0, arg1); + } + + /** MEOS {@code always_le_tbigint_bigint} — tbigint temporal family. */ + public static int always_le_tbigint_bigint(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "always_le_tbigint_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.always_le_tbigint_bigint(arg0, arg1); + } + + /** MEOS {@code always_lt_bigint_tbigint} — tbigint temporal family. */ + public static int always_lt_bigint_tbigint(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "always_lt_bigint_tbigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.always_lt_bigint_tbigint(arg0, arg1); + } + + /** MEOS {@code always_lt_tbigint_bigint} — tbigint temporal family. */ + public static int always_lt_tbigint_bigint(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "always_lt_tbigint_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.always_lt_tbigint_bigint(arg0, arg1); + } + + /** MEOS {@code always_ne_bigint_tbigint} — tbigint temporal family. */ + public static int always_ne_bigint_tbigint(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "always_ne_bigint_tbigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.always_ne_bigint_tbigint(arg0, arg1); + } + + /** MEOS {@code always_ne_tbigint_bigint} — tbigint temporal family. */ + public static int always_ne_tbigint_bigint(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "always_ne_tbigint_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.always_ne_tbigint_bigint(arg0, arg1); + } + + /** MEOS {@code div_bigint_tbigint} — tbigint temporal family. */ + public static jnr.ffi.Pointer div_bigint_tbigint(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "div_bigint_tbigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.div_bigint_tbigint(arg0, arg1); + } + + /** MEOS {@code div_tbigint_bigint} — tbigint temporal family. */ + public static jnr.ffi.Pointer div_tbigint_bigint(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "div_tbigint_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.div_tbigint_bigint(arg0, arg1); + } + + /** MEOS {@code ever_eq_bigint_tbigint} — tbigint temporal family. */ + public static int ever_eq_bigint_tbigint(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "ever_eq_bigint_tbigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.ever_eq_bigint_tbigint(arg0, arg1); + } + + /** MEOS {@code ever_eq_tbigint_bigint} — tbigint temporal family. */ + public static int ever_eq_tbigint_bigint(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "ever_eq_tbigint_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.ever_eq_tbigint_bigint(arg0, arg1); + } + + /** MEOS {@code ever_ge_bigint_tbigint} — tbigint temporal family. */ + public static int ever_ge_bigint_tbigint(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "ever_ge_bigint_tbigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.ever_ge_bigint_tbigint(arg0, arg1); + } + + /** MEOS {@code ever_ge_tbigint_bigint} — tbigint temporal family. */ + public static int ever_ge_tbigint_bigint(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "ever_ge_tbigint_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.ever_ge_tbigint_bigint(arg0, arg1); + } + + /** MEOS {@code ever_gt_bigint_tbigint} — tbigint temporal family. */ + public static int ever_gt_bigint_tbigint(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "ever_gt_bigint_tbigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.ever_gt_bigint_tbigint(arg0, arg1); + } + + /** MEOS {@code ever_gt_tbigint_bigint} — tbigint temporal family. */ + public static int ever_gt_tbigint_bigint(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "ever_gt_tbigint_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.ever_gt_tbigint_bigint(arg0, arg1); + } + + /** MEOS {@code ever_le_bigint_tbigint} — tbigint temporal family. */ + public static int ever_le_bigint_tbigint(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "ever_le_bigint_tbigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.ever_le_bigint_tbigint(arg0, arg1); + } + + /** MEOS {@code ever_le_tbigint_bigint} — tbigint temporal family. */ + public static int ever_le_tbigint_bigint(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "ever_le_tbigint_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.ever_le_tbigint_bigint(arg0, arg1); + } + + /** MEOS {@code ever_lt_bigint_tbigint} — tbigint temporal family. */ + public static int ever_lt_bigint_tbigint(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "ever_lt_bigint_tbigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.ever_lt_bigint_tbigint(arg0, arg1); + } + + /** MEOS {@code ever_lt_tbigint_bigint} — tbigint temporal family. */ + public static int ever_lt_tbigint_bigint(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "ever_lt_tbigint_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.ever_lt_tbigint_bigint(arg0, arg1); + } + + /** MEOS {@code ever_ne_bigint_tbigint} — tbigint temporal family. */ + public static int ever_ne_bigint_tbigint(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "ever_ne_bigint_tbigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.ever_ne_bigint_tbigint(arg0, arg1); + } + + /** MEOS {@code ever_ne_tbigint_bigint} — tbigint temporal family. */ + public static int ever_ne_tbigint_bigint(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "ever_ne_tbigint_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.ever_ne_tbigint_bigint(arg0, arg1); + } + + /** MEOS {@code mul_bigint_tbigint} — tbigint temporal family. */ + public static jnr.ffi.Pointer mul_bigint_tbigint(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "mul_bigint_tbigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.mul_bigint_tbigint(arg0, arg1); + } + + /** MEOS {@code mul_tbigint_bigint} — tbigint temporal family. */ + public static jnr.ffi.Pointer mul_tbigint_bigint(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "mul_tbigint_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.mul_tbigint_bigint(arg0, arg1); + } + + /** MEOS {@code sub_bigint_tbigint} — tbigint temporal family. */ + public static jnr.ffi.Pointer sub_bigint_tbigint(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "sub_bigint_tbigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.sub_bigint_tbigint(arg0, arg1); + } + + /** MEOS {@code sub_tbigint_bigint} — tbigint temporal family. */ + public static jnr.ffi.Pointer sub_tbigint_bigint(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "sub_tbigint_bigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.sub_tbigint_bigint(arg0, arg1); + } + + /** MEOS {@code tbigint_at_value} — tbigint temporal family. */ + public static jnr.ffi.Pointer tbigint_at_value(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigint_at_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigint_at_value(arg0, arg1); + } + + /** MEOS {@code tbigint_end_value} — tbigint temporal family. */ + public static long tbigint_end_value(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigint_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigint_end_value(arg0); + } + + /** MEOS {@code tbigint_from_base_temp} — tbigint temporal family. */ + public static jnr.ffi.Pointer tbigint_from_base_temp(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigint_from_base_temp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigint_from_base_temp(arg0, arg1); + } + + /** MEOS {@code tbigint_from_mfjson} — tbigint temporal family. */ + public static jnr.ffi.Pointer tbigint_from_mfjson(java.lang.String arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigint_from_mfjson requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigint_from_mfjson(arg0); + } + + /** MEOS {@code tbigint_in} — tbigint temporal family. */ + public static jnr.ffi.Pointer tbigint_in(java.lang.String arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigint_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigint_in(arg0); + } + + /** MEOS {@code tbigint_max_value} — tbigint temporal family. */ + public static long tbigint_max_value(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigint_max_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigint_max_value(arg0); + } + + /** MEOS {@code tbigint_min_value} — tbigint temporal family. */ + public static long tbigint_min_value(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigint_min_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigint_min_value(arg0); + } + + /** MEOS {@code tbigint_minus_value} — tbigint temporal family. */ + public static jnr.ffi.Pointer tbigint_minus_value(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigint_minus_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigint_minus_value(arg0, arg1); + } + + /** MEOS {@code tbigint_out} — tbigint temporal family. */ + public static java.lang.String tbigint_out(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigint_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigint_out(arg0); + } + + /** MEOS {@code tbigint_scale_value} — tbigint temporal family. */ + public static jnr.ffi.Pointer tbigint_scale_value(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigint_scale_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigint_scale_value(arg0, arg1); + } + + /** MEOS {@code tbigint_shift_scale_value} — tbigint temporal family. */ + public static jnr.ffi.Pointer tbigint_shift_scale_value(jnr.ffi.Pointer arg0, long arg1, long arg2) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigint_shift_scale_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigint_shift_scale_value(arg0, arg1, arg2); + } + + /** MEOS {@code tbigint_shift_value} — tbigint temporal family. */ + public static jnr.ffi.Pointer tbigint_shift_value(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigint_shift_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigint_shift_value(arg0, arg1); + } + + /** MEOS {@code tbigint_start_value} — tbigint temporal family. */ + public static long tbigint_start_value(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigint_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigint_start_value(arg0); + } + + /** MEOS {@code tbigint_to_tfloat} — tbigint temporal family. */ + public static jnr.ffi.Pointer tbigint_to_tfloat(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigint_to_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigint_to_tfloat(arg0); + } + + /** MEOS {@code tbigint_to_tint} — tbigint temporal family. */ + public static jnr.ffi.Pointer tbigint_to_tint(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigint_to_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigint_to_tint(arg0); + } + + /** MEOS {@code tbigint_value_at_timestamptz} — tbigint temporal family. */ + public static boolean tbigint_value_at_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1, boolean arg2, jnr.ffi.Pointer arg3) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigint_value_at_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigint_value_at_timestamptz(arg0, arg1, arg2, arg3); + } + + /** MEOS {@code tbigint_value_n} — tbigint temporal family. */ + public static jnr.ffi.Pointer tbigint_value_n(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigint_value_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigint_value_n(arg0, arg1); + } + + /** MEOS {@code tbigint_values} — tbigint temporal family. */ + public static jnr.ffi.Pointer tbigint_values(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigint_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigint_values(arg0, arg1); + } + + /** MEOS {@code tbigintbox_expand} — tbigint temporal family. */ + public static jnr.ffi.Pointer tbigintbox_expand(jnr.ffi.Pointer arg0, long arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigintbox_expand requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigintbox_expand(arg0, arg1); + } + + /** MEOS {@code tbigintbox_shift_scale} — tbigint temporal family. */ + public static jnr.ffi.Pointer tbigintbox_shift_scale(jnr.ffi.Pointer arg0, long arg1, long arg2, boolean arg3, boolean arg4) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigintbox_shift_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigintbox_shift_scale(arg0, arg1, arg2, arg3, arg4); + } + + /** MEOS {@code tbigintinst_make} — tbigint temporal family. */ + public static jnr.ffi.Pointer tbigintinst_make(long arg0, java.time.OffsetDateTime arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigintinst_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigintinst_make(arg0, arg1); + } + + /** MEOS {@code tbigintseq_from_base_tstzset} — tbigint temporal family. */ + public static jnr.ffi.Pointer tbigintseq_from_base_tstzset(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigintseq_from_base_tstzset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigintseq_from_base_tstzset(arg0, arg1); + } + + /** MEOS {@code tbigintseq_from_base_tstzspan} — tbigint temporal family. */ + public static jnr.ffi.Pointer tbigintseq_from_base_tstzspan(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigintseq_from_base_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigintseq_from_base_tstzspan(arg0, arg1); + } + + /** MEOS {@code tbigintseqset_from_base_tstzspanset} — tbigint temporal family. */ + public static jnr.ffi.Pointer tbigintseqset_from_base_tstzspanset(long arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tbigintseqset_from_base_tstzspanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tbigintseqset_from_base_tstzspanset(arg0, arg1); + } + + /** MEOS {@code tfloat_to_tbigint} — tbigint temporal family. */ + public static jnr.ffi.Pointer tfloat_to_tbigint(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tfloat_to_tbigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tfloat_to_tbigint(arg0); + } + + /** MEOS {@code tint_to_tbigint} — tbigint temporal family. */ + public static jnr.ffi.Pointer tint_to_tbigint(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "tint_to_tbigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.tint_to_tbigint(arg0); + } +} diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTBool.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTBool.java index 7674435..fccf60b 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTBool.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTBool.java @@ -21,10 +21,10 @@ 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"); + "tbool_from_base_temp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbool_from_base_temp(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "tbool_to_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbool_to_tint(arg0); } @@ -49,10 +49,10 @@ 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"); + "tbool_at_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbool_at_value(arg0, arg1); } @@ -63,10 +63,10 @@ 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"); + "tbool_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbool_end_value(arg0); } @@ -77,10 +77,10 @@ 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"); + "tbool_minus_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbool_minus_value(arg0, arg1); } @@ -91,10 +91,10 @@ 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"); + "tbool_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbool_start_value(arg0); } @@ -105,10 +105,10 @@ 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"); + "tbool_value_at_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbool_value_at_timestamptz(arg0, arg1, arg2, arg3); } @@ -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"); + "tbool_value_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.tbool_value_n(arg0, arg1, arg2); + return GeneratedFunctions.tbool_value_n(arg0, arg1); } /** @@ -133,10 +133,10 @@ 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"); + "tbool_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbool_values(arg0, arg1); } @@ -147,10 +147,10 @@ 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"); + "tbool_when_true requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbool_when_true(arg0); } @@ -161,10 +161,10 @@ 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"); + "tbool_tand_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbool_tand_transfn(arg0, arg1); } @@ -175,10 +175,10 @@ 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"); + "tbool_tor_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbool_tor_transfn(arg0, arg1); } @@ -189,10 +189,10 @@ 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"); + "tbool_from_mfjson requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbool_from_mfjson(arg0); } @@ -203,10 +203,10 @@ 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"); + "tbool_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbool_in(arg0); } @@ -217,10 +217,10 @@ 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"); + "tbool_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbool_out(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTBoolInst.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTBoolInst.java index d7a91bb..4332d4f 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTBoolInst.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTBoolInst.java @@ -21,10 +21,10 @@ 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"); + "tboolinst_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tboolinst_make(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTBox.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTBox.java index f0afa17..de180c0 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTBox.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTBox.java @@ -21,10 +21,10 @@ 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"); + "tbox_copy requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_copy(arg0); } @@ -35,10 +35,10 @@ 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"); + "tbox_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_make(arg0, arg1); } @@ -49,10 +49,10 @@ 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"); + "tbox_to_floatspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_to_floatspan(arg0); } @@ -63,10 +63,10 @@ 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"); + "tbox_to_intspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_to_intspan(arg0); } @@ -77,10 +77,10 @@ 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"); + "tbox_to_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_to_tstzspan(arg0); } @@ -91,10 +91,10 @@ 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"); + "tbox_cmp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_cmp(arg0, arg1); } @@ -105,10 +105,10 @@ 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"); + "tbox_eq requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_eq(arg0, arg1); } @@ -119,10 +119,10 @@ 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"); + "tbox_expand_time requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_expand_time(arg0, arg1); } @@ -133,10 +133,10 @@ 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"); + "tbox_ge requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_ge(arg0, arg1); } @@ -147,10 +147,10 @@ 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"); + "tbox_gt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_gt(arg0, arg1); } @@ -161,10 +161,10 @@ 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"); + "tbox_hash requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_hash(arg0); } @@ -175,10 +175,10 @@ 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"); + "tbox_hash_extended requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_hash_extended(arg0, arg1); } @@ -189,10 +189,10 @@ 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"); + "tbox_hast requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_hast(arg0); } @@ -203,10 +203,10 @@ 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"); + "tbox_hasx requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_hasx(arg0); } @@ -217,10 +217,10 @@ 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"); + "tbox_le requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_le(arg0, arg1); } @@ -231,10 +231,10 @@ 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"); + "tbox_lt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_lt(arg0, arg1); } @@ -245,10 +245,10 @@ 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"); + "tbox_ne requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_ne(arg0, arg1); } @@ -259,10 +259,10 @@ 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"); + "tbox_round requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_round(arg0, arg1); } @@ -273,10 +273,10 @@ 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"); + "tbox_shift_scale_time requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_shift_scale_time(arg0, arg1, arg2); } @@ -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"); + "tbox_tmax requires libmeos — set -Dmobilitykafka.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"); + "tbox_tmax_inc requires libmeos — set -Dmobilitykafka.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"); + "tbox_tmin requires libmeos — set -Dmobilitykafka.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"); + "tbox_tmin_inc requires libmeos — set -Dmobilitykafka.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"); + "tbox_xmax requires libmeos — set -Dmobilitykafka.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"); + "tbox_xmax_inc requires libmeos — set -Dmobilitykafka.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"); + "tbox_xmin requires libmeos — set -Dmobilitykafka.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"); + "tbox_xmin_inc requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.tbox_xmin_inc(arg0, arg1); + return GeneratedFunctions.tbox_xmin_inc(arg0); } /** @@ -399,10 +399,10 @@ 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"); + "tbox_as_hexwkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_as_hexwkb(arg0, arg1, arg2); } @@ -413,10 +413,10 @@ 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"); + "tbox_as_wkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_as_wkb(arg0, arg1); } @@ -427,10 +427,10 @@ 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"); + "tbox_from_hexwkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_from_hexwkb(arg0); } @@ -441,10 +441,10 @@ 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"); + "tbox_from_wkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_from_wkb(arg0, arg1); } @@ -455,10 +455,10 @@ 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"); + "tbox_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_in(arg0); } @@ -469,10 +469,10 @@ 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"); + "tbox_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tbox_out(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTCbuffer.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTCbuffer.java index 1850d80..3fa7c4d 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTCbuffer.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTCbuffer.java @@ -21,10 +21,10 @@ 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"); + "tcbuffer_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcbuffer_make(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "tcbuffer_to_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcbuffer_to_tfloat(arg0); } @@ -49,10 +49,10 @@ 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"); + "tcbuffer_to_tgeompoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcbuffer_to_tgeompoint(arg0); } @@ -63,10 +63,10 @@ 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"); + "tcbuffer_at_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcbuffer_at_cbuffer(arg0, arg1); } @@ -77,10 +77,10 @@ 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"); + "tcbuffer_at_geom requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcbuffer_at_geom(arg0, arg1); } @@ -91,10 +91,10 @@ 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"); + "tcbuffer_at_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcbuffer_at_stbox(arg0, arg1, arg2); } @@ -105,10 +105,10 @@ 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"); + "tcbuffer_expand requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcbuffer_expand(arg0, arg1); } @@ -119,10 +119,10 @@ 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"); + "tcbuffer_minus_cbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcbuffer_minus_cbuffer(arg0, arg1); } @@ -133,10 +133,10 @@ 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"); + "tcbuffer_minus_geom requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcbuffer_minus_geom(arg0, arg1); } @@ -147,10 +147,10 @@ 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"); + "tcbuffer_minus_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcbuffer_minus_stbox(arg0, arg1, arg2); } @@ -161,10 +161,10 @@ 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"); + "tcbuffer_points requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcbuffer_points(arg0); } @@ -175,10 +175,10 @@ 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"); + "tcbuffer_radius requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcbuffer_radius(arg0); } @@ -189,10 +189,10 @@ 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"); + "tcbuffer_trav_area requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcbuffer_trav_area(arg0, arg1); } @@ -203,10 +203,10 @@ 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"); + "tcbuffer_from_mfjson requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcbuffer_from_mfjson(arg0); } @@ -217,10 +217,10 @@ 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"); + "tcbuffer_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tcbuffer_in(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTFloat.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTFloat.java index c4dd207..c621126 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTFloat.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTFloat.java @@ -21,10 +21,10 @@ 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"); + "tfloat_from_base_temp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_from_base_temp(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "tfloat_to_tint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_to_tint(arg0); } @@ -49,10 +49,10 @@ 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"); + "tfloat_at_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_at_value(arg0, arg1); } @@ -63,10 +63,10 @@ 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"); + "tfloat_avg_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_avg_value(arg0); } @@ -77,10 +77,10 @@ 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"); + "tfloat_ceil requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_ceil(arg0); } @@ -91,10 +91,10 @@ 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"); + "tfloat_degrees requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_degrees(arg0, arg1); } @@ -105,10 +105,10 @@ 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"); + "tfloat_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_end_value(arg0); } @@ -119,10 +119,10 @@ 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"); + "tfloat_exp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_exp(arg0); } @@ -133,10 +133,10 @@ 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"); + "tfloat_floor requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_floor(arg0); } @@ -147,10 +147,10 @@ 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"); + "tfloat_ln requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_ln(arg0); } @@ -161,10 +161,10 @@ 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"); + "tfloat_log10 requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_log10(arg0); } @@ -175,10 +175,10 @@ 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"); + "tfloat_max_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_max_value(arg0); } @@ -189,10 +189,10 @@ 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"); + "tfloat_min_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_min_value(arg0); } @@ -203,10 +203,10 @@ 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"); + "tfloat_minus_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_minus_value(arg0, arg1); } @@ -217,10 +217,10 @@ 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"); + "tfloat_radians requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_radians(arg0); } @@ -231,10 +231,10 @@ 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"); + "tfloat_scale_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_scale_value(arg0, arg1); } @@ -245,10 +245,10 @@ 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"); + "tfloat_shift_scale_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_shift_scale_value(arg0, arg1, arg2); } @@ -259,10 +259,10 @@ 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"); + "tfloat_shift_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_shift_value(arg0, arg1); } @@ -273,10 +273,10 @@ 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"); + "tfloat_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_start_value(arg0); } @@ -287,10 +287,10 @@ 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"); + "tfloat_time_boxes requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_time_boxes(arg0, arg1, arg2, arg3); } @@ -301,10 +301,10 @@ 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"); + "tfloat_value_at_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_value_at_timestamptz(arg0, arg1, arg2, arg3); } @@ -315,10 +315,10 @@ 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"); + "tfloat_value_bins requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_value_bins(arg0, arg1, arg2, arg3); } @@ -329,10 +329,10 @@ 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"); + "tfloat_value_boxes requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_value_boxes(arg0, arg1, arg2, arg3); } @@ -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"); + "tfloat_value_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.tfloat_value_n(arg0, arg1, arg2); + return GeneratedFunctions.tfloat_value_n(arg0, arg1); } /** @@ -357,10 +357,10 @@ 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"); + "tfloat_value_split requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_value_split(arg0, arg1, arg2, arg3, arg4); } @@ -371,10 +371,10 @@ 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"); + "tfloat_value_time_boxes requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_value_time_boxes(arg0, arg1, arg2, arg3, arg4, arg5); } @@ -385,10 +385,10 @@ 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"); + "tfloat_value_time_split requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_value_time_split(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -399,10 +399,10 @@ 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"); + "tfloat_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_values(arg0, arg1); } @@ -413,10 +413,10 @@ 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"); + "tfloat_tmax_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_tmax_transfn(arg0, arg1); } @@ -427,10 +427,10 @@ 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"); + "tfloat_tmin_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_tmin_transfn(arg0, arg1); } @@ -441,10 +441,10 @@ 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"); + "tfloat_tsum_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_tsum_transfn(arg0, arg1); } @@ -455,10 +455,10 @@ 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"); + "tfloat_wmax_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_wmax_transfn(arg0, arg1, arg2); } @@ -469,10 +469,10 @@ 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"); + "tfloat_wmin_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_wmin_transfn(arg0, arg1, arg2); } @@ -483,10 +483,10 @@ 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"); + "tfloat_wsum_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_wsum_transfn(arg0, arg1, arg2); } @@ -497,10 +497,10 @@ 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"); + "tfloat_from_mfjson requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_from_mfjson(arg0); } @@ -511,10 +511,10 @@ 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"); + "tfloat_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_in(arg0); } @@ -525,10 +525,10 @@ 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"); + "tfloat_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloat_out(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTFloatInst.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTFloatInst.java index 773c2a7..24a0490 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTFloatInst.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTFloatInst.java @@ -21,10 +21,10 @@ 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"); + "tfloatinst_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tfloatinst_make(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTGeo.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTGeo.java index 18f59f4..e6549ad 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTGeo.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTGeo.java @@ -21,10 +21,10 @@ 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"); + "tgeo_from_base_temp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_from_base_temp(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "tgeo_affine requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_affine(arg0, arg1); } @@ -49,10 +49,10 @@ 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"); + "tgeo_at_geom requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_at_geom(arg0, arg1); } @@ -63,10 +63,10 @@ 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"); + "tgeo_at_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_at_stbox(arg0, arg1, arg2); } @@ -77,10 +77,10 @@ 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"); + "tgeo_at_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_at_value(arg0, arg1); } @@ -91,10 +91,10 @@ 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"); + "tgeo_centroid requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_centroid(arg0); } @@ -105,10 +105,10 @@ 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"); + "tgeo_convex_hull requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_convex_hull(arg0); } @@ -119,10 +119,10 @@ 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"); + "tgeo_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_end_value(arg0); } @@ -133,10 +133,10 @@ 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"); + "tgeo_minus_geom requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_minus_geom(arg0, arg1); } @@ -147,10 +147,10 @@ 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"); + "tgeo_minus_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_minus_stbox(arg0, arg1, arg2); } @@ -161,10 +161,10 @@ 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"); + "tgeo_minus_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_minus_value(arg0, arg1); } @@ -175,10 +175,10 @@ 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"); + "tgeo_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_scale(arg0, arg1, arg2); } @@ -189,10 +189,10 @@ 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"); + "tgeo_space_boxes requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_space_boxes(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -203,10 +203,10 @@ 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"); + "tgeo_space_split requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_space_split(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); } @@ -217,10 +217,10 @@ 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"); + "tgeo_space_time_boxes requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_space_time_boxes(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9); } @@ -231,10 +231,10 @@ 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"); + "tgeo_space_time_split requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_space_time_split(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11); } @@ -245,10 +245,10 @@ 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"); + "tgeo_split_each_n_stboxes requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_split_each_n_stboxes(arg0, arg1, arg2); } @@ -259,10 +259,10 @@ 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"); + "tgeo_split_n_stboxes requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_split_n_stboxes(arg0, arg1, arg2); } @@ -273,10 +273,10 @@ 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"); + "tgeo_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_start_value(arg0); } @@ -287,10 +287,10 @@ 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"); + "tgeo_stboxes requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_stboxes(arg0, arg1); } @@ -301,10 +301,10 @@ 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"); + "tgeo_traversed_area requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_traversed_area(arg0, arg1); } @@ -315,10 +315,10 @@ 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"); + "tgeo_value_at_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_value_at_timestamptz(arg0, arg1, arg2, arg3); } @@ -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"); + "tgeo_value_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.tgeo_value_n(arg0, arg1, arg2); + return GeneratedFunctions.tgeo_value_n(arg0, arg1); } /** @@ -343,10 +343,10 @@ 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"); + "tgeo_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeo_values(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTGeogPoint.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTGeogPoint.java index f032148..7ce6115 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTGeogPoint.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTGeogPoint.java @@ -21,10 +21,10 @@ 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"); + "tgeogpoint_to_tgeography requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeogpoint_to_tgeography(arg0); } @@ -35,10 +35,10 @@ 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"); + "tgeogpoint_from_mfjson requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeogpoint_from_mfjson(arg0); } @@ -49,10 +49,10 @@ 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"); + "tgeogpoint_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeogpoint_in(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTGeography.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTGeography.java index 6b08cdf..f36bbb4 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTGeography.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTGeography.java @@ -21,10 +21,10 @@ 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"); + "tgeography_to_tgeogpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeography_to_tgeogpoint(arg0); } @@ -35,10 +35,10 @@ 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"); + "tgeography_to_tgeometry requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeography_to_tgeometry(arg0); } @@ -49,10 +49,10 @@ 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"); + "tgeography_from_mfjson requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeography_from_mfjson(arg0); } @@ -63,10 +63,10 @@ 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"); + "tgeography_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeography_in(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTGeomPoint.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTGeomPoint.java index 2b0bb5f..82e6301 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTGeomPoint.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTGeomPoint.java @@ -21,10 +21,10 @@ 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"); + "tgeompoint_to_tgeometry requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeompoint_to_tgeometry(arg0); } @@ -35,10 +35,10 @@ 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"); + "tgeompoint_to_tnpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeompoint_to_tnpoint(arg0); } @@ -49,10 +49,10 @@ 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"); + "tgeompoint_from_mfjson requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeompoint_from_mfjson(arg0); } @@ -63,10 +63,10 @@ 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"); + "tgeompoint_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeompoint_in(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTGeometry.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTGeometry.java index e996647..4455d32 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTGeometry.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTGeometry.java @@ -21,10 +21,10 @@ 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"); + "tgeometry_to_tcbuffer requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeometry_to_tcbuffer(arg0); } @@ -35,10 +35,10 @@ 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"); + "tgeometry_to_tgeography requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeometry_to_tgeography(arg0); } @@ -49,10 +49,10 @@ 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"); + "tgeometry_to_tgeompoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeometry_to_tgeompoint(arg0); } @@ -63,10 +63,10 @@ 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"); + "tgeometry_from_mfjson requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeometry_from_mfjson(arg0); } @@ -77,10 +77,10 @@ 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"); + "tgeometry_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tgeometry_in(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTInt.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTInt.java index d0bf5be..8ca8a84 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTInt.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTInt.java @@ -21,10 +21,10 @@ 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"); + "tint_from_base_temp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_from_base_temp(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "tint_to_tfloat requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_to_tfloat(arg0); } @@ -49,10 +49,10 @@ 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"); + "tint_at_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_at_value(arg0, arg1); } @@ -63,10 +63,10 @@ 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"); + "tint_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_end_value(arg0); } @@ -77,10 +77,10 @@ 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"); + "tint_max_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_max_value(arg0); } @@ -91,10 +91,10 @@ 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"); + "tint_min_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_min_value(arg0); } @@ -105,10 +105,10 @@ 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"); + "tint_minus_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_minus_value(arg0, arg1); } @@ -119,10 +119,10 @@ 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"); + "tint_scale_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_scale_value(arg0, arg1); } @@ -133,10 +133,10 @@ 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"); + "tint_shift_scale_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_shift_scale_value(arg0, arg1, arg2); } @@ -147,10 +147,10 @@ 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"); + "tint_shift_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_shift_value(arg0, arg1); } @@ -161,10 +161,10 @@ 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"); + "tint_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_start_value(arg0); } @@ -175,10 +175,10 @@ 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"); + "tint_time_boxes requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_time_boxes(arg0, arg1, arg2, arg3); } @@ -189,10 +189,10 @@ 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"); + "tint_value_at_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_value_at_timestamptz(arg0, arg1, arg2, arg3); } @@ -203,10 +203,10 @@ 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"); + "tint_value_bins requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_value_bins(arg0, arg1, arg2, arg3); } @@ -217,10 +217,10 @@ 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"); + "tint_value_boxes requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_value_boxes(arg0, arg1, arg2, arg3); } @@ -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"); + "tint_value_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.tint_value_n(arg0, arg1, arg2); + return GeneratedFunctions.tint_value_n(arg0, arg1); } /** @@ -245,10 +245,10 @@ 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"); + "tint_value_split requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_value_split(arg0, arg1, arg2, arg3, arg4); } @@ -259,10 +259,10 @@ 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"); + "tint_value_time_boxes requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_value_time_boxes(arg0, arg1, arg2, arg3, arg4, arg5); } @@ -273,10 +273,10 @@ 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"); + "tint_value_time_split requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_value_time_split(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -287,10 +287,10 @@ 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"); + "tint_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_values(arg0, arg1); } @@ -301,10 +301,10 @@ 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"); + "tint_tmax_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_tmax_transfn(arg0, arg1); } @@ -315,10 +315,10 @@ 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"); + "tint_tmin_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_tmin_transfn(arg0, arg1); } @@ -329,10 +329,10 @@ 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"); + "tint_tsum_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_tsum_transfn(arg0, arg1); } @@ -343,10 +343,10 @@ 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"); + "tint_wmax_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_wmax_transfn(arg0, arg1, arg2); } @@ -357,10 +357,10 @@ 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"); + "tint_wmin_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_wmin_transfn(arg0, arg1, arg2); } @@ -371,10 +371,10 @@ 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"); + "tint_wsum_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_wsum_transfn(arg0, arg1, arg2); } @@ -385,10 +385,10 @@ 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"); + "tint_from_mfjson requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_from_mfjson(arg0); } @@ -399,10 +399,10 @@ 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"); + "tint_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_in(arg0); } @@ -413,10 +413,10 @@ 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"); + "tint_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tint_out(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTIntInst.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTIntInst.java index ea89759..e6b7bce 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTIntInst.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTIntInst.java @@ -21,10 +21,10 @@ 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"); + "tintinst_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tintinst_make(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTNpoint.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTNpoint.java index 3639c61..cdde7f9 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTNpoint.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTNpoint.java @@ -21,10 +21,10 @@ 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"); + "tnpoint_to_tgeompoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_to_tgeompoint(arg0); } @@ -35,10 +35,10 @@ 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"); + "tnpoint_at_geom requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_at_geom(arg0, arg1); } @@ -49,10 +49,10 @@ 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"); + "tnpoint_at_npoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_at_npoint(arg0, arg1); } @@ -63,10 +63,10 @@ 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"); + "tnpoint_at_npointset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_at_npointset(arg0, arg1); } @@ -77,10 +77,10 @@ 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"); + "tnpoint_at_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_at_stbox(arg0, arg1, arg2); } @@ -91,10 +91,10 @@ 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"); + "tnpoint_cumulative_length requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_cumulative_length(arg0); } @@ -105,10 +105,10 @@ 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"); + "tnpoint_length requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_length(arg0); } @@ -119,10 +119,10 @@ 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"); + "tnpoint_minus_geom requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_minus_geom(arg0, arg1); } @@ -133,10 +133,10 @@ 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"); + "tnpoint_minus_npoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_minus_npoint(arg0, arg1); } @@ -147,10 +147,10 @@ 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"); + "tnpoint_minus_npointset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_minus_npointset(arg0, arg1); } @@ -161,10 +161,10 @@ 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"); + "tnpoint_minus_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_minus_stbox(arg0, arg1, arg2); } @@ -175,10 +175,10 @@ 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"); + "tnpoint_positions requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_positions(arg0, arg1); } @@ -189,10 +189,10 @@ 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"); + "tnpoint_route requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_route(arg0); } @@ -203,10 +203,10 @@ 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"); + "tnpoint_routes requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_routes(arg0); } @@ -217,10 +217,10 @@ 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"); + "tnpoint_speed requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_speed(arg0); } @@ -231,10 +231,10 @@ 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"); + "tnpoint_trajectory requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_trajectory(arg0); } @@ -245,10 +245,10 @@ 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"); + "tnpoint_twcentroid requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_twcentroid(arg0); } @@ -259,10 +259,10 @@ 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"); + "tnpoint_tcentroid_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_tcentroid_transfn(arg0, arg1); } @@ -273,10 +273,10 @@ 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"); + "tnpoint_from_mfjson requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_from_mfjson(arg0); } @@ -287,10 +287,10 @@ 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"); + "tnpoint_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_in(arg0); } @@ -301,10 +301,10 @@ 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"); + "tnpoint_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpoint_out(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTNpointInst.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTNpointInst.java index cc42793..4dd2e9a 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTNpointInst.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTNpointInst.java @@ -21,10 +21,10 @@ 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"); + "tnpointinst_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnpointinst_make(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTNumber.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTNumber.java index b127c4e..70d1a46 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTNumber.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTNumber.java @@ -21,10 +21,10 @@ 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"); + "tnumber_to_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_to_span(arg0); } @@ -35,10 +35,10 @@ 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"); + "tnumber_to_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_to_tbox(arg0); } @@ -49,10 +49,10 @@ 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"); + "tnumber_abs requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_abs(arg0); } @@ -63,10 +63,10 @@ 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"); + "tnumber_angular_difference requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_angular_difference(arg0); } @@ -77,10 +77,10 @@ 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"); + "tnumber_at_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_at_span(arg0, arg1); } @@ -91,10 +91,10 @@ 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"); + "tnumber_at_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_at_spanset(arg0, arg1); } @@ -105,10 +105,10 @@ 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"); + "tnumber_at_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_at_tbox(arg0, arg1); } @@ -119,10 +119,10 @@ 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"); + "tnumber_avg_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_avg_value(arg0); } @@ -133,10 +133,10 @@ 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"); + "tnumber_delta_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_delta_value(arg0); } @@ -147,10 +147,10 @@ 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"); + "tnumber_integral requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_integral(arg0); } @@ -161,10 +161,10 @@ 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"); + "tnumber_minus_span requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_minus_span(arg0, arg1); } @@ -175,10 +175,10 @@ 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"); + "tnumber_minus_spanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_minus_spanset(arg0, arg1); } @@ -189,10 +189,10 @@ 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"); + "tnumber_minus_tbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_minus_tbox(arg0, arg1); } @@ -203,10 +203,10 @@ 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"); + "tnumber_split_each_n_tboxes requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_split_each_n_tboxes(arg0, arg1, arg2); } @@ -217,10 +217,10 @@ 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"); + "tnumber_split_n_tboxes requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_split_n_tboxes(arg0, arg1, arg2); } @@ -231,10 +231,10 @@ 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"); + "tnumber_tboxes requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_tboxes(arg0, arg1); } @@ -245,10 +245,10 @@ 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"); + "tnumber_trend requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_trend(arg0); } @@ -259,10 +259,10 @@ 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"); + "tnumber_twavg requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_twavg(arg0); } @@ -273,10 +273,10 @@ 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"); + "tnumber_valuespans requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_valuespans(arg0); } @@ -287,10 +287,10 @@ 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"); + "tnumber_extent_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_extent_transfn(arg0, arg1); } @@ -301,10 +301,10 @@ 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"); + "tnumber_tavg_finalfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_tavg_finalfn(arg0); } @@ -315,10 +315,10 @@ 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"); + "tnumber_tavg_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_tavg_transfn(arg0, arg1); } @@ -329,10 +329,10 @@ 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"); + "tnumber_wavg_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tnumber_wavg_transfn(arg0, arg1, arg2); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTPoint.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTPoint.java index 48251f5..ceba4ca 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTPoint.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTPoint.java @@ -21,10 +21,10 @@ 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"); + "tpoint_from_base_temp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_from_base_temp(arg0, arg1); } @@ -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"); + "tpoint_tfloat_to_geomeas requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.tpoint_tfloat_to_geomeas(arg0, arg1, arg2, arg3); + return GeneratedFunctions.tpoint_tfloat_to_geomeas(arg0, arg1, arg2); } /** @@ -49,10 +49,10 @@ 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"); + "tpoint_angular_difference requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_angular_difference(arg0); } @@ -63,10 +63,10 @@ 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"); + "tpoint_as_mvtgeom requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_as_mvtgeom(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -77,10 +77,10 @@ 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"); + "tpoint_at_elevation requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_at_elevation(arg0, arg1); } @@ -91,10 +91,10 @@ 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"); + "tpoint_at_geom requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_at_geom(arg0, arg1); } @@ -105,10 +105,10 @@ 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"); + "tpoint_at_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_at_value(arg0, arg1); } @@ -119,10 +119,10 @@ 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"); + "tpoint_azimuth requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_azimuth(arg0); } @@ -133,10 +133,10 @@ 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"); + "tpoint_cumulative_length requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_cumulative_length(arg0); } @@ -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"); + "tpoint_direction requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.tpoint_direction(arg0, arg1); + return GeneratedFunctions.tpoint_direction(arg0); } /** @@ -161,10 +161,10 @@ 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"); + "tpoint_get_x requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_get_x(arg0); } @@ -175,10 +175,10 @@ 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"); + "tpoint_get_y requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_get_y(arg0); } @@ -189,10 +189,10 @@ 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"); + "tpoint_get_z requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_get_z(arg0); } @@ -203,10 +203,10 @@ 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"); + "tpoint_is_simple requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_is_simple(arg0); } @@ -217,10 +217,10 @@ 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"); + "tpoint_length requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_length(arg0); } @@ -231,10 +231,10 @@ 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"); + "tpoint_make_simple requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_make_simple(arg0, arg1); } @@ -245,10 +245,10 @@ 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"); + "tpoint_minus_elevation requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_minus_elevation(arg0, arg1); } @@ -259,10 +259,10 @@ 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"); + "tpoint_minus_geom requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_minus_geom(arg0, arg1); } @@ -273,10 +273,10 @@ 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"); + "tpoint_minus_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_minus_value(arg0, arg1); } @@ -287,10 +287,10 @@ 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"); + "tpoint_speed requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_speed(arg0); } @@ -301,10 +301,10 @@ 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"); + "tpoint_trajectory requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_trajectory(arg0, arg1); } @@ -315,10 +315,10 @@ 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"); + "tpoint_twcentroid requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_twcentroid(arg0); } @@ -329,10 +329,10 @@ 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"); + "tpoint_tcentroid_finalfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_tcentroid_finalfn(arg0); } @@ -343,10 +343,10 @@ 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"); + "tpoint_tcentroid_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpoint_tcentroid_transfn(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTPose.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTPose.java index f5332f2..ee16ec5 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTPose.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTPose.java @@ -21,10 +21,10 @@ 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"); + "tpose_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpose_make(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "tpose_to_tpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpose_to_tpoint(arg0); } @@ -49,10 +49,10 @@ 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"); + "tpose_at_geom requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpose_at_geom(arg0, arg1); } @@ -63,10 +63,10 @@ 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"); + "tpose_at_pose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpose_at_pose(arg0, arg1); } @@ -77,10 +77,10 @@ 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"); + "tpose_at_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpose_at_stbox(arg0, arg1, arg2); } @@ -91,10 +91,10 @@ 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"); + "tpose_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpose_end_value(arg0); } @@ -105,10 +105,10 @@ 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"); + "tpose_minus_geom requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpose_minus_geom(arg0, arg1); } @@ -119,10 +119,10 @@ 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"); + "tpose_minus_pose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpose_minus_pose(arg0, arg1); } @@ -133,10 +133,10 @@ 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"); + "tpose_minus_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpose_minus_stbox(arg0, arg1, arg2); } @@ -147,10 +147,10 @@ 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"); + "tpose_points requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpose_points(arg0); } @@ -161,10 +161,10 @@ 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"); + "tpose_rotation requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpose_rotation(arg0); } @@ -175,10 +175,10 @@ 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"); + "tpose_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpose_start_value(arg0); } @@ -189,10 +189,10 @@ 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"); + "tpose_trajectory requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpose_trajectory(arg0); } @@ -203,10 +203,10 @@ 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"); + "tpose_value_at_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpose_value_at_timestamptz(arg0, arg1, arg2, arg3); } @@ -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"); + "tpose_value_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.tpose_value_n(arg0, arg1, arg2); + return GeneratedFunctions.tpose_value_n(arg0, arg1); } /** @@ -231,10 +231,10 @@ 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"); + "tpose_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpose_values(arg0, arg1); } @@ -245,10 +245,10 @@ 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"); + "tpose_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tpose_in(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTRGeometry.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTRGeometry.java index df61f47..95d6ce4 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTRGeometry.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTRGeometry.java @@ -16,507 +16,507 @@ public final class MeosOpsTRGeometry { private MeosOpsTRGeometry() { /* utility */ } /** - * MEOS {@code trgeo_to_tinstant} — tier stateless. + * MEOS {@code trgeometry_to_tinstant} — tier stateless. *

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

*

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer trgeo_to_tinstant(Pointer arg0) { + public static jnr.ffi.Pointer trgeometry_to_tinstant(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_to_tinstant requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_to_tinstant requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_to_tinstant(arg0); + return GeneratedFunctions.trgeometry_to_tinstant(arg0); } /** - * MEOS {@code trgeo_to_tpoint} — tier stateless. + * MEOS {@code trgeometry_to_tpoint} — tier stateless. *

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

*

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer trgeo_to_tpoint(Pointer arg0) { + public static jnr.ffi.Pointer trgeometry_to_tpoint(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_to_tpoint requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_to_tpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_to_tpoint(arg0); + return GeneratedFunctions.trgeometry_to_tpoint(arg0); } /** - * MEOS {@code trgeo_to_tpose} — tier stateless. + * MEOS {@code trgeometry_to_tpose} — tier stateless. *

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

*

Object-model role: {@code conversion}.

*

Classification: role=conversion

*/ - public static Pointer trgeo_to_tpose(Pointer arg0) { + public static jnr.ffi.Pointer trgeometry_to_tpose(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_to_tpose requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_to_tpose requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_to_tpose(arg0); + return GeneratedFunctions.trgeometry_to_tpose(arg0); } /** - * MEOS {@code trgeo_after_timestamptz} — tier bounded-state. + * MEOS {@code trgeometry_after_timestamptz} — tier bounded-state. *

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

*

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 trgeometry_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"); + "trgeometry_after_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_after_timestamptz(arg0, arg1, arg2); + return GeneratedFunctions.trgeometry_after_timestamptz(arg0, arg1, arg2); } /** - * MEOS {@code trgeo_append_tinstant} — tier bounded-state. + * MEOS {@code trgeometry_append_tinstant} — tier bounded-state. *

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

*

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 trgeometry_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"); + "trgeometry_append_tinstant requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_append_tinstant(arg0, arg1, arg2, arg3, arg4, arg5); + return GeneratedFunctions.trgeometry_append_tinstant(arg0, arg1, arg2, arg3, arg4, arg5); } /** - * MEOS {@code trgeo_append_tsequence} — tier bounded-state. + * MEOS {@code trgeometry_append_tsequence} — tier bounded-state. *

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

*

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 trgeometry_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"); + "trgeometry_append_tsequence requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_append_tsequence(arg0, arg1, arg2); + return GeneratedFunctions.trgeometry_append_tsequence(arg0, arg1, arg2); } /** - * MEOS {@code trgeo_before_timestamptz} — tier bounded-state. + * MEOS {@code trgeometry_before_timestamptz} — tier bounded-state. *

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

*

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 trgeometry_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"); + "trgeometry_before_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_before_timestamptz(arg0, arg1, arg2); + return GeneratedFunctions.trgeometry_before_timestamptz(arg0, arg1, arg2); } /** - * MEOS {@code trgeo_delete_timestamptz} — tier bounded-state. + * MEOS {@code trgeometry_delete_timestamptz} — tier bounded-state. *

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

*

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 trgeometry_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"); + "trgeometry_delete_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_delete_timestamptz(arg0, arg1, arg2); + return GeneratedFunctions.trgeometry_delete_timestamptz(arg0, arg1, arg2); } /** - * MEOS {@code trgeo_delete_tstzset} — tier bounded-state. + * MEOS {@code trgeometry_delete_tstzset} — tier bounded-state. *

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

*

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 trgeometry_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"); + "trgeometry_delete_tstzset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_delete_tstzset(arg0, arg1, arg2); + return GeneratedFunctions.trgeometry_delete_tstzset(arg0, arg1, arg2); } /** - * MEOS {@code trgeo_delete_tstzspan} — tier bounded-state. + * MEOS {@code trgeometry_delete_tstzspan} — tier bounded-state. *

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

*

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 trgeometry_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"); + "trgeometry_delete_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_delete_tstzspan(arg0, arg1, arg2); + return GeneratedFunctions.trgeometry_delete_tstzspan(arg0, arg1, arg2); } /** - * MEOS {@code trgeo_delete_tstzspanset} — tier bounded-state. + * MEOS {@code trgeometry_delete_tstzspanset} — tier bounded-state. *

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

*

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 trgeometry_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"); + "trgeometry_delete_tstzspanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_delete_tstzspanset(arg0, arg1, arg2); + return GeneratedFunctions.trgeometry_delete_tstzspanset(arg0, arg1, arg2); } /** - * MEOS {@code trgeo_end_instant} — tier bounded-state. + * MEOS {@code trgeometry_end_instant} — tier bounded-state. *

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

*

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_end_instant(Pointer arg0) { + public static jnr.ffi.Pointer trgeometry_end_instant(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_end_instant requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_end_instant requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_end_instant(arg0); + return GeneratedFunctions.trgeometry_end_instant(arg0); } /** - * MEOS {@code trgeo_end_sequence} — tier bounded-state. + * MEOS {@code trgeometry_end_sequence} — tier bounded-state. *

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

*

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_end_sequence(Pointer arg0) { + public static jnr.ffi.Pointer trgeometry_end_sequence(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_end_sequence requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_end_sequence requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_end_sequence(arg0); + return GeneratedFunctions.trgeometry_end_sequence(arg0); } /** - * MEOS {@code trgeo_end_value} — tier bounded-state. + * MEOS {@code trgeometry_end_value} — tier bounded-state. *

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

*

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_end_value(Pointer arg0) { + public static jnr.ffi.Pointer trgeometry_end_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_end_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_end_value(arg0); + return GeneratedFunctions.trgeometry_end_value(arg0); } /** - * MEOS {@code trgeo_geom} — tier bounded-state. + * MEOS {@code trgeometry_geom} — tier bounded-state. *

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

*

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_geom(Pointer arg0) { + public static jnr.ffi.Pointer trgeometry_geom(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_geom requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_geom requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_geom(arg0); + return GeneratedFunctions.trgeometry_geom(arg0); } /** - * MEOS {@code trgeo_instant_n} — tier bounded-state. + * MEOS {@code trgeometry_instant_n} — tier bounded-state. *

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

*

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_instant_n(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer trgeometry_instant_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_instant_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_instant_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_instant_n(arg0, arg1); + return GeneratedFunctions.trgeometry_instant_n(arg0, arg1); } /** - * MEOS {@code trgeo_instants} — tier bounded-state. + * MEOS {@code trgeometry_instants} — tier bounded-state. *

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

*

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_instants(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer trgeometry_instants(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_instants requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_instants requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_instants(arg0, arg1); + return GeneratedFunctions.trgeometry_instants(arg0, arg1); } /** - * MEOS {@code trgeo_points} — tier bounded-state. + * MEOS {@code trgeometry_points} — tier bounded-state. *

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

*

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_points(Pointer arg0) { + public static jnr.ffi.Pointer trgeometry_points(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_points requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_points requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_points(arg0); + return GeneratedFunctions.trgeometry_points(arg0); } /** - * MEOS {@code trgeo_restrict_timestamptz} — tier bounded-state. + * MEOS {@code trgeometry_restrict_timestamptz} — tier bounded-state. *

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

*

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 trgeometry_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"); + "trgeometry_restrict_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_restrict_timestamptz(arg0, arg1, arg2); + return GeneratedFunctions.trgeometry_restrict_timestamptz(arg0, arg1, arg2); } /** - * MEOS {@code trgeo_restrict_tstzset} — tier bounded-state. + * MEOS {@code trgeometry_restrict_tstzset} — tier bounded-state. *

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

*

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 trgeometry_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"); + "trgeometry_restrict_tstzset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_restrict_tstzset(arg0, arg1, arg2); + return GeneratedFunctions.trgeometry_restrict_tstzset(arg0, arg1, arg2); } /** - * MEOS {@code trgeo_restrict_tstzspan} — tier bounded-state. + * MEOS {@code trgeometry_restrict_tstzspan} — tier bounded-state. *

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

*

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 trgeometry_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"); + "trgeometry_restrict_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_restrict_tstzspan(arg0, arg1, arg2); + return GeneratedFunctions.trgeometry_restrict_tstzspan(arg0, arg1, arg2); } /** - * MEOS {@code trgeo_restrict_tstzspanset} — tier bounded-state. + * MEOS {@code trgeometry_restrict_tstzspanset} — tier bounded-state. *

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

*

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 trgeometry_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"); + "trgeometry_restrict_tstzspanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_restrict_tstzspanset(arg0, arg1, arg2); + return GeneratedFunctions.trgeometry_restrict_tstzspanset(arg0, arg1, arg2); } /** - * MEOS {@code trgeo_restrict_value} — tier bounded-state. + * MEOS {@code trgeometry_restrict_value} — tier bounded-state. *

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

*

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 trgeometry_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"); + "trgeometry_restrict_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_restrict_value(arg0, arg1, arg2); + return GeneratedFunctions.trgeometry_restrict_value(arg0, arg1, arg2); } /** - * MEOS {@code trgeo_restrict_values} — tier bounded-state. + * MEOS {@code trgeometry_restrict_values} — tier bounded-state. *

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

*

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 trgeometry_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"); + "trgeometry_restrict_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_restrict_values(arg0, arg1, arg2); + return GeneratedFunctions.trgeometry_restrict_values(arg0, arg1, arg2); } /** - * MEOS {@code trgeo_rotation} — tier bounded-state. + * MEOS {@code trgeometry_rotation} — tier bounded-state. *

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

*

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_rotation(Pointer arg0) { + public static jnr.ffi.Pointer trgeometry_rotation(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_rotation requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_rotation requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_rotation(arg0); + return GeneratedFunctions.trgeometry_rotation(arg0); } /** - * MEOS {@code trgeo_round} — tier bounded-state. + * MEOS {@code trgeometry_round} — tier bounded-state. *

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

*

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_round(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer trgeometry_round(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_round requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_round requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_round(arg0, arg1); + return GeneratedFunctions.trgeometry_round(arg0, arg1); } /** - * MEOS {@code trgeo_segments} — tier bounded-state. + * MEOS {@code trgeometry_segments} — tier bounded-state. *

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

*

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_segments(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer trgeometry_segments(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_segments requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_segments requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_segments(arg0, arg1); + return GeneratedFunctions.trgeometry_segments(arg0, arg1); } /** - * MEOS {@code trgeo_sequence_n} — tier bounded-state. + * MEOS {@code trgeometry_sequence_n} — tier bounded-state. *

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

*

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_sequence_n(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer trgeometry_sequence_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_sequence_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_sequence_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_sequence_n(arg0, arg1); + return GeneratedFunctions.trgeometry_sequence_n(arg0, arg1); } /** - * MEOS {@code trgeo_sequences} — tier bounded-state. + * MEOS {@code trgeometry_sequences} — tier bounded-state. *

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

*

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_sequences(Pointer arg0, Pointer arg1) { + public static jnr.ffi.Pointer trgeometry_sequences(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_sequences requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_sequences requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_sequences(arg0, arg1); + return GeneratedFunctions.trgeometry_sequences(arg0, arg1); } /** - * MEOS {@code trgeo_set_interp} — tier bounded-state. + * MEOS {@code trgeometry_set_interp} — tier bounded-state. *

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

*

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_set_interp(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer trgeometry_set_interp(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_set_interp requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_set_interp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_set_interp(arg0, arg1); + return GeneratedFunctions.trgeometry_set_interp(arg0, arg1); } /** - * MEOS {@code trgeo_start_instant} — tier bounded-state. + * MEOS {@code trgeometry_start_instant} — tier bounded-state. *

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

*

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_start_instant(Pointer arg0) { + public static jnr.ffi.Pointer trgeometry_start_instant(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_start_instant requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_start_instant requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_start_instant(arg0); + return GeneratedFunctions.trgeometry_start_instant(arg0); } /** - * MEOS {@code trgeo_start_sequence} — tier bounded-state. + * MEOS {@code trgeometry_start_sequence} — tier bounded-state. *

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

*

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_start_sequence(Pointer arg0) { + public static jnr.ffi.Pointer trgeometry_start_sequence(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_start_sequence requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_start_sequence requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_start_sequence(arg0); + return GeneratedFunctions.trgeometry_start_sequence(arg0); } /** - * MEOS {@code trgeo_start_value} — tier bounded-state. + * MEOS {@code trgeometry_start_value} — tier bounded-state. *

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

*

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_start_value(Pointer arg0) { + public static jnr.ffi.Pointer trgeometry_start_value(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_start_value requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_start_value(arg0); + return GeneratedFunctions.trgeometry_start_value(arg0); } /** - * MEOS {@code trgeo_traversed_area} — tier bounded-state. + * MEOS {@code trgeometry_traversed_area} — tier bounded-state. *

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

*

Object-model role: {@code accessor}.

*

Classification: role=accessor

*/ - public static Pointer trgeo_traversed_area(Pointer arg0, int arg1) { + public static jnr.ffi.Pointer trgeometry_traversed_area(jnr.ffi.Pointer arg0, boolean arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_traversed_area requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_traversed_area requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_traversed_area(arg0, arg1); + return GeneratedFunctions.trgeometry_traversed_area(arg0, arg1); } /** - * MEOS {@code trgeo_value_n} — tier bounded-state. + * MEOS {@code trgeometry_value_n} — tier bounded-state. *

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

*

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 trgeometry_value_n(jnr.ffi.Pointer arg0, int arg1) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_value_n requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_value_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_value_n(arg0, arg1, arg2); + return GeneratedFunctions.trgeometry_value_n(arg0, arg1); } /** - * MEOS {@code trgeo_out} — tier io-meta. + * MEOS {@code trgeometry_out} — tier io-meta. *

I/O / catalog / lifecycle helper.

*

Object-model role: {@code output}.

*

Classification: IO/serialization

*/ - public static String trgeo_out(Pointer arg0) { + public static java.lang.String trgeometry_out(jnr.ffi.Pointer arg0) { if (!MEOS_AVAILABLE) { throw new UnsupportedOperationException( - "trgeo_out requires libmeos — set -Dmobilityflink.meos.enabled=true"); + "trgeometry_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.trgeo_out(arg0); + return GeneratedFunctions.trgeometry_out(arg0); } } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTRGeometryInst.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTRGeometryInst.java index e05f01a..0afb191 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTRGeometryInst.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTRGeometryInst.java @@ -21,10 +21,10 @@ 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"); + "trgeoinst_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.trgeoinst_make(arg0, arg1, arg2); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTSequenceSet.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTSequenceSet.java index 6686a13..e641895 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTSequenceSet.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTSequenceSet.java @@ -21,10 +21,10 @@ 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"); + "tsequenceset_make_gaps requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tsequenceset_make_gaps(arg0, arg1, arg2, arg3, arg4); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTSpatial.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTSpatial.java index e8a19f7..c3b1ccd 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTSpatial.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTSpatial.java @@ -21,10 +21,10 @@ 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"); + "tspatial_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tspatial_to_stbox(arg0); } @@ -35,10 +35,10 @@ 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"); + "tspatial_set_srid requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tspatial_set_srid(arg0, arg1); } @@ -49,10 +49,10 @@ 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"); + "tspatial_srid requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tspatial_srid(arg0); } @@ -63,10 +63,10 @@ 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"); + "tspatial_transform requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tspatial_transform(arg0, arg1); } @@ -77,10 +77,10 @@ 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"); + "tspatial_transform_pipeline requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tspatial_transform_pipeline(arg0, arg1, arg2, arg3); } @@ -91,10 +91,10 @@ 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"); + "tspatial_extent_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tspatial_extent_transfn(arg0, arg1); } @@ -105,10 +105,10 @@ 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"); + "tspatial_as_ewkt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tspatial_as_ewkt(arg0, arg1); } @@ -119,10 +119,10 @@ 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"); + "tspatial_as_text requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tspatial_as_text(arg0, arg1); } @@ -133,10 +133,10 @@ 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"); + "tspatial_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tspatial_out(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTText.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTText.java index f837c33..7e929f5 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTText.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTText.java @@ -21,10 +21,10 @@ 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"); + "ttext_from_base_temp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttext_from_base_temp(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "ttext_at_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttext_at_value(arg0, arg1); } @@ -49,10 +49,10 @@ 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"); + "ttext_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttext_end_value(arg0); } @@ -63,10 +63,10 @@ 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"); + "ttext_initcap requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttext_initcap(arg0); } @@ -77,10 +77,10 @@ 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"); + "ttext_lower requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttext_lower(arg0); } @@ -91,10 +91,10 @@ 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"); + "ttext_max_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttext_max_value(arg0); } @@ -105,10 +105,10 @@ 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"); + "ttext_min_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttext_min_value(arg0); } @@ -119,10 +119,10 @@ 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"); + "ttext_minus_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttext_minus_value(arg0, arg1); } @@ -133,10 +133,10 @@ 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"); + "ttext_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttext_start_value(arg0); } @@ -147,10 +147,10 @@ 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"); + "ttext_upper requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttext_upper(arg0); } @@ -161,10 +161,10 @@ 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"); + "ttext_value_at_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttext_value_at_timestamptz(arg0, arg1, arg2, arg3); } @@ -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"); + "ttext_value_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.ttext_value_n(arg0, arg1, arg2); + return GeneratedFunctions.ttext_value_n(arg0, arg1); } /** @@ -189,10 +189,10 @@ 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"); + "ttext_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttext_values(arg0, arg1); } @@ -203,10 +203,10 @@ 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"); + "ttext_tmax_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttext_tmax_transfn(arg0, arg1); } @@ -217,10 +217,10 @@ 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"); + "ttext_tmin_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttext_tmin_transfn(arg0, arg1); } @@ -231,10 +231,10 @@ 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"); + "ttext_from_mfjson requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttext_from_mfjson(arg0); } @@ -245,10 +245,10 @@ 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"); + "ttext_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttext_in(arg0); } @@ -259,10 +259,10 @@ 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"); + "ttext_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttext_out(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTTextInst.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTTextInst.java index e395be2..0a43a42 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTTextInst.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTTextInst.java @@ -21,10 +21,10 @@ 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"); + "ttextinst_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.ttextinst_make(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTemporal.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTemporal.java index e82e04c..54c784d 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTemporal.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTemporal.java @@ -21,10 +21,10 @@ 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"); + "temporal_copy requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_copy(arg0); } @@ -35,10 +35,10 @@ 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"); + "temporal_to_tinstant requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_to_tinstant(arg0); } @@ -49,10 +49,10 @@ 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"); + "temporal_to_tsequence requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_to_tsequence(arg0, arg1); } @@ -63,10 +63,10 @@ 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"); + "temporal_to_tsequenceset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_to_tsequenceset(arg0, arg1); } @@ -77,10 +77,10 @@ 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"); + "temporal_to_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_to_tstzspan(arg0); } @@ -91,10 +91,10 @@ 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"); + "temporal_after_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_after_timestamptz(arg0, arg1, arg2); } @@ -105,10 +105,10 @@ 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"); + "temporal_append_tinstant requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_append_tinstant(arg0, arg1, arg2, arg3, arg4, arg5); } @@ -119,10 +119,10 @@ 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"); + "temporal_append_tsequence requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_append_tsequence(arg0, arg1, arg2); } @@ -133,10 +133,10 @@ 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"); + "temporal_at_max requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_at_max(arg0); } @@ -147,10 +147,10 @@ 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"); + "temporal_at_min requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_at_min(arg0); } @@ -161,10 +161,10 @@ 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"); + "temporal_at_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_at_timestamptz(arg0, arg1); } @@ -175,10 +175,10 @@ 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"); + "temporal_at_tstzset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_at_tstzset(arg0, arg1); } @@ -189,10 +189,10 @@ 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"); + "temporal_at_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_at_tstzspan(arg0, arg1); } @@ -203,10 +203,10 @@ 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"); + "temporal_at_tstzspanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_at_tstzspanset(arg0, arg1); } @@ -217,10 +217,10 @@ 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"); + "temporal_at_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_at_values(arg0, arg1); } @@ -231,10 +231,10 @@ 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"); + "temporal_before_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_before_timestamptz(arg0, arg1, arg2); } @@ -245,10 +245,10 @@ 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"); + "temporal_delete_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_delete_timestamptz(arg0, arg1, arg2); } @@ -259,10 +259,10 @@ 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"); + "temporal_delete_tstzset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_delete_tstzset(arg0, arg1, arg2); } @@ -273,10 +273,10 @@ 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"); + "temporal_delete_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_delete_tstzspan(arg0, arg1, arg2); } @@ -287,10 +287,10 @@ 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"); + "temporal_delete_tstzspanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_delete_tstzspanset(arg0, arg1, arg2); } @@ -301,10 +301,10 @@ 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"); + "temporal_derivative requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_derivative(arg0); } @@ -315,10 +315,10 @@ 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"); + "temporal_duration requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_duration(arg0, arg1); } @@ -329,10 +329,10 @@ 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"); + "temporal_dyntimewarp_distance requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_dyntimewarp_distance(arg0, arg1); } @@ -343,10 +343,10 @@ 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"); + "temporal_dyntimewarp_path requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_dyntimewarp_path(arg0, arg1, arg2); } @@ -357,10 +357,10 @@ 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"); + "temporal_end_instant requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_end_instant(arg0); } @@ -371,10 +371,10 @@ 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"); + "temporal_end_sequence requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_end_sequence(arg0); } @@ -385,10 +385,10 @@ 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"); + "temporal_end_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_end_timestamptz(arg0); } @@ -399,10 +399,10 @@ 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"); + "temporal_frechet_distance requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_frechet_distance(arg0, arg1); } @@ -413,10 +413,10 @@ 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"); + "temporal_frechet_path requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_frechet_path(arg0, arg1, arg2); } @@ -427,10 +427,10 @@ 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"); + "temporal_hash requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_hash(arg0); } @@ -441,10 +441,10 @@ 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"); + "temporal_hausdorff_distance requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_hausdorff_distance(arg0, arg1); } @@ -455,10 +455,10 @@ 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"); + "temporal_insert requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_insert(arg0, arg1, arg2); } @@ -469,10 +469,10 @@ 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"); + "temporal_instant_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_instant_n(arg0, arg1); } @@ -483,10 +483,10 @@ 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"); + "temporal_instants requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_instants(arg0, arg1); } @@ -497,10 +497,10 @@ 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"); + "temporal_interp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_interp(arg0); } @@ -511,10 +511,10 @@ 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"); + "temporal_lower_inc requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_lower_inc(arg0); } @@ -525,10 +525,10 @@ 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"); + "temporal_max_instant requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_max_instant(arg0); } @@ -539,10 +539,10 @@ 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"); + "temporal_merge requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_merge(arg0, arg1); } @@ -553,10 +553,10 @@ 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"); + "temporal_merge_array requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_merge_array(arg0, arg1); } @@ -567,10 +567,10 @@ 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"); + "temporal_min_instant requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_min_instant(arg0); } @@ -581,10 +581,10 @@ 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"); + "temporal_minus_max requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_minus_max(arg0); } @@ -595,10 +595,10 @@ 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"); + "temporal_minus_min requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_minus_min(arg0); } @@ -609,10 +609,10 @@ 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"); + "temporal_minus_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_minus_timestamptz(arg0, arg1); } @@ -623,10 +623,10 @@ 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"); + "temporal_minus_tstzset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_minus_tstzset(arg0, arg1); } @@ -637,10 +637,10 @@ 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"); + "temporal_minus_tstzspan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_minus_tstzspan(arg0, arg1); } @@ -651,10 +651,10 @@ 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"); + "temporal_minus_tstzspanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_minus_tstzspanset(arg0, arg1); } @@ -665,10 +665,10 @@ 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"); + "temporal_minus_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_minus_values(arg0, arg1); } @@ -679,10 +679,10 @@ 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"); + "temporal_num_instants requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_num_instants(arg0); } @@ -693,10 +693,10 @@ 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"); + "temporal_num_sequences requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_num_sequences(arg0); } @@ -707,10 +707,10 @@ 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"); + "temporal_num_timestamps requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_num_timestamps(arg0); } @@ -721,10 +721,10 @@ 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"); + "temporal_round requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_round(arg0, arg1); } @@ -735,10 +735,10 @@ 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"); + "temporal_scale_time requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_scale_time(arg0, arg1); } @@ -749,10 +749,10 @@ 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"); + "temporal_segm_duration requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_segm_duration(arg0, arg1, arg2, arg3); } @@ -763,10 +763,10 @@ 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"); + "temporal_segments requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_segments(arg0, arg1); } @@ -777,10 +777,10 @@ 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"); + "temporal_sequence_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_sequence_n(arg0, arg1); } @@ -791,10 +791,10 @@ 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"); + "temporal_sequences requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_sequences(arg0, arg1); } @@ -805,10 +805,10 @@ 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"); + "temporal_set_interp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_set_interp(arg0, arg1); } @@ -819,10 +819,10 @@ 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"); + "temporal_shift_scale_time requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_shift_scale_time(arg0, arg1, arg2); } @@ -833,10 +833,10 @@ 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"); + "temporal_shift_time requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_shift_time(arg0, arg1); } @@ -847,10 +847,10 @@ 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"); + "temporal_simplify_dp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_simplify_dp(arg0, arg1, arg2); } @@ -861,10 +861,10 @@ 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"); + "temporal_simplify_max_dist requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_simplify_max_dist(arg0, arg1, arg2); } @@ -875,10 +875,10 @@ 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"); + "temporal_simplify_min_dist requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_simplify_min_dist(arg0, arg1); } @@ -889,10 +889,10 @@ 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"); + "temporal_simplify_min_tdelta requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_simplify_min_tdelta(arg0, arg1); } @@ -903,10 +903,10 @@ 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"); + "temporal_spans requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_spans(arg0, arg1); } @@ -917,10 +917,10 @@ 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"); + "temporal_split_each_n_spans requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_split_each_n_spans(arg0, arg1, arg2); } @@ -931,10 +931,10 @@ 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"); + "temporal_split_n_spans requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_split_n_spans(arg0, arg1, arg2); } @@ -945,10 +945,10 @@ 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"); + "temporal_start_instant requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_start_instant(arg0); } @@ -959,10 +959,10 @@ 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"); + "temporal_start_sequence requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_start_sequence(arg0); } @@ -973,10 +973,10 @@ 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"); + "temporal_start_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_start_timestamptz(arg0); } @@ -987,10 +987,10 @@ 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"); + "temporal_stops requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_stops(arg0, arg1, arg2); } @@ -1001,10 +1001,10 @@ 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"); + "temporal_subtype requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_subtype(arg0); } @@ -1015,10 +1015,10 @@ 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"); + "temporal_time requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_time(arg0); } @@ -1029,10 +1029,10 @@ 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"); + "temporal_time_bins requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_time_bins(arg0, arg1, arg2, arg3); } @@ -1043,10 +1043,10 @@ 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"); + "temporal_time_split requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_time_split(arg0, arg1, arg2, arg3, arg4); } @@ -1057,10 +1057,10 @@ 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"); + "temporal_timestamps requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_timestamps(arg0, arg1); } @@ -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"); + "temporal_timestamptz_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.temporal_timestamptz_n(arg0, arg1, arg2); + return GeneratedFunctions.temporal_timestamptz_n(arg0, arg1); } /** @@ -1085,10 +1085,10 @@ 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"); + "temporal_tprecision requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_tprecision(arg0, arg1, arg2); } @@ -1099,10 +1099,10 @@ 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"); + "temporal_tsample requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_tsample(arg0, arg1, arg2, arg3); } @@ -1113,10 +1113,10 @@ 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"); + "temporal_update requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_update(arg0, arg1, arg2); } @@ -1127,10 +1127,10 @@ 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"); + "temporal_upper_inc requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_upper_inc(arg0); } @@ -1141,10 +1141,10 @@ 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"); + "temporal_extent_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_extent_transfn(arg0, arg1); } @@ -1155,10 +1155,10 @@ 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"); + "temporal_merge_combinefn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_merge_combinefn(arg0, arg1); } @@ -1169,10 +1169,10 @@ 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"); + "temporal_merge_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_merge_transfn(arg0, arg1); } @@ -1183,10 +1183,10 @@ 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"); + "temporal_tagg_finalfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_tagg_finalfn(arg0); } @@ -1197,10 +1197,10 @@ 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"); + "temporal_tcount_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_tcount_transfn(arg0, arg1); } @@ -1211,10 +1211,10 @@ 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"); + "temporal_cmp requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_cmp(arg0, arg1); } @@ -1225,10 +1225,10 @@ 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"); + "temporal_eq requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_eq(arg0, arg1); } @@ -1239,10 +1239,10 @@ 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"); + "temporal_ge requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_ge(arg0, arg1); } @@ -1253,10 +1253,10 @@ 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"); + "temporal_gt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_gt(arg0, arg1); } @@ -1267,10 +1267,10 @@ 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"); + "temporal_le requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_le(arg0, arg1); } @@ -1281,10 +1281,10 @@ 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"); + "temporal_lt requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_lt(arg0, arg1); } @@ -1295,10 +1295,10 @@ 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"); + "temporal_ne requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_ne(arg0, arg1); } @@ -1309,10 +1309,10 @@ 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"); + "temporal_as_hexwkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_as_hexwkb(arg0, arg1); } @@ -1323,10 +1323,10 @@ 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"); + "temporal_as_mfjson requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_as_mfjson(arg0, arg1, arg2, arg3, arg4); } @@ -1337,10 +1337,10 @@ 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"); + "temporal_as_wkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_as_wkb(arg0, arg1); } @@ -1351,10 +1351,10 @@ 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"); + "temporal_from_hexwkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_from_hexwkb(arg0); } @@ -1365,10 +1365,10 @@ 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"); + "temporal_from_wkb requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.temporal_from_wkb(arg0, arg1); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTextSet.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTextSet.java index dbf19b9..c332bda 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTextSet.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTextSet.java @@ -21,10 +21,10 @@ 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"); + "textset_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.textset_make(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "textset_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.textset_end_value(arg0); } @@ -49,10 +49,10 @@ 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"); + "textset_initcap requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.textset_initcap(arg0); } @@ -63,10 +63,10 @@ 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"); + "textset_lower requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.textset_lower(arg0); } @@ -77,10 +77,10 @@ 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"); + "textset_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.textset_start_value(arg0); } @@ -91,10 +91,10 @@ 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"); + "textset_upper requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.textset_upper(arg0); } @@ -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"); + "textset_value_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.textset_value_n(arg0, arg1, arg2); + return GeneratedFunctions.textset_value_n(arg0, arg1); } /** @@ -119,10 +119,10 @@ 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"); + "textset_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.textset_values(arg0); } @@ -133,10 +133,10 @@ 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"); + "textset_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.textset_in(arg0); } @@ -147,10 +147,10 @@ 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"); + "textset_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.textset_out(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTh3index.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTh3index.java new file mode 100644 index 0000000..9c82a1c --- /dev/null +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTh3index.java @@ -0,0 +1,393 @@ +package org.mobilitydb.kafka.meos; + +/* AUTO-GENERATED by tools/codegen/emit_h3_facade.py — do not edit by hand. + * H3 / th3index family facade over functions.GeneratedFunctions. + */ + +import functions.GeneratedFunctions; +import jnr.ffi.Pointer; + +public final class MeosOpsTh3index { + + public static final boolean MEOS_AVAILABLE = MeosOpsRuntime.MEOS_AVAILABLE; + + private MeosOpsTh3index() { /* utility */ } + + /** MEOS {@code th3index_are_neighbor_cells} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_are_neighbor_cells(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_are_neighbor_cells requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_are_neighbor_cells(arg0, arg1); + } + + /** MEOS {@code th3index_cell_area} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_cell_area(jnr.ffi.Pointer arg0, java.lang.String arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_cell_area requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_cell_area(arg0, arg1); + } + + /** MEOS {@code th3index_cell_to_boundary} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_cell_to_boundary(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_cell_to_boundary requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_cell_to_boundary(arg0); + } + + /** MEOS {@code th3index_cell_to_center_child} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_cell_to_center_child(jnr.ffi.Pointer arg0, int arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_cell_to_center_child requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_cell_to_center_child(arg0, arg1); + } + + /** MEOS {@code th3index_cell_to_center_child_next} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_cell_to_center_child_next(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_cell_to_center_child_next requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_cell_to_center_child_next(arg0); + } + + /** MEOS {@code th3index_cell_to_child_pos} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_cell_to_child_pos(jnr.ffi.Pointer arg0, int arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_cell_to_child_pos requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_cell_to_child_pos(arg0, arg1); + } + + /** MEOS {@code th3index_cell_to_local_ij} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_cell_to_local_ij(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_cell_to_local_ij requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_cell_to_local_ij(arg0, arg1); + } + + /** MEOS {@code th3index_cell_to_parent} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_cell_to_parent(jnr.ffi.Pointer arg0, int arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_cell_to_parent requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_cell_to_parent(arg0, arg1); + } + + /** MEOS {@code th3index_cell_to_parent_next} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_cell_to_parent_next(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_cell_to_parent_next requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_cell_to_parent_next(arg0); + } + + /** MEOS {@code th3index_cell_to_vertex} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_cell_to_vertex(jnr.ffi.Pointer arg0, int arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_cell_to_vertex requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_cell_to_vertex(arg0, arg1); + } + + /** MEOS {@code th3index_cells_to_directed_edge} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_cells_to_directed_edge(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_cells_to_directed_edge requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_cells_to_directed_edge(arg0, arg1); + } + + /** MEOS {@code th3index_child_pos_to_cell} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_child_pos_to_cell(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, int arg2) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_child_pos_to_cell requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_child_pos_to_cell(arg0, arg1, arg2); + } + + /** MEOS {@code th3index_directed_edge_to_boundary} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_directed_edge_to_boundary(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_directed_edge_to_boundary requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_directed_edge_to_boundary(arg0); + } + + /** MEOS {@code th3index_edge_length} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_edge_length(jnr.ffi.Pointer arg0, java.lang.String arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_edge_length requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_edge_length(arg0, arg1); + } + + /** MEOS {@code th3index_end_value} — H3 / th3index family. */ + public static long th3index_end_value(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_end_value(arg0); + } + + /** MEOS {@code th3index_get_base_cell_number} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_get_base_cell_number(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_get_base_cell_number requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_get_base_cell_number(arg0); + } + + /** MEOS {@code th3index_get_directed_edge_destination} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_get_directed_edge_destination(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_get_directed_edge_destination requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_get_directed_edge_destination(arg0); + } + + /** MEOS {@code th3index_get_directed_edge_origin} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_get_directed_edge_origin(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_get_directed_edge_origin requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_get_directed_edge_origin(arg0); + } + + /** MEOS {@code th3index_get_resolution} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_get_resolution(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_get_resolution requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_get_resolution(arg0); + } + + /** MEOS {@code th3index_grid_distance} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_grid_distance(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_grid_distance requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_grid_distance(arg0, arg1); + } + + /** MEOS {@code th3index_in} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_in(java.lang.String arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_in(arg0); + } + + /** MEOS {@code th3index_is_pentagon} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_is_pentagon(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_is_pentagon requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_is_pentagon(arg0); + } + + /** MEOS {@code th3index_is_res_class_iii} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_is_res_class_iii(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_is_res_class_iii requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_is_res_class_iii(arg0); + } + + /** MEOS {@code th3index_is_valid_cell} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_is_valid_cell(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_is_valid_cell requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_is_valid_cell(arg0); + } + + /** MEOS {@code th3index_is_valid_directed_edge} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_is_valid_directed_edge(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_is_valid_directed_edge requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_is_valid_directed_edge(arg0); + } + + /** MEOS {@code th3index_is_valid_vertex} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_is_valid_vertex(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_is_valid_vertex requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_is_valid_vertex(arg0); + } + + /** MEOS {@code th3index_local_ij_to_cell} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_local_ij_to_cell(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_local_ij_to_cell requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_local_ij_to_cell(arg0, arg1); + } + + /** MEOS {@code th3index_make} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_make(long arg0, java.time.OffsetDateTime arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_make(arg0, arg1); + } + + /** MEOS {@code th3index_start_value} — H3 / th3index family. */ + public static long th3index_start_value(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_start_value(arg0); + } + + /** MEOS {@code th3index_to_tbigint} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_to_tbigint(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_to_tbigint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_to_tbigint(arg0); + } + + /** MEOS {@code th3index_to_tgeogpoint} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_to_tgeogpoint(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_to_tgeogpoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_to_tgeogpoint(arg0); + } + + /** MEOS {@code th3index_to_tgeompoint} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_to_tgeompoint(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_to_tgeompoint requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_to_tgeompoint(arg0); + } + + /** MEOS {@code th3index_value_at_timestamptz} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_value_at_timestamptz(jnr.ffi.Pointer arg0, java.time.OffsetDateTime arg1, boolean arg2) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_value_at_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_value_at_timestamptz(arg0, arg1, arg2); + } + + /** MEOS {@code th3index_value_n} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_value_n(jnr.ffi.Pointer arg0, int arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_value_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_value_n(arg0, arg1); + } + + /** MEOS {@code th3index_values} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_values(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_values(arg0, arg1); + } + + /** MEOS {@code th3index_vertex_to_latlng} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3index_vertex_to_latlng(jnr.ffi.Pointer arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3index_vertex_to_latlng requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3index_vertex_to_latlng(arg0); + } + + /** MEOS {@code th3indexinst_in} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3indexinst_in(java.lang.String arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3indexinst_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3indexinst_in(arg0); + } + + /** MEOS {@code th3indexinst_make} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3indexinst_make(long arg0, java.time.OffsetDateTime arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3indexinst_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3indexinst_make(arg0, arg1); + } + + /** MEOS {@code th3indexseq_in} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3indexseq_in(java.lang.String arg0, int arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3indexseq_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3indexseq_in(arg0, arg1); + } + + /** MEOS {@code th3indexseq_make} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3indexseq_make(jnr.ffi.Pointer arg0, jnr.ffi.Pointer arg1, int arg2, boolean arg3, boolean arg4) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3indexseq_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3indexseq_make(arg0, arg1, arg2, arg3, arg4); + } + + /** MEOS {@code th3indexseqset_in} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3indexseqset_in(java.lang.String arg0) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3indexseqset_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3indexseqset_in(arg0); + } + + /** MEOS {@code th3indexseqset_make} — H3 / th3index family. */ + public static jnr.ffi.Pointer th3indexseqset_make(jnr.ffi.Pointer arg0, int arg1) { + if (!MEOS_AVAILABLE) { + throw new UnsupportedOperationException( + "th3indexseqset_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); + } + return GeneratedFunctions.th3indexseqset_make(arg0, arg1); + } +} diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTstzSet.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTstzSet.java index d01e75e..0f2eae9 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTstzSet.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTstzSet.java @@ -21,10 +21,10 @@ 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"); + "tstzset_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzset_make(arg0, arg1); } @@ -35,10 +35,10 @@ 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"); + "tstzset_to_dateset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzset_to_dateset(arg0); } @@ -49,10 +49,10 @@ 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"); + "tstzset_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzset_to_stbox(arg0); } @@ -63,10 +63,10 @@ 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"); + "tstzset_end_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzset_end_value(arg0); } @@ -77,10 +77,10 @@ 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"); + "tstzset_shift_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzset_shift_scale(arg0, arg1, arg2); } @@ -91,10 +91,10 @@ 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"); + "tstzset_start_value requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzset_start_value(arg0); } @@ -105,10 +105,10 @@ 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"); + "tstzset_tprecision requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzset_tprecision(arg0, arg1, arg2); } @@ -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"); + "tstzset_value_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.tstzset_value_n(arg0, arg1, arg2); + return GeneratedFunctions.tstzset_value_n(arg0, arg1); } /** @@ -133,10 +133,10 @@ 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"); + "tstzset_values requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzset_values(arg0); } @@ -147,10 +147,10 @@ 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"); + "tstzset_tcount_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzset_tcount_transfn(arg0, arg1); } @@ -161,10 +161,10 @@ 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"); + "tstzset_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzset_in(arg0); } @@ -175,10 +175,10 @@ 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"); + "tstzset_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzset_out(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTstzSpan.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTstzSpan.java index aa469bc..18d6cd8 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTstzSpan.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTstzSpan.java @@ -21,10 +21,10 @@ 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"); + "tstzspan_make requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspan_make(arg0, arg1, arg2, arg3); } @@ -35,10 +35,10 @@ 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"); + "tstzspan_to_datespan requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspan_to_datespan(arg0); } @@ -49,10 +49,10 @@ 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"); + "tstzspan_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspan_to_stbox(arg0); } @@ -63,10 +63,10 @@ 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"); + "tstzspan_bins requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspan_bins(arg0, arg1, arg2, arg3); } @@ -77,10 +77,10 @@ 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"); + "tstzspan_duration requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspan_duration(arg0); } @@ -91,10 +91,10 @@ 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"); + "tstzspan_expand requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspan_expand(arg0, arg1); } @@ -105,10 +105,10 @@ 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"); + "tstzspan_lower requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspan_lower(arg0); } @@ -119,10 +119,10 @@ 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"); + "tstzspan_shift_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspan_shift_scale(arg0, arg1, arg2); } @@ -133,10 +133,10 @@ 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"); + "tstzspan_tprecision requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspan_tprecision(arg0, arg1, arg2); } @@ -147,10 +147,10 @@ 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"); + "tstzspan_upper requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspan_upper(arg0); } @@ -161,10 +161,10 @@ 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"); + "tstzspan_tcount_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspan_tcount_transfn(arg0, arg1); } @@ -175,10 +175,10 @@ 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"); + "tstzspan_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspan_in(arg0); } @@ -189,10 +189,10 @@ 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"); + "tstzspan_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspan_out(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTstzSpanSet.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTstzSpanSet.java index 1a541fe..f2fcd34 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTstzSpanSet.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/MeosOpsTstzSpanSet.java @@ -21,10 +21,10 @@ 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"); + "tstzspanset_to_datespanset requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspanset_to_datespanset(arg0); } @@ -35,10 +35,10 @@ 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"); + "tstzspanset_to_stbox requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspanset_to_stbox(arg0); } @@ -49,10 +49,10 @@ 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"); + "tstzspanset_bins requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspanset_bins(arg0, arg1, arg2, arg3); } @@ -63,10 +63,10 @@ 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"); + "tstzspanset_duration requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspanset_duration(arg0, arg1); } @@ -77,10 +77,10 @@ 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"); + "tstzspanset_end_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspanset_end_timestamptz(arg0); } @@ -91,10 +91,10 @@ 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"); + "tstzspanset_lower requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspanset_lower(arg0); } @@ -105,10 +105,10 @@ 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"); + "tstzspanset_num_timestamps requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspanset_num_timestamps(arg0); } @@ -119,10 +119,10 @@ 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"); + "tstzspanset_shift_scale requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspanset_shift_scale(arg0, arg1, arg2); } @@ -133,10 +133,10 @@ 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"); + "tstzspanset_start_timestamptz requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspanset_start_timestamptz(arg0); } @@ -147,10 +147,10 @@ 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"); + "tstzspanset_timestamps requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspanset_timestamps(arg0); } @@ -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"); + "tstzspanset_timestamptz_n requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } - return GeneratedFunctions.tstzspanset_timestamptz_n(arg0, arg1, arg2); + return GeneratedFunctions.tstzspanset_timestamptz_n(arg0, arg1); } /** @@ -175,10 +175,10 @@ 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"); + "tstzspanset_tprecision requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspanset_tprecision(arg0, arg1, arg2); } @@ -189,10 +189,10 @@ 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"); + "tstzspanset_upper requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspanset_upper(arg0); } @@ -203,10 +203,10 @@ 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"); + "tstzspanset_tcount_transfn requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspanset_tcount_transfn(arg0, arg1); } @@ -217,10 +217,10 @@ 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"); + "tstzspanset_in requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspanset_in(arg0); } @@ -231,10 +231,10 @@ 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"); + "tstzspanset_out requires libmeos — set -Dmobilitykafka.meos.enabled=true"); } return GeneratedFunctions.tstzspanset_out(arg0); } diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/wirings/README.md b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/wirings/README.md index 2f4d978..fa6e2ad 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/wirings/README.md +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/wirings/README.md @@ -75,7 +75,7 @@ Run with: ```bash mvn -q exec:java \ -Dexec.mainClass=org.mobilitydb.kafka.meos.wirings.demo.MeosWiringsDemoTopology \ - -Dmobilityflink.meos.enabled=true + -Dmobilitykafka.meos.enabled=true ``` The demo uses `TopologyTestDriver` (kafka-streams-test-utils) — no diff --git a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/wirings/demo/MeosWiringsDemoTopology.java b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/wirings/demo/MeosWiringsDemoTopology.java index bda533f..9b41c09 100644 --- a/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/wirings/demo/MeosWiringsDemoTopology.java +++ b/kafka-streams-app/src/main/java/org/mobilitydb/kafka/meos/wirings/demo/MeosWiringsDemoTopology.java @@ -72,7 +72,7 @@ *
{@code
  * mvn -q exec:java \
  *     -Dexec.mainClass=org.mobilitydb.kafka.meos.wirings.demo.MeosWiringsDemoTopology \
- *     -Dmobilityflink.meos.enabled=true
+ *     -Dmobilitykafka.meos.enabled=true
  * }
*/ public final class MeosWiringsDemoTopology { @@ -115,7 +115,7 @@ public static Topology buildTopology() { Pointer eventTbox = MeosOpsTBox.tbox_in(record.value()); Pointer newUnion = (prior == null) ? eventTbox - : MeosOpsFreeCore.union_tbox_tbox(prior, eventTbox, /*strict=*/0); + : MeosOpsFreeCore.union_tbox_tbox(prior, eventTbox, /*strict=*/false); return new MeosBoundedStateProcessor.MeosStep<>( newUnion, record.withValue(MeosOpsTBox.tbox_out(newUnion, 6))); @@ -144,7 +144,7 @@ public static Topology buildTopology() { MeosCrossStreamJoiner.joiner((vehAggWkt, queryWkt) -> { Pointer aggTbox = MeosOpsTBox.tbox_in(vehAggWkt); Pointer queryTbox = MeosOpsTBox.tbox_in(queryWkt); - if (MeosOpsFreeCore.overlaps_tbox_tbox(aggTbox, queryTbox) != 0) { + if (MeosOpsFreeCore.overlaps_tbox_tbox(aggTbox, queryTbox)) { return "MATCH: agg=" + vehAggWkt + " query=" + queryWkt; } return null; @@ -166,7 +166,7 @@ public static void main(String[] args) { if (!MeosOpsRuntime.MEOS_AVAILABLE) { LOG.warn("MEOS not available — topology built but not executed. " - + "Set -Dmobilityflink.meos.enabled=true and ensure libmeos is loadable to run."); + + "Set -Dmobilitykafka.meos.enabled=true and ensure libmeos is loadable to run."); return; }