You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To match compatibility the behaviour of ignoring the counts are ignored.
79
67
80
-
81
-
82
68
## SimpleDateFormat
83
69
84
70
Is an almost complete replacement for `java.text.SimpleDateFormat` supporting formatting and parsing pattern letters.
85
71
86
72
-`java.text.ParsePosition` index and errorIndex is supported and matches the behaviour or the JRE class.
87
73
- WEEK_YEAR which is represented by the pattern letter "Y" [TODO format](https://github.com/mP1/j2cl-java-text/issues/216)[TODO parse](https://github.com/mP1/j2cl-java-text/issues/219)
88
74
89
-
90
-
91
75
```java
92
76
SimpleDateFormat f =newSimpleDateFormat("dd/MM/yyyy");
93
77
f.parse("31/12/1999") // gives a Date with 31 December 1999.
94
78
```
95
79
96
-
97
80
## Annotation processor arguments
98
81
99
82
- See [j2cl-java-util-currency-annotation-processor](https://github.com/mP1/j2cl-java-util-locale-annotation-processor) for more info about selecting which currencies get bundled.
@@ -102,8 +85,6 @@ f.parse("31/12/1999") // gives a Date with 31 December 1999.
102
85
103
86
The currency code `XXX` must be selected as it is used by various `java.text` classes as a source of defaults.
104
87
105
-
106
-
107
88
## Missing functionality
108
89
109
90
For the moment the following classes will not be supported:
@@ -127,11 +108,7 @@ For the moment the following classes will not be supported:
127
108
128
109
- Serialization is not supported, and all support classes and forms including magic methods such as `writeReplace` are removed.
129
110
130
-
131
111
### Transpiling
132
112
133
113
The `j2cl-maven-plugin` will shade the source during the transpile phase, so `walkingkooka.j2cl.java.text`
0 commit comments