Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef java_lang_Short_H
#define java_lang_Short_H
#include "java/lang/Number.h"
namespace java {
namespace lang {
class Short;
class String;
class Class;
class Comparable;
class Object;
class NumberFormatException;
namespace constant {
class DynamicConstantDesc;
}
}
namespace util {
class Optional;
}
}
template<class T> class JArray;
namespace java {
namespace lang {
class Short : public ::java::lang::Number {
public:
enum {
mid_init$_1dfaa9fc55b46a0d,
mid_init$_d1402cb7ea6d4983,
mid_byteValue_e0bb1ed55719c754,
mid_compare_5aebb9aef30521a8,
mid_compareTo_0ed905d3c39efa0c,
mid_compareUnsigned_5aebb9aef30521a8,
mid_decode_8d138e37d57558f9,
mid_describeConstable_f900a66691276b03,
mid_doubleValue_ab5a92c6a29be348,
mid_equals_ac708f0101821708,
mid_floatValue_2d3e9e78eeb8f24f,
mid_hashCode_9135e6328d9d7dfd,
mid_hashCode_5894bc9ec5b5fc1a,
mid_intValue_9135e6328d9d7dfd,
mid_longValue_062ad918b5794303,
mid_parseShort_69fc8a47bdb75c29,
mid_parseShort_4c54dd6864be0bcd,
mid_reverseBytes_0a92be0986dde073,
mid_shortValue_410ac1426f0f5ae1,
mid_toString_a6d454b6117bc1ba,
mid_toString_59c86e0e824dae04,
mid_toUnsignedInt_5894bc9ec5b5fc1a,
mid_toUnsignedLong_c197a4c303ca5db9,
mid_valueOf_8d138e37d57558f9,
mid_valueOf_1d1e0943ffb495f5,
mid_valueOf_8423db457033f550,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit Short(jobject obj) : ::java::lang::Number(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
Short(const Short& obj) : ::java::lang::Number(obj) {}
static jint BYTES;
static jshort MAX_VALUE;
static jshort MIN_VALUE;
static jint SIZE;
static ::java::lang::Class *TYPE;
Short(jshort);
Short(const ::java::lang::String &);
jbyte byteValue() const;
static jint compare(jshort, jshort);
jint compareTo(const Short &) const;
static jint compareUnsigned(jshort, jshort);
static Short decode(const ::java::lang::String &);
::java::util::Optional describeConstable() const;
jdouble doubleValue() const;
jboolean equals(const ::java::lang::Object &) const;
jfloat floatValue() const;
jint hashCode() const;
static jint hashCode(jshort);
jint intValue() const;
jlong longValue() const;
static jshort parseShort(const ::java::lang::String &);
static jshort parseShort(const ::java::lang::String &, jint);
static jshort reverseBytes(jshort);
jshort shortValue() const;
::java::lang::String toString() const;
static ::java::lang::String toString(jshort);
static jint toUnsignedInt(jshort);
static jlong toUnsignedLong(jshort);
static Short valueOf(const ::java::lang::String &);
static Short valueOf(jshort);
static Short valueOf(const ::java::lang::String &, jint);
};
}
}
#include <Python.h>
namespace java {
namespace lang {
extern PyType_Def PY_TYPE_DEF(Short);
extern PyTypeObject *PY_TYPE(Short);
class t_Short {
public:
PyObject_HEAD
Short object;
static PyObject *wrap_Object(const Short&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
#endif