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 Link icon

    • AttributeParameterValue Link icon

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

    • getAttributeName Link icon

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

      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 Link icon

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

      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 Link icon

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

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