Class Parameter


  • public class Parameter
    extends java.lang.Object
    Key-Value pair data structure.
    • Constructor Summary

      Constructors 
      Constructor Description
      Parameter​(java.lang.String key, java.lang.String value)
      Initializes a new instance of the Parameter class.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getKey()
      Gets the Key.
      java.lang.String getValue()
      Gets the Key.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • Parameter

        public Parameter​(java.lang.String key,
                         java.lang.String value)
        Initializes a new instance of the Parameter class.
        Parameters:
        key - Key.
        value - Value.
    • Method Detail

      • getKey

        public java.lang.String getKey()
        Gets the Key.
        Returns:
        Key.
      • getValue

        public java.lang.String getValue()
        Gets the Key.
        Returns:
        Key.
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object