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 / util / automaton / RegExp.h
Size: Mime:
#ifndef org_apache_lucene_util_automaton_RegExp_H
#define org_apache_lucene_util_automaton_RegExp_H

#include "java/lang/Object.h"

namespace org {
  namespace apache {
    namespace lucene {
      namespace util {
        namespace automaton {
          class Automaton;
          class TooComplexToDeterminizeException;
          class AutomatonProvider;
        }
      }
    }
  }
}
namespace java {
  namespace lang {
    class String;
    class Class;
    class IllegalArgumentException;
  }
  namespace util {
    class Set;
    class Map;
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace util {
        namespace automaton {

          class RegExp : public ::java::lang::Object {
           public:
            enum {
              mid_init$_d1402cb7ea6d4983,
              mid_init$_8d6b327f169ea240,
              mid_getIdentifiers_0f146b3deb900c94,
              mid_getOriginalString_a6d454b6117bc1ba,
              mid_toAutomaton_70e7c068824ad99b,
              mid_toAutomaton_2f0260d1a76705d5,
              mid_toAutomaton_46a4e051439e3eb4,
              mid_toAutomaton_0e2ad1892c76ec81,
              mid_toString_a6d454b6117bc1ba,
              mid_toStringTree_a6d454b6117bc1ba,
              max_mid
            };

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

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

            static jint ALL;
            static jint ANYSTRING;
            static jint AUTOMATON;
            static jint COMPLEMENT;
            static jint EMPTY;
            static jint INTERSECTION;
            static jint INTERVAL;
            static jint NONE;

            RegExp(const ::java::lang::String &);
            RegExp(const ::java::lang::String &, jint);

            ::java::util::Set getIdentifiers() const;
            ::java::lang::String getOriginalString() const;
            ::org::apache::lucene::util::automaton::Automaton toAutomaton() const;
            ::org::apache::lucene::util::automaton::Automaton toAutomaton(jint) const;
            ::org::apache::lucene::util::automaton::Automaton toAutomaton(const ::org::apache::lucene::util::automaton::AutomatonProvider &, jint) const;
            ::org::apache::lucene::util::automaton::Automaton toAutomaton(const ::java::util::Map &, jint) const;
            ::java::lang::String toString() const;
            ::java::lang::String toStringTree() const;
          };
        }
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace util {
        namespace automaton {
          extern PyType_Def PY_TYPE_DEF(RegExp);
          extern PyTypeObject *PY_TYPE(RegExp);

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

#endif