case class ArrayEncoder[E](element: AgnosticEncoder[E], containsNull: Boolean) extends AgnosticEncoder[Array[E]] with Product with Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ArrayEncoder
- Product
- Equals
- AgnosticEncoder
- Encoder
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new ArrayEncoder(element: AgnosticEncoder[E], containsNull: Boolean)
Value Members
- val clsTag: ClassTag[Array[E]]
A ClassTag that can be used to construct an Array to contain a collection of
T
.A ClassTag that can be used to construct an Array to contain a collection of
T
.- Definition Classes
- ArrayEncoder → Encoder
- val containsNull: Boolean
- def dataType: DataType
- Definition Classes
- ArrayEncoder → AgnosticEncoder
- val element: AgnosticEncoder[E]
- def isPrimitive: Boolean
- Definition Classes
- ArrayEncoder → AgnosticEncoder
- def isStruct: Boolean
- Definition Classes
- AgnosticEncoder
- def lenientSerialization: Boolean
- Definition Classes
- AgnosticEncoder
- def nullable: Boolean
- Definition Classes
- AgnosticEncoder
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def schema: StructType
Returns the schema of encoding this type of object as a Row.
Returns the schema of encoding this type of object as a Row.
- Definition Classes
- AgnosticEncoder → Encoder