com.azure.storage.blob.implementation.models.JsonTextConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-storage-blob Show documentation
Show all versions of azure-storage-blob Show documentation
This module contains client library for Microsoft Azure Blob Storage.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.storage.blob.implementation.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
/** json text configuration. */
@JacksonXmlRootElement(localName = "JsonTextConfiguration")
@Fluent
public final class JsonTextConfiguration {
/*
* The string used to separate records.
*/
@JsonProperty(value = "RecordSeparator")
private String recordSeparator;
/** Creates an instance of JsonTextConfiguration class. */
public JsonTextConfiguration() {}
/**
* Get the recordSeparator property: The string used to separate records.
*
* @return the recordSeparator value.
*/
public String getRecordSeparator() {
return this.recordSeparator;
}
/**
* Set the recordSeparator property: The string used to separate records.
*
* @param recordSeparator the recordSeparator value to set.
* @return the JsonTextConfiguration object itself.
*/
public JsonTextConfiguration setRecordSeparator(String recordSeparator) {
this.recordSeparator = recordSeparator;
return this;
}
}