パッケージ org.pcap4j.packet

クラス Ssh2NewKeysPacket

    • メソッドの詳細

      • getInstance

        public static Ssh2NewKeysPacket getInstance()
        戻り値:
        the singleton instance of Ssh2NewKeysPacket.
      • getHeader

        public Ssh2NewKeysPacket.Ssh2NewKeysHeader getHeader()
        クラスからコピーされた説明: AbstractPacket
        Returns the Header object representing this packet's header. This subclass have to override this method if the packet represented by the subclass has a header.
        定義:
        getHeader インタフェース内 Packet
        オーバーライド:
        getHeader クラス内 AbstractPacket
        戻り値:
        the Header object representing this packet's header. May be null if the header doesn't exist
      • getBuilder

        public Packet.Builder getBuilder()
        インタフェースからコピーされた説明: Packet
        Returns a new Builder object populated with this object's fields' values.
        定義:
        getBuilder インタフェース内 Packet
        定義:
        getBuilder クラス内 AbstractPacket
        戻り値:
        a new Builder object populated with this object's fields values
      • equals

        public boolean equals​(Object obj)
        クラスからコピーされた説明: AbstractPacket
        Indicates whether some other object is "equal to" this one. This method firstly compares this packet's header using the header's equals(Object) method, then compares this packet's payload using the payload's equals(Object) method. If you write this subclass with fields which represent somethings other than header or payload, you need to override this method.
        オーバーライド:
        equals クラス内 AbstractPacket
      • calcHashCode

        protected int calcHashCode()
        クラスからコピーされた説明: AbstractPacket
        This method calculates the value hashCode() will return using the header's hash code and the payload's hash code. If you write this subclass which represents a packet with extra parts (e.g. a trailer), you need to override this method.
        オーバーライド:
        calcHashCode クラス内 AbstractPacket
        戻り値:
        a calculated hash code value for the object