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 / facet / taxonomy / writercache / UTF8TaxonomyWriterCache.h
Size: Mime:
#ifndef org_apache_lucene_facet_taxonomy_writercache_UTF8TaxonomyWriterCache_H
#define org_apache_lucene_facet_taxonomy_writercache_UTF8TaxonomyWriterCache_H

#include "java/lang/Object.h"

namespace java {
  namespace lang {
    class Class;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace util {
        class Accountable;
      }
      namespace facet {
        namespace taxonomy {
          class FacetLabel;
          namespace writercache {
            class TaxonomyWriterCache;
          }
        }
      }
    }
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace facet {
        namespace taxonomy {
          namespace writercache {

            class UTF8TaxonomyWriterCache : public ::java::lang::Object {
             public:
              enum {
                mid_init$_d7775b228e076e62,
                mid_clear_d7775b228e076e62,
                mid_close_d7775b228e076e62,
                mid_get_c1bae6e62b0edcdf,
                mid_isFull_c20c2fcd6b89d9a9,
                mid_put_485002b28271f0ca,
                mid_ramBytesUsed_062ad918b5794303,
                mid_size_9135e6328d9d7dfd,
                max_mid
              };

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

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

              UTF8TaxonomyWriterCache();

              void clear() const;
              void close() const;
              jint get(const ::org::apache::lucene::facet::taxonomy::FacetLabel &) const;
              jboolean isFull() const;
              jboolean put(const ::org::apache::lucene::facet::taxonomy::FacetLabel &, jint) const;
              jlong ramBytesUsed() const;
              jint size() const;
            };
          }
        }
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace facet {
        namespace taxonomy {
          namespace writercache {
            extern PyType_Def PY_TYPE_DEF(UTF8TaxonomyWriterCache);
            extern PyTypeObject *PY_TYPE(UTF8TaxonomyWriterCache);

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

#endif