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 / java / lang / Float.h
Size: Mime:
#ifndef java_lang_Float_H
#define java_lang_Float_H

#include "java/lang/Number.h"

namespace java {
  namespace lang {
    class String;
    class Class;
    class Comparable;
    class Float;
    class Object;
    class NumberFormatException;
  }
  namespace util {
    class Optional;
  }
}
template<class T> class JArray;

namespace java {
  namespace lang {

    class Float : public ::java::lang::Number {
     public:
      enum {
        mid_init$_d1402cb7ea6d4983,
        mid_init$_d9bf1edd64186607,
        mid_init$_735109f3a68e4236,
        mid_byteValue_e0bb1ed55719c754,
        mid_compare_e55a432717205aaa,
        mid_compareTo_4195183e5688bbb8,
        mid_describeConstable_f900a66691276b03,
        mid_doubleValue_ab5a92c6a29be348,
        mid_equals_ac708f0101821708,
        mid_floatToIntBits_ac3862eaf7403a19,
        mid_floatToRawIntBits_ac3862eaf7403a19,
        mid_floatValue_2d3e9e78eeb8f24f,
        mid_hashCode_9135e6328d9d7dfd,
        mid_hashCode_ac3862eaf7403a19,
        mid_intBitsToFloat_b8eaefe895df76a4,
        mid_intValue_9135e6328d9d7dfd,
        mid_isFinite_cf392246dc76e143,
        mid_isInfinite_c20c2fcd6b89d9a9,
        mid_isInfinite_cf392246dc76e143,
        mid_isNaN_c20c2fcd6b89d9a9,
        mid_isNaN_cf392246dc76e143,
        mid_longValue_062ad918b5794303,
        mid_max_a6027aa450c665c9,
        mid_min_a6027aa450c665c9,
        mid_parseFloat_cfee615f6267de37,
        mid_shortValue_410ac1426f0f5ae1,
        mid_sum_a6027aa450c665c9,
        mid_toHexString_a2f822fd8a700b0e,
        mid_toString_a6d454b6117bc1ba,
        mid_toString_a2f822fd8a700b0e,
        mid_valueOf_ff1acc1174b05aba,
        mid_valueOf_06ef4efa4872c646,
        max_mid
      };

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

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

      static jint BYTES;
      static jint MAX_EXPONENT;
      static jfloat MAX_VALUE;
      static jint MIN_EXPONENT;
      static jfloat MIN_NORMAL;
      static jfloat MIN_VALUE;
      static jfloat NEGATIVE_INFINITY;
      static jfloat NaN;
      static jfloat POSITIVE_INFINITY;
      static jint SIZE;
      static ::java::lang::Class *TYPE;

      Float(const ::java::lang::String &);
      Float(jdouble);
      Float(jfloat);

      jbyte byteValue() const;
      static jint compare(jfloat, jfloat);
      jint compareTo(const Float &) const;
      ::java::util::Optional describeConstable() const;
      jdouble doubleValue() const;
      jboolean equals(const ::java::lang::Object &) const;
      static jint floatToIntBits(jfloat);
      static jint floatToRawIntBits(jfloat);
      jfloat floatValue() const;
      jint hashCode() const;
      static jint hashCode(jfloat);
      static jfloat intBitsToFloat(jint);
      jint intValue() const;
      static jboolean isFinite(jfloat);
      jboolean isInfinite() const;
      static jboolean isInfinite(jfloat);
      jboolean isNaN() const;
      static jboolean isNaN(jfloat);
      jlong longValue() const;
      static jfloat max$(jfloat, jfloat);
      static jfloat min$(jfloat, jfloat);
      static jfloat parseFloat(const ::java::lang::String &);
      jshort shortValue() const;
      static jfloat sum(jfloat, jfloat);
      static ::java::lang::String toHexString(jfloat);
      ::java::lang::String toString() const;
      static ::java::lang::String toString(jfloat);
      static Float valueOf(const ::java::lang::String &);
      static Float valueOf(jfloat);
    };
  }
}

#include <Python.h>

namespace java {
  namespace lang {
    extern PyType_Def PY_TYPE_DEF(Float);
    extern PyTypeObject *PY_TYPE(Float);

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

#endif