Class AttributeParameterValue

java.lang.Object
com.esri.arcgisruntime.tasks.networkanalysis.AttributeParameterValue

public final class AttributeParameterValue extends Object
Represents an attribute and corresponding parameter name-value pair.
Since:
100.0.0
  • Constructor Details

    • AttributeParameterValue

      public AttributeParameterValue()
      Creates a new instance of AttributeParameterValue.
      Since:
      100.0.0
  • Method Details

    • getAttributeName

      public String getAttributeName()
      Gets the attribute name.
      Returns:
      the attribute name
      Since:
      100.0.0
    • setAttributeName

      public void setAttributeName(String attributeName)
      Sets the attribute name.
      Parameters:
      attributeName - the attribute name
      Throws:
      IllegalArgumentException - if attributeName is null or empty
      Since:
      100.0.0
    • getParameterName

      public String getParameterName()
      Gets the parameter name.
      Returns:
      the parameter name
      Since:
      100.0.0
    • setParameterName

      public void setParameterName(String parameterName)
      Sets the parameter name.
      Parameters:
      parameterName - the name name
      Throws:
      IllegalArgumentException - if parameterName is null or empty
      Since:
      100.0.0
    • getParameterValue

      public Object getParameterValue()
      Gets the parameter value.
      Returns:
      the parameter value
      Since:
      100.0.0
    • setParameterValue

      public void setParameterValue(Object parameterValue)
      Sets the parameter value.
      Parameters:
      parameterValue - the parameter value
      Throws:
      IllegalArgumentException - if parameterValue is null
      Since:
      100.0.0