FormattableFlags.h 684 B

123456789101112131415161718192021222324252627282930
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __java_util_FormattableFlags__
  3. #define __java_util_FormattableFlags__
  4. #pragma interface
  5. #include <java/lang/Object.h>
  6. class java::util::FormattableFlags : public ::java::lang::Object
  7. {
  8. FormattableFlags();
  9. public:
  10. static const jint LEFT_JUSTIFY = 1;
  11. static const jint UPPERCASE = 2;
  12. static const jint ALTERNATE = 4;
  13. public: // actually package-private
  14. static const jint PLUS = 8;
  15. static const jint SPACE = 16;
  16. static const jint ZERO = 32;
  17. static const jint COMMA = 64;
  18. static const jint PAREN = 128;
  19. public:
  20. static ::java::lang::Class class$;
  21. };
  22. #endif // __java_util_FormattableFlags__