Uses of Class
gw.util.fingerprint.FP64

Packages that use FP64
Package
Description
 
  • Uses of FP64 in gw.util.fingerprint

    Methods in gw.util.fingerprint that return FP64
    Modifier and Type
    Method
    Description
    FP64.extend(byte b)
    Extends this fingerprint by the byte b.
    FP64.extend(byte[] bytes)
    Extends this fingerprint by the bytes
    FP64.extend(byte[] bytes, int start, int len)
    Extends this fingerprint by the bytes bytes[offset]..bytes[offset+length-1].
    FP64.extend(char c)
    Extends this fingerprint by the character c.
    FP64.extend(char[] chars)
    Extends this fingerprint by the characters chars[start]..chars[start+length-1].
    FP64.extend(char[] chars, int start, int len)
    Extends this fingerprint by the characters chars[start]..chars[start+length-1].
    FP64.extend(int i)
    Extends this fingerprint by the integer i.
    FP64.extend(long i)
    Extends this fingerprint by the integer i.
    FP64.extend(InputStream stream)
    Extends this fingerprint by the bytes of the stream stream, which must be non-null.
    FP64.extend(String s)
    Extends this fingerprint by the characters of the String s, which must be non-null.
    FP64.extend(ByteBuffer buffer)
     
    Constructors in gw.util.fingerprint with parameters of type FP64
    Modifier
    Constructor
    Description
     
    FP64(FP64 fp)
    Initializes this fingerprint to a copy of fp, which must be non-null.