All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.storage.blob.implementation.models.JsonTextConfiguration Maven / Gradle / Ivy

There is a newer version: 12.29.0
Show newest version
// 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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy