-
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 brings the following embedded parsers:
- java.lang.Boolean
- java.lang.Character
- java.lang.Short
- java.lang.Integer
- java.lang.Long
- java.lang.Float
- java.lang.Double
- java.math.BigDecimal(with format "#,##0.0#")
- java.lang.String
- java.time.LocalTime (with java.time.DateTimeFormatter.ISO_TIME format)
- java.time.LocalDate (with java.time.DateTimeFormatter.ISO_DATE format)
- java.time.LocalDateTime (with java.time.DateTimeFormatter.ISO_DATE_TIME format)
- java.lang.Enum
- java.nio.file.Path
But feel free to create an issue to request new Java embedded parsers.