All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.storage.blob.models.BlobQueryArrowField Maven / Gradle / Ivy

There is a newer version: 12.29.0
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.storage.blob.models;

import com.azure.core.annotation.Fluent;
import com.azure.storage.common.implementation.StorageImplUtils;

/**
 * Defines an arrow field for a blob quick query request.
 */
@Fluent
public class BlobQueryArrowField {

    private String name;
    private Integer precision;
    private Integer scale;
    private final BlobQueryArrowFieldType type;

    /**
     * @param type {@link BlobQueryArrowFieldType}
     */
    public BlobQueryArrowField(BlobQueryArrowFieldType type) {
        StorageImplUtils.assertNotNull("type", type);
        this.type = type;
    }

    /**
     * @param name The name of the field.
     * @return The updated options.
     */
    public BlobQueryArrowField setName(String name) {
        this.name = name;
        return this;
    }

    /**
     * @param precision The precision of the field. Required if type is {@link BlobQueryArrowFieldType#DECIMAL}
     * @return The updated options.
     */
    public BlobQueryArrowField setPrecision(Integer precision) {
        this.precision = precision;
        return this;
    }

    /**
     * @param scale The scale of the field. Required if type is {@link BlobQueryArrowFieldType#DECIMAL}
     * @return The updated options.
     */
    public BlobQueryArrowField setScale(Integer scale) {
        this.scale = scale;
        return this;
    }

    /**
     * @return The name.
     */
    public String getName() {
        return name;
    }

    /**
     * @return The precision.
     */
    public Integer getPrecision() {
        return precision;
    }

    /**
     * @return The scale.
     */
    public Integer getScale() {
        return scale;
    }

    /**
     * @return {@link BlobQueryArrowFieldType}
     */
    public BlobQueryArrowFieldType getType() {
        return type;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy