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 / it / ItalianAnalyzer.h
Size: Mime:
#ifndef org_apache_lucene_analysis_it_ItalianAnalyzer_H
#define org_apache_lucene_analysis_it_ItalianAnalyzer_H

#include "org/apache/lucene/analysis/StopwordAnalyzerBase.h"

namespace java {
  namespace lang {
    class String;
    class Class;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace analysis {
        class CharArraySet;
      }
    }
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace analysis {
        namespace it {

          class ItalianAnalyzer : public ::org::apache::lucene::analysis::StopwordAnalyzerBase {
           public:
            enum {
              mid_init$_d7775b228e076e62,
              mid_init$_1ae75644409638c2,
              mid_init$_4ac95cfcc321489a,
              mid_getDefaultStopSet_c8bec98643740d56,
              mid_normalize_6c4e7b8531950dfb,
              mid_createComponents_07ccfb9673646cab,
              max_mid
            };

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

            explicit ItalianAnalyzer(jobject obj) : ::org::apache::lucene::analysis::StopwordAnalyzerBase(obj) {
              if (obj != NULL && mids$ == NULL)
                env->getClass(initializeClass);
            }
            ItalianAnalyzer(const ItalianAnalyzer& obj) : ::org::apache::lucene::analysis::StopwordAnalyzerBase(obj) {}

            static ::java::lang::String *DEFAULT_STOPWORD_FILE;

            ItalianAnalyzer();
            ItalianAnalyzer(const ::org::apache::lucene::analysis::CharArraySet &);
            ItalianAnalyzer(const ::org::apache::lucene::analysis::CharArraySet &, const ::org::apache::lucene::analysis::CharArraySet &);

            static ::org::apache::lucene::analysis::CharArraySet getDefaultStopSet();
          };
        }
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace analysis {
        namespace it {
          extern PyType_Def PY_TYPE_DEF(ItalianAnalyzer);
          extern PyTypeObject *PY_TYPE(ItalianAnalyzer);

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

#endif