Package com.azure.storage.blob.models
Class BlobQueryDelimitedSerialization
- java.lang.Object
-
- com.azure.storage.blob.models.BlobQueryDelimitedSerialization
-
- All Implemented Interfaces:
BlobQuerySerialization
public class BlobQueryDelimitedSerialization extends Object implements BlobQuerySerialization
Defines the input or output delimited (CSV) serialization for a blob quick query request.
-
-
Constructor Summary
Constructors Constructor Description BlobQueryDelimitedSerialization()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description chargetColumnSeparator()Gets the column separator.chargetEscapeChar()Gets the escape character.chargetFieldQuote()Gets the field quote.chargetRecordSeparator()Gets the record separator.booleanisHeadersPresent()Gets whether or not headers are present.BlobQueryDelimitedSerializationsetColumnSeparator(char columnSeparator)Sets the column separator.BlobQueryDelimitedSerializationsetEscapeChar(char escapeChar)Sets the escape character.BlobQueryDelimitedSerializationsetFieldQuote(char fieldQuote)Sets the field quote.BlobQueryDelimitedSerializationsetHeadersPresent(boolean headersPresent)Sets whether or not headers are present.BlobQueryDelimitedSerializationsetRecordSeparator(char recordSeparator)Sets the record separator.
-
-
-
Method Detail
-
getColumnSeparator
public char getColumnSeparator()
Gets the column separator.- Returns:
- the column separator.
-
setColumnSeparator
public BlobQueryDelimitedSerialization setColumnSeparator(char columnSeparator)
Sets the column separator.- Parameters:
columnSeparator- the column separator.- Returns:
- the updated BlobQuickQueryDelimitedSerialization object.
-
getFieldQuote
public char getFieldQuote()
Gets the field quote.- Returns:
- the field quote.
-
setFieldQuote
public BlobQueryDelimitedSerialization setFieldQuote(char fieldQuote)
Sets the field quote.- Parameters:
fieldQuote- the field quote.- Returns:
- the updated BlobQuickQueryDelimitedSerialization object.
-
getEscapeChar
public char getEscapeChar()
Gets the escape character.- Returns:
- the escape character.
-
setEscapeChar
public BlobQueryDelimitedSerialization setEscapeChar(char escapeChar)
Sets the escape character.- Parameters:
escapeChar- the escape character.- Returns:
- the updated BlobQuickQueryDelimitedSerialization object.
-
isHeadersPresent
public boolean isHeadersPresent()
Gets whether or not headers are present.- Returns:
- Whether or not headers are present.
-
setHeadersPresent
public BlobQueryDelimitedSerialization setHeadersPresent(boolean headersPresent)
Sets whether or not headers are present.- Parameters:
headersPresent- Whether or not headers are present.- Returns:
- the updated BlobQuickQueryDelimitedSerialization object.
-
getRecordSeparator
public char getRecordSeparator()
Gets the record separator.- Returns:
- the record separator.
-
setRecordSeparator
public BlobQueryDelimitedSerialization setRecordSeparator(char recordSeparator)
Sets the record separator.- Parameters:
recordSeparator- the record separator.- Returns:
- the updated BlobQueryDelimitedSerialization object.
-
-