Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_search_MaxNonCompetitiveBoostAttribute_H
#define org_apache_lucene_search_MaxNonCompetitiveBoostAttribute_H
#include "org/apache/lucene/util/Attribute.h"
namespace java {
namespace lang {
class Class;
}
}
namespace org {
namespace apache {
namespace lucene {
namespace util {
class BytesRef;
}
}
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace search {
class MaxNonCompetitiveBoostAttribute : public ::org::apache::lucene::util::Attribute {
public:
enum {
mid_getCompetitiveTerm_0c5811435dd00c85,
mid_getMaxNonCompetitiveBoost_2d3e9e78eeb8f24f,
mid_setCompetitiveTerm_56afe0077fbf95be,
mid_setMaxNonCompetitiveBoost_735109f3a68e4236,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit MaxNonCompetitiveBoostAttribute(jobject obj) : ::org::apache::lucene::util::Attribute(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
MaxNonCompetitiveBoostAttribute(const MaxNonCompetitiveBoostAttribute& obj) : ::org::apache::lucene::util::Attribute(obj) {}
::org::apache::lucene::util::BytesRef getCompetitiveTerm() const;
jfloat getMaxNonCompetitiveBoost() const;
void setCompetitiveTerm(const ::org::apache::lucene::util::BytesRef &) const;
void setMaxNonCompetitiveBoost(jfloat) const;
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace search {
extern PyType_Def PY_TYPE_DEF(MaxNonCompetitiveBoostAttribute);
extern PyTypeObject *PY_TYPE(MaxNonCompetitiveBoostAttribute);
class t_MaxNonCompetitiveBoostAttribute {
public:
PyObject_HEAD
MaxNonCompetitiveBoostAttribute object;
static PyObject *wrap_Object(const MaxNonCompetitiveBoostAttribute&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif