FileQueryDelimitedSerialization Class

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

Implements

public class FileQueryDelimitedSerialization
implements FileQuerySerialization

Defines the input or output delimited (CSV) serialization for a blob quick query request.

Constructor Summary

Constructor Description
FileQueryDelimitedSerialization()

Method Summary

Modifier and Type Method and Description
char getColumnSeparator()

Gets the column separator.

char getEscapeChar()

Gets the escape character.

char getFieldQuote()

Gets the field quote.

char getRecordSeparator()

Gets the record separator.

boolean isHeadersPresent()

Gets whether or not headers are present.

FileQueryDelimitedSerialization setColumnSeparator(char columnSeparator)

Sets the column separator.

FileQueryDelimitedSerialization setEscapeChar(char escapeChar)

Sets the escape character.

FileQueryDelimitedSerialization setFieldQuote(char fieldQuote)

Sets the field quote.

FileQueryDelimitedSerialization setHeadersPresent(boolean headersPresent)

Sets whether or not headers are present.

FileQueryDelimitedSerialization setRecordSeparator(char recordSeparator)

Sets the record separator.

Methods inherited from java.lang.Object

Constructor Details

FileQueryDelimitedSerialization

public FileQueryDelimitedSerialization()

Method Details

getColumnSeparator

public char getColumnSeparator()

Gets the column separator.

Returns:

the column separator.

getEscapeChar

public char getEscapeChar()

Gets the escape character.

Returns:

the escape character.

getFieldQuote

public char getFieldQuote()

Gets the field quote.

Returns:

the field quote.

getRecordSeparator

public char getRecordSeparator()

Gets the record separator.

Returns:

the record separator.

isHeadersPresent

public boolean isHeadersPresent()

Gets whether or not headers are present.

Returns:

Whether or not headers are present.

setColumnSeparator

public FileQueryDelimitedSerialization setColumnSeparator(char columnSeparator)

Sets the column separator.

Parameters:

columnSeparator - the column separator.

Returns:

the updated FileQueryDelimitedSerialization object.

setEscapeChar

public FileQueryDelimitedSerialization setEscapeChar(char escapeChar)

Sets the escape character.

Parameters:

escapeChar - the escape character.

Returns:

the updated FileQueryDelimitedSerialization object.

setFieldQuote

public FileQueryDelimitedSerialization setFieldQuote(char fieldQuote)

Sets the field quote.

Parameters:

fieldQuote - the field quote.

Returns:

the updated FileQueryDelimitedSerialization object.

setHeadersPresent

public FileQueryDelimitedSerialization setHeadersPresent(boolean headersPresent)

Sets whether or not headers are present.

Parameters:

headersPresent - Whether or not headers are present.

Returns:

the updated FileQueryDelimitedSerialization object.

setRecordSeparator

public FileQueryDelimitedSerialization setRecordSeparator(char recordSeparator)

Sets the record separator.

Parameters:

recordSeparator - the record separator.

Returns:

the updated FileQueryDelimitedSerialization object.

Applies to