com.azure.resourcemanager.sql.models.Name Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-sql Show documentation
Show all versions of azure-resourcemanager-sql Show documentation
This package contains Microsoft Azure Sql Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
The 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.resourcemanager.sql.models;
import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
/**
* ARM Usage Name.
*/
@Fluent
public final class Name implements JsonSerializable {
/*
* Usage name value
*/
private String value;
/*
* Usage name localized value.
*/
private String localizedValue;
/**
* Creates an instance of Name class.
*/
public Name() {
}
/**
* Get the value property: Usage name value.
*
* @return the value value.
*/
public String value() {
return this.value;
}
/**
* Set the value property: Usage name value.
*
* @param value the value value to set.
* @return the Name object itself.
*/
public Name withValue(String value) {
this.value = value;
return this;
}
/**
* Get the localizedValue property: Usage name localized value.
*
* @return the localizedValue value.
*/
public String localizedValue() {
return this.localizedValue;
}
/**
* Set the localizedValue property: Usage name localized value.
*
* @param localizedValue the localizedValue value to set.
* @return the Name object itself.
*/
public Name withLocalizedValue(String localizedValue) {
this.localizedValue = localizedValue;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("value", this.value);
jsonWriter.writeStringField("localizedValue", this.localizedValue);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of Name from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of Name if the JsonReader was pointing to an instance of it, or null if it was pointing to
* JSON null.
* @throws IOException If an error occurs while reading the Name.
*/
public static Name fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
Name deserializedName = new Name();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("value".equals(fieldName)) {
deserializedName.value = reader.getString();
} else if ("localizedValue".equals(fieldName)) {
deserializedName.localizedValue = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedName;
});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy