![JAR search and dependency download from the Maven repository](/logo.png)
org.chasen.mecab.DictionaryInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mecab-java Show documentation
Show all versions of mecab-java Show documentation
MeCab: Yet Another Part-of-Speech and Morphological Analyzer
MeCab is a fast and customizable Japanese morphological analyzer. MeCab is designed for generic purpose and applied to variety of NLP tasks, such as Kana-Kanji conversion. MeCab provides parameter estimation functionalities based on CRFs and HMM
The newest version!
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 1.3.40
*
* Do not make changes to this file unless you know what you are doing--modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */
package org.chasen.mecab;
public class DictionaryInfo {
private long swigCPtr;
protected boolean swigCMemOwn;
protected DictionaryInfo(long cPtr, boolean cMemoryOwn) {
swigCMemOwn = cMemoryOwn;
swigCPtr = cPtr;
}
protected static long getCPtr(DictionaryInfo obj) {
return (obj == null) ? 0 : obj.swigCPtr;
}
protected void finalize() {
delete();
}
public synchronized void delete() {
if (swigCPtr != 0) {
if (swigCMemOwn) {
swigCMemOwn = false;
MeCabJNI.delete_DictionaryInfo(swigCPtr);
}
swigCPtr = 0;
}
}
public String getFilename() {
return MeCabJNI.DictionaryInfo_filename_get(swigCPtr, this);
}
public String getCharset() {
return MeCabJNI.DictionaryInfo_charset_get(swigCPtr, this);
}
public long getSize() {
return MeCabJNI.DictionaryInfo_size_get(swigCPtr, this);
}
public int getType() {
return MeCabJNI.DictionaryInfo_type_get(swigCPtr, this);
}
public long getLsize() {
return MeCabJNI.DictionaryInfo_lsize_get(swigCPtr, this);
}
public long getRsize() {
return MeCabJNI.DictionaryInfo_rsize_get(swigCPtr, this);
}
public int getVersion() {
return MeCabJNI.DictionaryInfo_version_get(swigCPtr, this);
}
public DictionaryInfo getNext() {
long cPtr = MeCabJNI.DictionaryInfo_next_get(swigCPtr, this);
return (cPtr == 0) ? null : new DictionaryInfo(cPtr, false);
}
public DictionaryInfo() {
this(MeCabJNI.new_DictionaryInfo(), true);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy