mirror of
https://github.com/meteoinfo/MeteoInfo.git
synced 2025-12-08 20:36:05 +00:00
update format adding DATE datatype option
This commit is contained in:
parent
12121f5b58
commit
fd628959f3
@ -216,6 +216,11 @@ public class Column {
|
||||
formatLen = Math.max(formatLen, smax.length());
|
||||
this.format = "%" + String.valueOf(formatLen) + "d";
|
||||
break;
|
||||
case DATE:
|
||||
if (dateTimeFormatter == null) {
|
||||
dateTimeFormatter = DateTimeFormatter.ISO_DATE_TIME;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
String v;
|
||||
for (int i = 0; i < data.getSize(); i++){
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user