-
Notifications
You must be signed in to change notification settings - Fork 0
FAQ: How many embeded parsers has GenericTextParser?
Albert Farré Figueras edited this page Apr 9, 2019
·
5 revisions
The current version of org.bytemechanics.commons.string.GenericTextParser.java brings the following embedded parsers:
- java.lang.Boolean.class
- java.lang.Character.class
- java.lang.Short.class
- java.lang.Integer.class
- java.lang.Long.class
- java.lang.Float.class
- java.lang.Double.class
- java.math.BigDecimal.class (with format "#,##0.0#")
- java.lang.String.class
- java.time.LocalTime.class (with java.time.DateTimeFormatter.ISO_TIME format)
- java.time.LocalDate.class (with java.time.DateTimeFormatter.ISO_DATE format)
- java.time.LocalDateTime.class (with java.time.DateTimeFormatter.ISO_DATE_TIME format)
- java.lang.Enum.class
- java.nio.file.Path.class
But feel free to create an issue to request new Java embedded parsers.