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 / queries / function / docvalues / FloatDocValues.h
Size: Mime:
#ifndef org_apache_lucene_queries_function_docvalues_FloatDocValues_H
#define org_apache_lucene_queries_function_docvalues_FloatDocValues_H

#include "org/apache/lucene/queries/function/FunctionValues.h"

namespace java {
  namespace lang {
    class String;
    class Class;
    class Object;
  }
  namespace io {
    class IOException;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace queries {
        namespace function {
          class ValueSource;
          class FunctionValues$ValueFiller;
        }
      }
    }
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace queries {
        namespace function {
          namespace docvalues {

            class FloatDocValues : public ::org::apache::lucene::queries::function::FunctionValues {
             public:
              enum {
                mid_init$_ab74fad086db70fb,
                mid_boolVal_b9777742cbbb5232,
                mid_byteVal_60c0ff6ab9428e91,
                mid_doubleVal_cdb19d58cf15e977,
                mid_floatVal_b8eaefe895df76a4,
                mid_getValueFiller_262f4294b0bf9393,
                mid_intVal_898568c95ed890a7,
                mid_longVal_4254bb0e767bf1cd,
                mid_objectVal_3c45fe7cb6f7fd6e,
                mid_shortVal_c6b9424bd0ff294a,
                mid_strVal_362d87738f8d2888,
                mid_toString_362d87738f8d2888,
                max_mid
              };

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

              explicit FloatDocValues(jobject obj) : ::org::apache::lucene::queries::function::FunctionValues(obj) {
                if (obj != NULL && mids$ == NULL)
                  env->getClass(initializeClass);
              }
              FloatDocValues(const FloatDocValues& obj) : ::org::apache::lucene::queries::function::FunctionValues(obj) {}

              FloatDocValues(const ::org::apache::lucene::queries::function::ValueSource &);

              jboolean boolVal(jint) const;
              jbyte byteVal(jint) const;
              jdouble doubleVal(jint) const;
              jfloat floatVal(jint) const;
              ::org::apache::lucene::queries::function::FunctionValues$ValueFiller getValueFiller() const;
              jint intVal(jint) const;
              jlong longVal(jint) const;
              ::java::lang::Object objectVal(jint) const;
              jshort shortVal(jint) const;
              ::java::lang::String strVal(jint) const;
              ::java::lang::String toString(jint) const;
            };
          }
        }
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace queries {
        namespace function {
          namespace docvalues {
            extern PyType_Def PY_TYPE_DEF(FloatDocValues);
            extern PyTypeObject *PY_TYPE(FloatDocValues);

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

#endif