KitePDF
Toggle table of contents
0.1.0
common
Platform filter
common
Switch theme
Search in API
KitePDF
kitepdf
/
io.github.yuroyami.kitepdf.parser
/
Token
Token
sealed
class
Token
Inheritors
Integer
Real
StringLiteral
Name
Keyword
ArrayOpen
ArrayClose
DictOpen
DictClose
EndOfFile
Members
Types
Array
Close
Link copied to clipboard
data
object
ArrayClose
:
Token
Array
Open
Link copied to clipboard
data
object
ArrayOpen
:
Token
Dict
Close
Link copied to clipboard
data
object
DictClose
:
Token
Dict
Open
Link copied to clipboard
data
object
DictOpen
:
Token
End
Of
File
Link copied to clipboard
data
object
EndOfFile
:
Token
Integer
Link copied to clipboard
data
class
Integer
(
val
value
:
Long
,
val
offset
:
Int
)
:
Token
Keyword
Link copied to clipboard
data
class
Keyword
(
val
value
:
String
,
val
offset
:
Int
)
:
Token
Name
Link copied to clipboard
data
class
Name
(
val
value
:
String
,
val
offset
:
Int
)
:
Token
Real
Link copied to clipboard
data
class
Real
(
val
value
:
Double
,
val
offset
:
Int
)
:
Token
String
Literal
Link copied to clipboard
data
class
StringLiteral
(
val
bytes
:
ByteArray
,
val
offset
:
Int
)
:
Token