Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef java_util_NoSuchElementException_H
#define java_util_NoSuchElementException_H
#include "java/lang/RuntimeException.h"
namespace java {
namespace lang {
class String;
class Class;
class Throwable;
}
}
template<class T> class JArray;
namespace java {
namespace util {
class NoSuchElementException : public ::java::lang::RuntimeException {
public:
enum {
mid_init$_d7775b228e076e62,
mid_init$_d1402cb7ea6d4983,
mid_init$_efc9bd44f6160276,
mid_init$_9338cbda64c168d4,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit NoSuchElementException(jobject obj) : ::java::lang::RuntimeException(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
NoSuchElementException(const NoSuchElementException& obj) : ::java::lang::RuntimeException(obj) {}
NoSuchElementException();
NoSuchElementException(const ::java::lang::String &);
NoSuchElementException(const ::java::lang::Throwable &);
NoSuchElementException(const ::java::lang::String &, const ::java::lang::Throwable &);
};
}
}
#include <Python.h>
namespace java {
namespace util {
extern PyType_Def PY_TYPE_DEF(NoSuchElementException);
extern PyTypeObject *PY_TYPE(NoSuchElementException);
class t_NoSuchElementException {
public:
PyObject_HEAD
NoSuchElementException object;
static PyObject *wrap_Object(const NoSuchElementException&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
#endif