Package com.azure.storage.blob.models
Class BlobQueryArrowField
java.lang.Object
com.azure.storage.blob.models.BlobQueryArrowField
Defines an arrow field for a blob quick query request.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetName()Gets the name.Gets the precision.getScale()Gets the scale.getType()Gets theBlobQueryArrowFieldType.Sets the name of the field.setPrecision(Integer precision) Sets the precision of the field.Sets the scale of the field.
-
Constructor Details
-
BlobQueryArrowField
Creates a new instance ofBlobQueryArrowField.- Parameters:
type-BlobQueryArrowFieldType
-
-
Method Details
-
setName
Sets the name of the field.- Parameters:
name- The name of the field.- Returns:
- The updated options.
-
setPrecision
Sets the precision of the field. Required if type isBlobQueryArrowFieldType.DECIMAL.- Parameters:
precision- The precision of the field. Required if type isBlobQueryArrowFieldType.DECIMAL- Returns:
- The updated options.
-
setScale
Sets the scale of the field. Required if type isBlobQueryArrowFieldType.DECIMAL.- Parameters:
scale- The scale of the field. Required if type isBlobQueryArrowFieldType.DECIMAL- Returns:
- The updated options.
-
getName
Gets the name.- Returns:
- The name.
-
getPrecision
Gets the precision.- Returns:
- The precision.
-
getScale
Gets the scale.- Returns:
- The scale.
-
getType
Gets theBlobQueryArrowFieldType.- Returns:
BlobQueryArrowFieldType
-