Class ValuePair


  • public class ValuePair
    extends java.lang.Object
    The Class ValuePair.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String newV
      The new V.
      private java.lang.String oldV
      The old V.
    • Constructor Summary

      Constructors 
      Constructor Description
      ValuePair​(java.lang.String oldValue, java.lang.String newValue)
      Instantiates a new value pair.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getNewV()
      Returns the newV.
      java.lang.String getOldV()
      Returns the oldV.
      void setNewV​(java.lang.String newV)
      Sets the newV.
      void setOldV​(java.lang.String oldV)
      Sets the oldV.
      • Methods inherited from class java.lang.Object

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

      • oldV

        private java.lang.String oldV
        The old V.
      • newV

        private java.lang.String newV
        The new V.
    • Constructor Detail

      • ValuePair

        public ValuePair​(java.lang.String oldValue,
                         java.lang.String newValue)
        Instantiates a new value pair.
        Parameters:
        oldValue - the old value
        newValue - the new value
    • Method Detail

      • getNewV

        public java.lang.String getNewV()
        Returns the newV.
        Returns:
        String
      • getOldV

        public java.lang.String getOldV()
        Returns the oldV.
        Returns:
        String
      • setNewV

        public void setNewV​(java.lang.String newV)
        Sets the newV.
        Parameters:
        newV - The newV to set
      • setOldV

        public void setOldV​(java.lang.String oldV)
        Sets the oldV.
        Parameters:
        oldV - The oldV to set