handle defaults

This commit is contained in:
2016-09-12 05:02:43 +02:00
committed by Andreas Billmann
parent 4002219dfe
commit 4354afdf1d
3 changed files with 26 additions and 16 deletions

View File

@@ -40,19 +40,6 @@ public class FieldConfiguration {
.collect(Collectors.toList());
}
public enum NumberFormat {
@SerializedName("decimalChar") DECIMAL_CHAR,
@SerializedName("groupChar") GROUP_CHAR,
@SerializedName("currency") CURRENCY
}
public static List<String> getNumberFormats() {
return Stream.of(NumberFormat.values())
.map(NumberFormat::name)
.collect(Collectors.toList());
}
public enum DateFormat {
@SerializedName("default") DEFAULT,
@SerializedName("any") ANY,