Class Tracestate.Entry

    • Constructor Summary

      Constructors 
      Constructor Description
      Entry()  
    • Method Summary

      All Methods Static Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      static Tracestate.Entry create​(java.lang.String key, java.lang.String value)
      Creates a new Entry for the Tracestate.
      abstract java.lang.String getKey()
      Returns the key String.
      abstract java.lang.String getValue()
      Returns the value String.
      • Methods inherited from class java.lang.Object

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

      • Entry

        Entry()
    • Method Detail

      • create

        public static Tracestate.Entry create​(java.lang.String key,
                                              java.lang.String value)
        Creates a new Entry for the Tracestate.
        Parameters:
        key - the Entry's key.
        value - the Entry's value.
        Since:
        0.16
      • getKey

        public abstract java.lang.String getKey()
        Returns the key String.
        Returns:
        the key String.
        Since:
        0.16
      • getValue

        public abstract java.lang.String getValue()
        Returns the value String.
        Returns:
        the value String.
        Since:
        0.16