zio-json
zio-json
zio
JsonPackagePlatformSpecific
zio.json
BuildInfo
DecoderOps
DeriveJsonCodec
DeriveJsonDecoder
DeriveJsonEncoder
EncoderOps
JsonCodec
JsonCodec
JsonDecoder
JsonDecoder
UnsafeJson
JsonDecoderPlatformSpecific
JsonEncoder
JsonEncoder
JsonEncoderPlatformSpecific
JsonError
JsonError
ArrayAccess
Message
ObjectAccess
SumType
JsonFieldDecoder
JsonFieldDecoder
JsonFieldEncoder
JsonFieldEncoder
JsonStreamDelimiter
JsonStreamDelimiter
Array
Newline
jsonDiscriminator
jsonExclude
jsonField
jsonHint
jsonNoExtraFields
zio.json.ast
Json
Json
Arr
Arr
Bool
Bool
Null
Num
Num
Obj
Obj
Str
Str
JsonCursor
JsonCursor
DownElement
DownField
FilterType
Identity
JsonType
JsonType
Arr
Bool
Null
Num
Obj
Str
zio.json.codegen
Generator
JsonType
Alternatives
CaseClass
JArray
JBigDecimal
JBoolean
JDouble
JInt
JLocalDate
JLocalDateTime
JLong
JNull
JObject
JOption
JString
JUUID
zio.json.internal
ByteNone
ByteOption
ByteSome
DoubleNone
DoubleOption
DoubleSome
FastCharSequence
FastStringWrite
FloatNone
FloatOption
FloatSome
IntNone
IntOption
IntSome
Lexer
LongNone
LongOption
LongSome
RetractReader
SafeNumbers
ShortNone
ShortOption
ShortSome
StringMatrix
UnsafeNumbers
UnsafeNumber
WithRetractReader
Write
WriteWriter
zio-json
/
zio.json.ast
/
JsonCursor
JsonCursor
object
JsonCursor
Companion:
class
Graph
Supertypes
Self type
trait
Sum
trait
Mirror
class
Object
trait
Matchable
class
Any
JsonCursor
.type
Type members
Value members
Type members
Classlikes
final case
class
DownElement
(
parent:
JsonCursor
[
_
,
Arr
],
index:
Int
)
extends
JsonCursor
[
Arr
,
Json
]
final case
class
DownField
(
parent:
JsonCursor
[
_
,
Obj
],
name:
String
)
extends
JsonCursor
[
Obj
,
Json
]
final case
class
FilterType
[
A
<:
Json
](
parent:
JsonCursor
[
_
,
_
<:
Json
],
jsonType:
JsonType
[
A
])
extends
JsonCursor
[
Json
,
A
]
case
object
Identity
extends
JsonCursor
[
Json
,
Json
]
Inherited types
type
MirroredElemLabels
<:
Tuple
The names of the product elements
The names of the product elements
Inherited from:
Mirror
type
MirroredLabel
<:
String
The name of the type
The name of the type
Inherited from:
Mirror
Value members
Concrete methods
def
element
(
index:
Int
):
JsonCursor
[
Arr
,
Json
]
def
field
(
name:
String
):
JsonCursor
[
Obj
,
Json
]
def
filter
[
A
<:
Json
](
jsonType:
JsonType
[
A
]):
JsonCursor
[
Json
,
A
]
Concrete fields
val
identity
:
JsonCursor
[
Json
,
Json
]
val
isArray
:
JsonCursor
[
Json
,
Arr
]
val
isBool
:
JsonCursor
[
Json
,
Bool
]
val
isNull
:
JsonCursor
[
Json
,
Null
]
val
isNumber
:
JsonCursor
[
Json
,
Num
]
val
isObject
:
JsonCursor
[
Json
,
Obj
]
val
isString
:
JsonCursor
[
Json
,
Str
]