com.azure.resourcemanager.monitor.implementation.LocalizableStringImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-monitor Show documentation
Show all versions of azure-resourcemanager-monitor Show documentation
This package contains Microsoft Azure Monitor 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.
package com.azure.resourcemanager.monitor.implementation;
import com.azure.resourcemanager.monitor.models.LocalizableString;
import com.azure.resourcemanager.monitor.fluent.models.LocalizableStringInner;
import com.azure.resourcemanager.resources.fluentcore.model.implementation.WrapperImpl;
/** The {@link LocalizableString} wrapper class implementation. */
class LocalizableStringImpl extends WrapperImpl implements LocalizableString {
LocalizableStringImpl(LocalizableStringInner innerObject) {
super(innerObject);
}
@Override
public String value() {
return this.innerModel().value();
}
@Override
public String localizedValue() {
return this.innerModel().localizedValue();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy