Class AttributeParameterValue


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

      Constructors 
      Constructor Description
      AttributeParameterValue()
      Creates a new instance of AttributeParameterValue.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getAttributeName()
      Gets the attribute name.
      java.lang.String getParameterName()
      Gets the parameter name.
      java.lang.Object getParameterValue()
      Gets the parameter value.
      void setAttributeName​(java.lang.String attributeName)
      Sets the attribute name.
      void setParameterName​(java.lang.String parameterName)
      Sets the parameter name.
      void setParameterValue​(java.lang.Object parameterValue)
      Sets the parameter value.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • AttributeParameterValue

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

      • getAttributeName

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

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

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

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

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

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