00001
00002
00003
00004
00005
00006
00007 #ifndef COH_CHARACTER16_HPP
00008 #define COH_CHARACTER16_HPP
00009
00010 #include "coherence/lang/compatibility.hpp"
00011
00012 #include "coherence/lang/Primitive.hpp"
00013 #include "coherence/lang/TypedHandle.hpp"
00014
00015 COH_OPEN_NAMESPACE2(coherence,lang)
00016
00017
00018
00019
00020
00021
00022
00023 class COH_EXPORT Character16
00024 : public cloneable_spec<Character16,
00025 extends<Primitive<wchar16_t> >,
00026 implements<Comparable> >
00027 {
00028 friend class factory<Character16>;
00029
00030
00031
00032 private:
00033
00034
00035
00036
00037
00038 Character16(wchar16_t ch);
00039
00040
00041
00042
00043 Character16(const Character16&);
00044
00045
00046
00047
00048 public:
00049
00050
00051
00052 virtual bool isASCII() const;
00053
00054
00055
00056
00057 public:
00058
00059
00060
00061 virtual int32_t compareTo(Object::View v) const;
00062
00063
00064
00065
00066 public:
00067
00068
00069
00070
00071
00072
00073
00074
00075 static Handle valueOf(wchar16_t ch);
00076
00077
00078
00079
00080
00081 public:
00082
00083
00084
00085 static const wchar16_t min_value = 0x0;
00086
00087
00088
00089
00090 static const wchar16_t max_value = 0xFFFF;
00091 };
00092
00093 COH_CLOSE_NAMESPACE2
00094
00095 #endif // COH_CHARACTER16_HPP