Class MinimalPerfectHashFunction.Builder<T>
java.lang.Object
it.unimi.dsi.sux4j.mph.MinimalPerfectHashFunction.Builder<T>
- Enclosing class:
MinimalPerfectHashFunction<T>
A builder class for
MinimalPerfectHashFunction.- Since:
- 0.1
- Author:
- Sebastiano Vigna
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected booleanWhetherbuild()has already been called.protected ChunkedHashStore<T> protected intprotected Fileprotected it.unimi.dsi.bits.TransformationStrategy<? super T> -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuild()Builds a minimal perfect hash function.Specifies the keys to hash; if you have specified ait.unimi.dsi.sux4j.io.ChunkedHashStore, it can benull.signed(int signatureWidth) Specifies that the resultingMinimalPerfectHashFunctionshould be signed using a given number of bits per key.store(ChunkedHashStore<T> chunkedHashStore) Specifies a chunked hash store containing the keys.Specifies a temporary directory for theit.unimi.dsi.sux4j.io.ChunkedHashStore.Specifies the transformation strategy for the keys to hash.
-
Field Details
-
keys
-
transform
-
signatureWidth
protected int signatureWidth -
tempDir
-
chunkedHashStore
-
built
protected boolean builtWhetherbuild()has already been called.
-
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
keys
Specifies the keys to hash; if you have specified ait.unimi.dsi.sux4j.io.ChunkedHashStore, it can benull.- Parameters:
keys- the keys to hash.- Returns:
- this builder.
-
transform
public MinimalPerfectHashFunction.Builder<T> transform(it.unimi.dsi.bits.TransformationStrategy<? super T> transform) Specifies the transformation strategy for the keys to hash.- Parameters:
transform- a transformation strategy for the keys to hash.- Returns:
- this builder.
-
signed
Specifies that the resultingMinimalPerfectHashFunctionshould be signed using a given number of bits per key.- Parameters:
signatureWidth- a signature width, or 0 for no signature.- Returns:
- this builder.
-
tempDir
Specifies a temporary directory for theit.unimi.dsi.sux4j.io.ChunkedHashStore.- Parameters:
tempDir- a temporary directory for theit.unimi.dsi.sux4j.io.ChunkedHashStorefiles, ornullfor the standard temporary directory.- Returns:
- this builder.
-
store
Specifies a chunked hash store containing the keys.- Parameters:
chunkedHashStore- a chunked hash store containing the keys, ornull; the store can be unchecked, but in this case you must specify keys and a transform (otherwise, in case of a hash collision in the store anIllegalStateExceptionwill be thrown).- Returns:
- this builder.
-
build
Builds a minimal perfect hash function.- Returns:
- a
MinimalPerfectHashFunctioninstance with the specified parameters. - Throws:
IllegalStateException- if called more than once.IOException
-