Class LocalizableString
- java.lang.Object
-
- com.microsoft.azure.management.appservice.LocalizableString
-
public class LocalizableString extends Object
Localizable string object containing the name and a localized value.
-
-
Constructor Summary
Constructors Constructor Description LocalizableString()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringlocalizedValue()Get localized name.Stringvalue()Get non-localized name.LocalizableStringwithLocalizedValue(String localizedValue)Set localized name.LocalizableStringwithValue(String value)Set non-localized name.
-
-
-
Method Detail
-
value
public String value()
Get non-localized name.- Returns:
- the value value
-
withValue
public LocalizableString withValue(String value)
Set non-localized name.- Parameters:
value- the value value to set- Returns:
- the LocalizableString object itself.
-
localizedValue
public String localizedValue()
Get localized name.- Returns:
- the localizedValue value
-
withLocalizedValue
public LocalizableString withLocalizedValue(String localizedValue)
Set localized name.- Parameters:
localizedValue- the localizedValue value to set- Returns:
- the LocalizableString object itself.
-
-