Uses of Class
org.apache.parquet.format.SchemaElement
-
Packages that use SchemaElement Package Description org.apache.parquet.format -
-
Uses of SchemaElement in org.apache.parquet.format
Fields in org.apache.parquet.format with type parameters of type SchemaElement Modifier and Type Field Description List<SchemaElement>FileMetaData. schemaParquet schema for this file.Methods in org.apache.parquet.format that return SchemaElement Modifier and Type Method Description SchemaElementSchemaElement. deepCopy()SchemaElementSchemaElement. setConverted_type(ConvertedType converted_type)DEPRECATED: When the schema is the result of a conversion from another model.SchemaElementSchemaElement. setField_id(int field_id)When the original schema supports field ids, this will save the original field id in the parquet schemaSchemaElementSchemaElement. setLogicalType(LogicalType logicalType)The logical type of this SchemaElement LogicalType replaces ConvertedType, but ConvertedType is still required for some logical types to ensure forward-compatibility in format v1.SchemaElementSchemaElement. setName(String name)Name of the field in the schemaSchemaElementSchemaElement. setNum_children(int num_children)Nested fields.SchemaElementSchemaElement. setPrecision(int precision)SchemaElementSchemaElement. setRepetition_type(FieldRepetitionType repetition_type)repetition of the field.SchemaElementSchemaElement. setScale(int scale)DEPRECATED: Used when this column contains decimal data.SchemaElementSchemaElement. setType(Type type)Data type for this field.SchemaElementSchemaElement. setType_length(int type_length)If type is FIXED_LEN_BYTE_ARRAY, this is the byte length of the vales.Methods in org.apache.parquet.format that return types with arguments of type SchemaElement Modifier and Type Method Description List<SchemaElement>FileMetaData. getSchema()Parquet schema for this file.Iterator<SchemaElement>FileMetaData. getSchemaIterator()Methods in org.apache.parquet.format with parameters of type SchemaElement Modifier and Type Method Description voidFileMetaData. addToSchema(SchemaElement elem)intSchemaElement. compareTo(SchemaElement other)booleanSchemaElement. equals(SchemaElement that)Method parameters in org.apache.parquet.format with type arguments of type SchemaElement Modifier and Type Method Description FileMetaDataFileMetaData. setSchema(List<SchemaElement> schema)Parquet schema for this file.voidUtil.DefaultFileMetaDataConsumer. setSchema(List<SchemaElement> schema)abstract voidUtil.FileMetaDataConsumer. setSchema(List<SchemaElement> schema)Constructors in org.apache.parquet.format with parameters of type SchemaElement Constructor Description SchemaElement(SchemaElement other)Performs a deep copy on other.Constructor parameters in org.apache.parquet.format with type arguments of type SchemaElement Constructor Description FileMetaData(int version, List<SchemaElement> schema, long num_rows, List<RowGroup> row_groups)
-