commonMain.com.funnysaltyfish.partialjsonparser.Tokens.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of partial-json-parser Show documentation
Show all versions of partial-json-parser Show documentation
Parse incomplete JSON (like what ChatGPT generates in stream mode) in Kotlin, obtain as much as possible information fastly.
package com.funnysaltyfish.partialjsonparser
enum class TokenType {
String,
Number,
Boolean,
Null,
LeftBrace,
RightBrace,
LeftBracket,
RightBracket,
Colon,
Comma,
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy