Class StringHelper
Methods for manipulating strings.
Note
This API is for internal purposes only and might change in incompatible ways in the next release.
Inheritance
Inherited Members
Namespace: Lucene.Net.Util
Assembly: Lucene.Net.dll
Syntax
public static class StringHelper
Properties
| Improve this Doc View SourceGOOD_FAST_HASH_SEED
Declaration
[Obsolete("Use GoodFastHashSeed instead. This field will be removed in 4.8.0 release candidate.")]
public static int GOOD_FAST_HASH_SEED { get; }
Property Value
Type | Description |
---|---|
System. |
GoodFastHashSeed
Pass this as the seed to Murmurhash3_x86_32(Byte[], Int32, Int32, Int32).
Declaration
public static int GoodFastHashSeed { get; }
Property Value
Type | Description |
---|---|
System. |
VersionComparer
Returns a IComparer{string} over versioned strings such as X.YY.Z
Note
This API is for internal purposes only and might change in incompatible ways in the next release.
Declaration
public static IComparer<string> VersionComparer { get; }
Property Value
Type | Description |
---|---|
System. |
Methods
| Improve this Doc View SourceBytesDifference(BytesRef, BytesRef)
Compares two Bytes
Declaration
public static int BytesDifference(this BytesRef left, BytesRef right)
Parameters
Type | Name | Description |
---|---|---|
Bytes |
left | The first Bytes |
Bytes |
right | The second Bytes |
Returns
Type | Description |
---|---|
System. |
The number of common elements. |
EndsWith(BytesRef, BytesRef)
Returns true
if the ref
ends with the given suffix
. Otherwise
false
.
Declaration
public static bool EndsWith(this BytesRef ref, BytesRef suffix)
Parameters
Returns
Type | Description |
---|---|
System. |
Returns |
Equals(String, String)
Declaration
public static bool Equals(string s1, string s2)
Parameters
Type | Name | Description |
---|---|---|
System. |
s1 | |
System. |
s2 |
Returns
Type | Description |
---|---|
System. |
Murmurhash3_x86_32(BytesRef, Int32)
Returns the MurmurHash3_x86_32 hash. Original source/tests at https://github.com/yonik/java_util/.
Declaration
public static int Murmurhash3_x86_32(BytesRef bytes, int seed)
Parameters
Type | Name | Description |
---|---|---|
Bytes |
bytes | |
System. |
seed |
Returns
Type | Description |
---|---|
System. |
Murmurhash3_x86_32(Byte[], Int32, Int32, Int32)
Returns the MurmurHash3_x86_32 hash. Original source/tests at https://github.com/yonik/java_util/.
Declaration
public static int Murmurhash3_x86_32(byte[] data, int offset, int len, int seed)
Parameters
Type | Name | Description |
---|---|---|
System. |
data | |
System. |
offset | |
System. |
len | |
System. |
seed |
Returns
Type | Description |
---|---|
System. |
StartsWith(BytesRef, BytesRef)
Returns true
if the ref
starts with the given prefix
.
Otherwise false
.
Declaration
public static bool StartsWith(this BytesRef ref, BytesRef prefix)
Parameters
Returns
Type | Description |
---|---|
System. |
Returns |