GroupedDateTimeParserBuilder

interface GroupedDateTimeParserBuilder

Functions

anyOf
Link copied to clipboard
common
abstract fun anyOf(vararg childParsers: GroupedDateTimeParser)
Try each of the parsers defined by childParsers until one succeeds and include all of its groups in the parsing results.
abstract fun anyOf(vararg builders: GroupedDateTimeParserBuilder.() -> Unit)
Try each of the parsers defined by builders until one succeeds.
equals
Link copied to clipboard
common
open operator fun equals(other: Any?): Boolean
group
Link copied to clipboard
common
abstract fun group(builder: DateTimeParserBuilder.() -> Unit)
Create a distinct parse result and associate any parsed data with it.
hashCode
Link copied to clipboard
common
open fun hashCode(): Int
literal
Link copied to clipboard
common
abstract fun literal(char: Char)
Parse a Char literal.
abstract fun literal(string: String)
Parse a String literal.
toString
Link copied to clipboard
common
open fun toString(): String
unaryPlus
Link copied to clipboard
common
open operator fun Char.unaryPlus()
Parse a Char literal.
open operator fun String.unaryPlus()
Parse a String literal.