Class NameValuePair

java.lang.Object
com.microsoft.azure.management.batchai.NameValuePair

public class NameValuePair extends Object
Name-value pair.
  • Constructor Details

    • NameValuePair

      public NameValuePair()
  • Method Details

    • name

      public String name()
      Get the name in the name-value pair.
      Returns:
      the name value
    • withName

      public NameValuePair withName(String name)
      Set the name in the name-value pair.
      Parameters:
      name - the name value to set
      Returns:
      the NameValuePair object itself.
    • value

      public String value()
      Get the value in the name-value pair.
      Returns:
      the value value
    • withValue

      public NameValuePair withValue(String value)
      Set the value in the name-value pair.
      Parameters:
      value - the value value to set
      Returns:
      the NameValuePair object itself.