Class GOV4Function.Builder<T>
- Enclosing class:
- GOV4Function<T>
GOV4Function
.-
Field Summary
Modifier and TypeFieldDescriptionprotected BucketedHashStore<T>
protected boolean
Whetherbuild()
has already been called.protected boolean
protected int
protected int
protected File
protected TransformationStrategy<? super T>
protected LongIterable
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Builds a new function.dictionary
(int signatureWidth) Specifies that the resultingGOV4Function
should be an approximate dictionary: the output value will be a signature, andGOV4Function.getLong(Object)
will return 1 or 0 depending on whether the argument was in the key set or not; in this case, you cannot specify values.indirect()
Specifies the keys of the function; if you have specified aBucketedHashStore
, it can benull
.signed
(int signatureWidth) Specifies that the resultingGOV4Function
should be signed using a given number of bits per element; in this case, you cannot specify values.store
(BucketedHashStore<T> bucketedHashStore) Specifies a bucketed hash store containing the keys.store
(BucketedHashStore<T> bucketedHashStore, int outputWidth) Specifies a bucketed hash store containing keys and values, and an output width.Specifies a temporary directory for theBucketedHashStore
.transform
(TransformationStrategy<? super T> transform) Specifies the transformation strategy for the keys of the function.values
(LongIterable values) Specifies the values assigned to the keys; the output width of the function will be the minimum width needed to represent all values.values
(LongIterable values, int outputWidth) Specifies the values assigned to the keys.
-
Field Details
-
keys
-
transform
-
signatureWidth
protected int signatureWidth -
tempDir
-
bucketedHashStore
-
values
-
outputWidth
protected int outputWidth -
indirect
protected boolean indirect -
built
protected boolean builtWhetherbuild()
has already been called.
-
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
keys
Specifies the keys of the function; if you have specified aBucketedHashStore
, it can benull
.- Parameters:
keys
- the keys of the function.- Returns:
- this builder.
-
transform
Specifies the transformation strategy for the keys of the function.- Parameters:
transform
- a transformation strategy for the keys of the function.- Returns:
- this builder.
-
signed
Specifies that the resultingGOV4Function
should be signed using a given number of bits per element; in this case, you cannot specify values.- Parameters:
signatureWidth
- a signature width, or 0 for no signature (a negative value will have the same effect ofdictionary(int)
with the opposite argument).- Returns:
- this builder.
-
dictionary
Specifies that the resultingGOV4Function
should be an approximate dictionary: the output value will be a signature, andGOV4Function.getLong(Object)
will return 1 or 0 depending on whether the argument was in the key set or not; in this case, you cannot specify values.Note that checking against a signature has the usual probability of a false positive.
- Parameters:
signatureWidth
- a signature width, or 0 for no signature (a negative value will have the same effect ofsigned(int)
with the opposite argument).- Returns:
- this builder.
-
tempDir
Specifies a temporary directory for theBucketedHashStore
.- Parameters:
tempDir
- a temporary directory for theBucketedHashStore
files, ornull
for the standard temporary directory.- Returns:
- this builder.
-
store
Specifies a bucketed hash store containing the keys.Note that if you specify a store, it is your responsibility that it conforms to the rest of the data: it must contain ranks if you do not specify values or if you use the indirect feature, values otherwise.
- Parameters:
bucketedHashStore
- a bucketed 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 anIllegalStateException
will be thrown).- Returns:
- this builder.
-
store
Specifies a bucketed hash store containing keys and values, and an output width.Note that if you specify a store, it is your responsibility that it conforms to the rest of the data: it must contain ranks if you use the indirect feature, values representable in at most the specified number of bits otherwise.
- Parameters:
bucketedHashStore
- a bucketed 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 anIllegalStateException
will be thrown).outputWidth
- the bit width of the output of the function, which must be enough to represent all values contained in the store.- Returns:
- this builder.
-
values
Specifies the values assigned to the keys.Contrarily to
values(LongIterable)
, this method does not require a complete scan of the value to determine the output width.- Parameters:
values
- values to be assigned to each element, in the same order of the keys.outputWidth
- the bit width of the output of the function, which must be enough to represent allvalues
.- Returns:
- this builder.
- See Also:
-
values
Specifies the values assigned to the keys; the output width of the function will be the minimum width needed to represent all values.Contrarily to
values(LongIterable, int)
, this method requires a complete scan of the value to determine the output width.- Parameters:
values
- values to be assigned to each element, in the same order of the keys.- Returns:
- this builder.
- See Also:
-
indirect
Specifies that the function construction must be indirect: a provided store contains indices that must be used to access the values.If you specify this option, the provided values must be a
LongList
or aLongBigList
.- Returns:
- this builder.
-
build
Builds a new function.- Returns:
- a
GOV4Function
instance with the specified parameters. - Throws:
IllegalStateException
- if called more than once.IOException
-