Freigeben über


FileQueryArrowField Class

  • java.lang.Object
    • com.azure.storage.file.datalake.models.FileQueryArrowField

public class FileQueryArrowField

Defines an arrow field for a file quick query request.

Constructor Summary

Constructor Description
FileQueryArrowField(FileQueryArrowFieldType type)

Method Summary

Modifier and Type Method and Description
String getName()
Integer getPrecision()
Integer getScale()
FileQueryArrowFieldType getType()
FileQueryArrowField setName(String name)
FileQueryArrowField setPrecision(Integer precision)
FileQueryArrowField setScale(Integer scale)

Methods inherited from java.lang.Object

Constructor Details

FileQueryArrowField

public FileQueryArrowField(FileQueryArrowFieldType type)

Parameters:

Method Details

getName

public String getName()

Returns:

The name.

getPrecision

public Integer getPrecision()

Returns:

The precision.

getScale

public Integer getScale()

Returns:

The scale.

getType

public FileQueryArrowFieldType getType()

Returns:

setName

public FileQueryArrowField setName(String name)

Parameters:

name - The name of the field.

Returns:

The updated options.

setPrecision

public FileQueryArrowField setPrecision(Integer precision)

Parameters:

precision - The precision of the field. Required if type is DECIMAL

Returns:

The updated options.

setScale

public FileQueryArrowField setScale(Integer scale)

Parameters:

scale - The scale of the field. Required if type is DECIMAL

Returns:

The updated options.

Applies to