IcebergStructField

Defines a single field within an Iceberg table schema, including its identifier, name, data type, nullability, and documentation.

Types

Link copied to clipboard
class Builder
Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val doc: String?

Optional documentation or description text that provides additional context about the purpose and usage of this field.

Link copied to clipboard
val id: Int

The unique identifier assigned to this field within the Iceberg table schema, used for schema evolution and field tracking.

Link copied to clipboard

The name of the field as it appears in the table schema and query operations.

Link copied to clipboard

Indicates whether this field is required (non-nullable) or optional (nullable) in the table schema.

Link copied to clipboard

The data type definition for this field, specifying the structure and format of the data it contains.

Functions

Link copied to clipboard
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String