@Deprecated public final class Hash extends Object
| Constructor and Description |
|---|
Hash()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static int |
hashBackward(String s)
Deprecated.
Creates a hash for a string.
|
static long |
hashBackwardLong(String s)
Deprecated.
Creates a long hash for a string.
|
static int |
hashCode(CharSequence s,
int start,
int end)
Deprecated.
Creates a hash code of a string from [start-end)
|
static int |
hashCode(String... strings)
Deprecated.
Calculate the hashcode for a series of strings combined as one.
|
static long |
longHash(String s)
Deprecated.
64-bit hash, using longs, in stead of ints, for less collisions, for when it matters.
|
static long |
longHash(String s,
int start,
int end)
Deprecated.
64-bit hash using longs, starting on index 'start' and including everything before 'end'.
|
static long |
longHashAppend(long hash,
char c)
Deprecated.
Adds a character to an existing hash code.
|
static long |
longLowerHash(String s)
Deprecated.
Same as longHash(String), using only lower-case values of letters.
|
static long |
longLowerHash(String s,
int start,
int end)
Deprecated.
Long (64-bit) hash, lower-cased, from [start-end)
|
static long |
longLowerHash(String s,
int start,
int end,
long hash)
Deprecated.
Long (64-bit) hash, lower-cased, from [start-end)
|
static long |
longLowerHashAppend(long hash,
char c)
Deprecated.
Adds the lower-case equivalent of a character to an existing hash code.
|
static int |
lowerCaseHash(String s)
Deprecated.
This is an exact copy of the String
hashCode() function, aside from the lowercasing. |
static int |
lowerCaseHash(String s,
int start,
int end)
Deprecated.
Creates a hash code of a lowercase string from [start-end)
|
static int |
lowerCaseSpaceTrimHash(String s)
Deprecated.
This is an exact copy of the String
hashCode() function, aside from the lowercasing. |
static int |
lowerCaseSpaceTrimHash(String s,
int start,
int end)
Deprecated.
Creates a hash code of a lowercase string from [start-end) ignoring whitespace
|
static int |
nospaceLowerHash(String s,
int start,
int end)
Deprecated.
Creates a hash code of a lowercase string with whitespace removed from [start-end)
|
public static final int hashBackward(String s)
s - String to hashpublic static final long hashBackwardLong(String s)
s - the string to hashpublic static final long longHash(String s)
s - The String to hash.public static final long longHash(String s, int start, int end)
s - The string to hash.start - Where to start the hash.end - Where to end the hash.public static final long longLowerHash(String s)
s - The string to Hash.public static final long longLowerHash(String s, int start, int end)
s - The string to hash.start - where to start hashing.end - Where to stop hashing.public static final long longLowerHash(String s, int start, int end, long hash)
s - The string to hash.start - where to start hashing.end - Where to stop hashing.public static final long longLowerHashAppend(long hash,
char c)
hash - the existing hash codec - the character to addpublic static final long longHashAppend(long hash,
char c)
hash - the existing hash codec - the character to addpublic static final int lowerCaseHash(String s)
hashCode() function, aside from the lowercasing.s - string to be hashedpublic static final int lowerCaseHash(String s, int start, int end)
s - string to be hashedstart - the starting indexend - the ending indexpublic static final int hashCode(CharSequence s, int start, int end)
s - string to be hashedstart - the starting indexend - the ending indexpublic static final int nospaceLowerHash(String s, int start, int end)
s - string to be hashedstart - the starting indexend - the ending indexpublic static final int lowerCaseSpaceTrimHash(String s)
hashCode() function, aside from the lowercasing. No, it's not. It also ignores
consecutive whitespace.s - string to be hashedpublic static final int lowerCaseSpaceTrimHash(String s, int start, int end)
s - string to be hashedstart - the starting indexend - the ending indexpublic static final int hashCode(String... strings)
strings - Varargs array of Strings.