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 / index / CorruptIndexException.h
Size: Mime:
#ifndef org_apache_lucene_index_CorruptIndexException_H
#define org_apache_lucene_index_CorruptIndexException_H

#include "java/io/IOException.h"

namespace java {
  namespace lang {
    class String;
    class Class;
    class Throwable;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace store {
        class DataOutput;
        class DataInput;
      }
    }
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace index {

        class CorruptIndexException : public ::java::io::IOException {
         public:
          enum {
            mid_init$_9bb4c9427a947ae3,
            mid_init$_d1e3107a1929aa3b,
            mid_init$_7dea249cd72a51b9,
            mid_init$_f2862a49a675a78a,
            mid_init$_1743cdcd96513978,
            mid_init$_535de9ccce7591fc,
            mid_getOriginalMessage_a6d454b6117bc1ba,
            mid_getResourceDescription_a6d454b6117bc1ba,
            max_mid
          };

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

          explicit CorruptIndexException(jobject obj) : ::java::io::IOException(obj) {
            if (obj != NULL && mids$ == NULL)
              env->getClass(initializeClass);
          }
          CorruptIndexException(const CorruptIndexException& obj) : ::java::io::IOException(obj) {}

          CorruptIndexException(const ::java::lang::String &, const ::java::lang::String &);
          CorruptIndexException(const ::java::lang::String &, const ::org::apache::lucene::store::DataInput &);
          CorruptIndexException(const ::java::lang::String &, const ::org::apache::lucene::store::DataOutput &);
          CorruptIndexException(const ::java::lang::String &, const ::java::lang::String &, const ::java::lang::Throwable &);
          CorruptIndexException(const ::java::lang::String &, const ::org::apache::lucene::store::DataOutput &, const ::java::lang::Throwable &);
          CorruptIndexException(const ::java::lang::String &, const ::org::apache::lucene::store::DataInput &, const ::java::lang::Throwable &);

          ::java::lang::String getOriginalMessage() const;
          ::java::lang::String getResourceDescription() const;
        };
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace index {
        extern PyType_Def PY_TYPE_DEF(CorruptIndexException);
        extern PyTypeObject *PY_TYPE(CorruptIndexException);

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

#endif