1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (https://www.swig.org).
* Version 4.3.0
*
* Do not make changes to this file unless you know what you are doing - modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */
package org.xapian;
public class Xapian implements XapianConstants {
public static byte[] sortableSerialise(double value) {
return XapianJNI.sortableSerialise(value);
}
public static double sortableUnserialise(byte[] serialised) {
return XapianJNI.sortableUnserialise(serialised);
}
public static double milesToMetres(double miles) {
return XapianJNI.milesToMetres(miles);
}
public static double metresToMiles(double metres) {
return XapianJNI.metresToMiles(metres);
}
public static int getBAD_VALUENO() {
return XapianJNI.getBAD_VALUENO();
}
}
|