sealed case class GenericRecord(fieldSet: FieldSet, annotations: Chunk[Any] = Chunk.empty) extends Record[ListMap[String, _]] with Product with Serializable
- Self Type
- Schema.GenericRecord
- Alphabetic
- By Inheritance
- GenericRecord
- Serializable
- Serializable
- Product
- Equals
- Record
- Schema
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new GenericRecord(fieldSet: FieldSet, annotations: Chunk[Any] = Chunk.empty)
Type Members
-
type
Accessors[Lens[_, _], Prism[_, _], Traversal[_, _]] = FieldSet.Accessors[ListMap[String, _], Lens, Prism, Traversal]
- Definition Classes
- GenericRecord → Schema
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
<*>[B](that: Schema[B]): Schema[(ListMap[String, _], B)]
A symbolic operator for zip.
-
def
<+>[B](that: Schema[B]): Schema[Either[ListMap[String, _], B]]
A symbolic operator for orElseEither.
A symbolic operator for orElseEither.
- Definition Classes
- Schema
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
?: Schema[Option[ListMap[String, _]]]
A symbolic operator for optional.
-
def
annotate(annotation: Any): Schema.GenericRecord
Returns a new schema that with
annotationReturns a new schema that with
annotation- Definition Classes
- GenericRecord → Schema
-
val
annotations: Chunk[Any]
Chunk of annotations for this schema
Chunk of annotations for this schema
- Definition Classes
- GenericRecord → Schema
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
ast: SchemaAst
- Definition Classes
- Schema
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
coerce[B](newSchema: Schema[B]): Either[String, Schema[B]]
Convert to Schema[B] iff B and A are homomorphic.
Convert to Schema[B] iff B and A are homomorphic.
This can be used to e.g convert between a case class and it's "generic" representation as a ListMap[String,_]
- Definition Classes
- Schema
-
def
defaultValue: Either[String, ListMap[String, _]]
The default value for a
Schemaof typeA. -
def
diff(thisValue: ListMap[String, _], thatValue: ListMap[String, _], differ: Option[Differ[ListMap[String, _]]] = None): Diff[ListMap[String, _]]
Performs a diff between thisValue and thatValue.
Performs a diff between thisValue and thatValue. See zio.schema.Differ for details on the default diff algorithms.
A custom zio.schema.Differ can be supplied if the default behavior is not acceptable.
- Definition Classes
- Schema
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val fieldSet: FieldSet
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
fromDynamic(value: DynamicValue): Either[String, ListMap[String, _]]
- Definition Classes
- Schema
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
makeAccessors(b: AccessorBuilder): Accessors[Lens, Prism, Traversal]
- Definition Classes
- GenericRecord → Schema
-
def
migrate[B](newSchema: Schema[B]): Either[String, (ListMap[String, _]) ⇒ Either[String, B]]
Generate a homomorphism from A to B iff A and B are homomorphic
Generate a homomorphism from A to B iff A and B are homomorphic
- Definition Classes
- Schema
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
optional: Schema[Option[ListMap[String, _]]]
Returns a new schema that modifies the type produced by this schema to be optional.
Returns a new schema that modifies the type produced by this schema to be optional.
- Definition Classes
- Schema
-
def
orElseEither[B](that: Schema[B]): Schema[Either[ListMap[String, _], B]]
Returns a new schema that combines this schema and the specified schema together, modeling their either composition.
Returns a new schema that combines this schema and the specified schema together, modeling their either composition.
- Definition Classes
- Schema
-
def
ordering: Ordering[ListMap[String, _]]
- Definition Classes
- Schema
-
def
patch(oldValue: ListMap[String, _], diff: Diff[ListMap[String, _]]): Either[String, ListMap[String, _]]
Patch value with a Diff.
Patch value with a Diff.
- Definition Classes
- Schema
-
def
rawConstruct(values: Chunk[Any]): Either[String, ListMap[String, _]]
- Definition Classes
- GenericRecord → Record
-
def
repeated: Schema[Chunk[ListMap[String, _]]]
- Definition Classes
- Schema
-
def
serializable: Schema[Schema[ListMap[String, _]]]
- Definition Classes
- Schema
-
def
structure: Chunk[Field[_]]
- Definition Classes
- GenericRecord → Record
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toDynamic(value: ListMap[String, _]): DynamicValue
- Definition Classes
- Schema
-
def
toSemiDynamic: Schema[(ListMap[String, _], Schema[ListMap[String, _]])]
- Definition Classes
- Schema
-
def
transform[B](f: (ListMap[String, _]) ⇒ B, g: (B) ⇒ ListMap[String, _])(implicit loc: SourceLocation): Schema[B]
Transforms this
Schema[A]into aSchema[B], by supplying two functions that can transform betweenAandB, without possibility of failure.Transforms this
Schema[A]into aSchema[B], by supplying two functions that can transform betweenAandB, without possibility of failure.- Definition Classes
- Schema
-
def
transformOrFail[B](f: (ListMap[String, _]) ⇒ Either[String, B], g: (B) ⇒ Either[String, ListMap[String, _]])(implicit loc: SourceLocation): Schema[B]
Transforms this
Schema[A]into aSchema[B], by supplying two functions that can transform betweenAandB(possibly failing in some cases).Transforms this
Schema[A]into aSchema[B], by supplying two functions that can transform betweenAandB(possibly failing in some cases).- Definition Classes
- Schema
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
zip[B](that: Schema[B]): Schema[(ListMap[String, _], B)]
Returns a new schema that combines this schema and the specified schema together, modeling their tuple composition.
Returns a new schema that combines this schema and the specified schema together, modeling their tuple composition.
- Definition Classes
- Schema