blob: b72f7cff7ecd32e5107cd354eb2d2fcaf04a5acd (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
 | 
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __java_math_RoundingMode__
#define __java_math_RoundingMode__
#pragma interface
#include <java/lang/Enum.h>
#include <gcj/array.h>
extern "Java"
{
  namespace java
  {
    namespace math
    {
        class RoundingMode;
    }
  }
}
class java::math::RoundingMode : public ::java::lang::Enum
{
  RoundingMode(::java::lang::String *, jint);
public:
  static ::java::math::RoundingMode * valueOf(jint);
  static JArray< ::java::math::RoundingMode * > * values();
  static ::java::math::RoundingMode * valueOf(::java::lang::String *);
  static ::java::math::RoundingMode * UP;
  static ::java::math::RoundingMode * DOWN;
  static ::java::math::RoundingMode * CEILING;
  static ::java::math::RoundingMode * FLOOR;
  static ::java::math::RoundingMode * HALF_UP;
  static ::java::math::RoundingMode * HALF_DOWN;
  static ::java::math::RoundingMode * HALF_EVEN;
  static ::java::math::RoundingMode * UNNECESSARY;
private:
  static const jlong serialVersionUID = 432302042773881265LL;
  static JArray< ::java::math::RoundingMode * > * ENUM$VALUES;
public:
  static ::java::lang::Class class$;
};
#endif // __java_math_RoundingMode__
 |