H
- - the hashvaluepublic static interface HashValue.Builder<H>
Modifier and Type | Method and Description |
---|---|
HashValue.Builder<H> |
add(H other)
perform an arithmetic addition of this value and other.
|
HashValue.Builder<H> |
and(H other)
and the value stored in this mutator with another value value of the same type
|
H |
build()
construct an immutable value from the value defined in the builder
|
HashValue.Builder<H> |
invert()
bitwise invert the value stored in this mutator
|
HashValue.Builder<H> |
or(H other)
or the value stored in this mutator with another value value of the same type
|
HashValue.Builder<H> |
subtract(H other)
arithmetically substract the given 'other' value from the value stored in this mutator.
|
HashValue.Builder<H> |
xor(H other)
xor the value stored in this mutator with another value value of the same type
|
HashValue.Builder<H> add(H other)
other
- the other value to add to thisHashValue.Builder<H> subtract(H other)
other
- the other value to subtract from thisHashValue.Builder<H> invert()
HashValue.Builder<H> or(H other)
other
- the other value to bitwise or with thisHashValue.Builder<H> and(H other)
other
- the other value to bitwise and with thisHashValue.Builder<H> xor(H other)
other
- the other value to bitwise exclusive or with thisH build()
Copyright © 2016. All rights reserved.