Class NameValuePair
- java.lang.Object
-
- com.microsoft.azure.management.appservice.NameValuePair
-
public class NameValuePair extends Object
Name value pair.
-
-
Constructor Summary
Constructors Constructor Description NameValuePair()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringname()Get pair name.Stringvalue()Get pair value.NameValuePairwithName(String name)Set pair name.NameValuePairwithValue(String value)Set pair value.
-
-
-
Method Detail
-
name
public String name()
Get pair name.- Returns:
- the name value
-
withName
public NameValuePair withName(String name)
Set pair name.- Parameters:
name- the name value to set- Returns:
- the NameValuePair object itself.
-
value
public String value()
Get pair value.- Returns:
- the value value
-
withValue
public NameValuePair withValue(String value)
Set pair value.- Parameters:
value- the value value to set- Returns:
- the NameValuePair object itself.
-
-