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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
/* ----------------------------------------------------------------------------
* 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 WritableDatabase extends Database {
private transient long swigCPtr;
protected WritableDatabase(long cPtr, boolean cMemoryOwn) {
super(XapianJNI.WritableDatabase_SWIGUpcast(cPtr), cMemoryOwn);
swigCPtr = cPtr;
}
protected static long getCPtr(WritableDatabase obj) {
return (obj == null) ? 0 : obj.swigCPtr;
}
protected static long swigRelease(WritableDatabase obj) {
long ptr = 0;
if (obj != null) {
if (!obj.swigCMemOwn)
throw new RuntimeException("Cannot release ownership as memory is not owned");
ptr = obj.swigCPtr;
obj.swigCMemOwn = false;
obj.delete();
}
return ptr;
}
@SuppressWarnings({"deprecation", "removal"})
protected void finalize() {
delete();
}
public synchronized void delete() {
if (swigCPtr != 0) {
if (swigCMemOwn) {
swigCMemOwn = false;
XapianJNI.delete_WritableDatabase(swigCPtr);
}
swigCPtr = 0;
}
super.delete();
}
public WritableDatabase() {
this(XapianJNI.new_WritableDatabase__SWIG_0(), true);
}
public WritableDatabase(String path, int flags, int block_size) {
this(XapianJNI.new_WritableDatabase__SWIG_1(path, flags, block_size), true);
}
public WritableDatabase(String path, int flags) {
this(XapianJNI.new_WritableDatabase__SWIG_2(path, flags), true);
}
public WritableDatabase(String path) {
this(XapianJNI.new_WritableDatabase__SWIG_3(path), true);
}
public void addDatabase(WritableDatabase other) {
XapianJNI.WritableDatabase_addDatabase(swigCPtr, this, WritableDatabase.getCPtr(other), other);
}
public void commit() {
XapianJNI.WritableDatabase_commit(swigCPtr, this);
}
public void flush() {
XapianJNI.WritableDatabase_flush(swigCPtr, this);
}
public void beginTransaction(boolean flushed) {
XapianJNI.WritableDatabase_beginTransaction__SWIG_0(swigCPtr, this, flushed);
}
public void beginTransaction() {
XapianJNI.WritableDatabase_beginTransaction__SWIG_1(swigCPtr, this);
}
public void commitTransaction() {
XapianJNI.WritableDatabase_commitTransaction(swigCPtr, this);
}
public void cancelTransaction() {
XapianJNI.WritableDatabase_cancelTransaction(swigCPtr, this);
}
public long addDocument(Document document) {
return XapianJNI.WritableDatabase_addDocument(swigCPtr, this, Document.getCPtr(document), document);
}
public void deleteDocument(long did) {
XapianJNI.WritableDatabase_deleteDocument__SWIG_0(swigCPtr, this, did);
}
public void deleteDocument(String unique_term) {
XapianJNI.WritableDatabase_deleteDocument__SWIG_1(swigCPtr, this, unique_term);
}
public void replaceDocument(long did, Document document) {
XapianJNI.WritableDatabase_replaceDocument__SWIG_0(swigCPtr, this, did, Document.getCPtr(document), document);
}
public long replaceDocument(String unique_term, Document document) {
return XapianJNI.WritableDatabase_replaceDocument__SWIG_1(swigCPtr, this, unique_term, Document.getCPtr(document), document);
}
public void addSpelling(String word, long freqinc) {
XapianJNI.WritableDatabase_addSpelling__SWIG_0(swigCPtr, this, word, freqinc);
}
public void addSpelling(String word) {
XapianJNI.WritableDatabase_addSpelling__SWIG_1(swigCPtr, this, word);
}
public void removeSpelling(String word, long freqdec) {
XapianJNI.WritableDatabase_removeSpelling__SWIG_0(swigCPtr, this, word, freqdec);
}
public void removeSpelling(String word) {
XapianJNI.WritableDatabase_removeSpelling__SWIG_1(swigCPtr, this, word);
}
public void addSynonym(String term, String synonym) {
XapianJNI.WritableDatabase_addSynonym(swigCPtr, this, term, synonym);
}
public void removeSynonym(String term, String synonym) {
XapianJNI.WritableDatabase_removeSynonym(swigCPtr, this, term, synonym);
}
public void clearSynonyms(String term) {
XapianJNI.WritableDatabase_clearSynonyms(swigCPtr, this, term);
}
public void setMetadata(String key, String metadata) {
XapianJNI.WritableDatabase_setMetadata(swigCPtr, this, key, metadata);
}
public String toString() {
return XapianJNI.WritableDatabase_toString(swigCPtr, this);
}
}
|