Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See License.txt in the project root for
license information.
Code generated by Microsoft (R) AutoRest Code Generator.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.storage;
import com.fasterxml.jackson.annotation.JsonProperty;
Dimension of blobs, possibly be blob type or access tier.
/**
* Dimension of blobs, possibly be blob type or access tier.
*/
public class Dimension {
Display name of dimension.
/**
* Display name of dimension.
*/
@JsonProperty(value = "name")
private String name;
Display name of dimension.
/**
* Display name of dimension.
*/
@JsonProperty(value = "displayName")
private String displayName;
Get display name of dimension.
Returns: the name value
/**
* Get display name of dimension.
*
* @return the name value
*/
public String name() {
return this.name;
}
Set display name of dimension.
Params: - name – the name value to set
Returns: the Dimension object itself.
/**
* Set display name of dimension.
*
* @param name the name value to set
* @return the Dimension object itself.
*/
public Dimension withName(String name) {
this.name = name;
return this;
}
Get display name of dimension.
Returns: the displayName value
/**
* Get display name of dimension.
*
* @return the displayName value
*/
public String displayName() {
return this.displayName;
}
Set display name of dimension.
Params: - displayName – the displayName value to set
Returns: the Dimension object itself.
/**
* Set display name of dimension.
*
* @param displayName the displayName value to set
* @return the Dimension object itself.
*/
public Dimension withDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
}