Class StreamImpl

    • Constructor Summary

      Constructors 
      Constructor Description
      StreamImpl​(java.lang.String scope, java.lang.String streamName)
      Creates a new instance of the Stream class.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object o)  
      java.lang.String getScope()
      Gets the scope of this stream.
      java.lang.String getStreamName()
      Gets the name of this stream (Not including the scope).
      int hashCode()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • StreamImpl

        public StreamImpl​(java.lang.String scope,
                          java.lang.String streamName)
        Creates a new instance of the Stream class.
        Parameters:
        scope - The scope of the stream.
        streamName - The name of the stream.
    • Method Detail

      • getScope

        public java.lang.String getScope()
        Description copied from interface: Stream
        Gets the scope of this stream.
        Specified by:
        getScope in interface Stream
        Returns:
        String scope name
      • getStreamName

        public java.lang.String getStreamName()
        Description copied from interface: Stream
        Gets the name of this stream (Not including the scope).
        Specified by:
        getStreamName in interface Stream
        Returns:
        String a stream name
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • toString

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