Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lucene / include / org / apache / lucene / analysis / ja / dict / Dictionary.h
Size: Mime:
#ifndef org_apache_lucene_analysis_ja_dict_Dictionary_H
#define org_apache_lucene_analysis_ja_dict_Dictionary_H

#include "java/lang/Object.h"

namespace java {
  namespace lang {
    class String;
    class Class;
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace analysis {
        namespace ja {
          namespace dict {

            class Dictionary : public ::java::lang::Object {
             public:
              enum {
                mid_getBaseForm_2b42bcdd05302a75,
                mid_getInflectionForm_362d87738f8d2888,
                mid_getInflectionType_362d87738f8d2888,
                mid_getLeftId_898568c95ed890a7,
                mid_getPartOfSpeech_362d87738f8d2888,
                mid_getPronunciation_2b42bcdd05302a75,
                mid_getReading_2b42bcdd05302a75,
                mid_getRightId_898568c95ed890a7,
                mid_getWordCost_898568c95ed890a7,
                max_mid
              };

              static ::java::lang::Class *class$;
              static jmethodID *mids$;
              static bool live$;
              static jclass initializeClass(bool);

              explicit Dictionary(jobject obj) : ::java::lang::Object(obj) {
                if (obj != NULL && mids$ == NULL)
                  env->getClass(initializeClass);
              }
              Dictionary(const Dictionary& obj) : ::java::lang::Object(obj) {}

              static ::java::lang::String *INTERNAL_SEPARATOR;

              ::java::lang::String getBaseForm(jint, const JArray< jchar > &, jint, jint) const;
              ::java::lang::String getInflectionForm(jint) const;
              ::java::lang::String getInflectionType(jint) const;
              jint getLeftId(jint) const;
              ::java::lang::String getPartOfSpeech(jint) const;
              ::java::lang::String getPronunciation(jint, const JArray< jchar > &, jint, jint) const;
              ::java::lang::String getReading(jint, const JArray< jchar > &, jint, jint) const;
              jint getRightId(jint) const;
              jint getWordCost(jint) const;
            };
          }
        }
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace analysis {
        namespace ja {
          namespace dict {
            extern PyType_Def PY_TYPE_DEF(Dictionary);
            extern PyTypeObject *PY_TYPE(Dictionary);

            class t_Dictionary {
            public:
              PyObject_HEAD
              Dictionary object;
              static PyObject *wrap_Object(const Dictionary&);
              static PyObject *wrap_jobject(const jobject&);
              static void install(PyObject *module);
              static void initialize(PyObject *module);
            };
          }
        }
      }
    }
  }
}

#endif