Class ImmutableFloatChromosomeSpec.Builder
java.lang.Object
net.bmahe.genetics4j.core.spec.chromosome.ImmutableFloatChromosomeSpec.Builder
- Direct Known Subclasses:
FloatChromosomeSpec.Builder
- Enclosing class:
ImmutableFloatChromosomeSpec
@Generated(from="FloatChromosomeSpec",
generator="Immutables")
public static class ImmutableFloatChromosomeSpec.Builder
extends Object
Builds instances of type
FloatChromosomeSpec.
Initialize attributes and then invoke the build() method to create an
immutable instance.
Builder is not thread-safe and generally should not be stored in a field or collection,
but instead used immediately to create instances.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate Distributionprivate static final longprivate static final longprivate static final longprivate longprivate floatprivate floatprivate int -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuild()Builds a newFloatChromosomeSpec.distribution(Distribution distribution) Initializes the value for thedistributionattribute.private Stringfrom(FloatChromosomeSpec instance) Fill a builder with attribute values from the providedFloatChromosomeSpecinstance.maxValue(float maxValue) Initializes the value for themaxValueattribute.minValue(float minValue) Initializes the value for theminValueattribute.size(int size) Initializes the value for thesizeattribute.
-
Field Details
-
INIT_BIT_SIZE
private static final long INIT_BIT_SIZE- See Also:
-
INIT_BIT_MIN_VALUE
private static final long INIT_BIT_MIN_VALUE- See Also:
-
INIT_BIT_MAX_VALUE
private static final long INIT_BIT_MAX_VALUE- See Also:
-
initBits
private long initBits -
size
private int size -
minValue
private float minValue -
maxValue
private float maxValue -
distribution
-
-
Constructor Details
-
Builder
public Builder()Creates a builder forFloatChromosomeSpecinstances.new FloatChromosomeSpec.Builder() .size(int) // requiredsize.minValue(float) // requiredminValue.maxValue(float) // requiredmaxValue.distribution(net.bmahe.genetics4j.core.spec.statistics.distributions.Distribution) // optionaldistribution.build();
-
-
Method Details
-
from
Fill a builder with attribute values from the providedFloatChromosomeSpecinstance. Regular attribute values will be replaced with those from the given instance. Absent optional values will not replace present values.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
size
Initializes the value for thesizeattribute.- Parameters:
size- The value for size- Returns:
thisbuilder for use in a chained invocation
-
minValue
Initializes the value for theminValueattribute.- Parameters:
minValue- The value for minValue- Returns:
thisbuilder for use in a chained invocation
-
maxValue
Initializes the value for themaxValueattribute.- Parameters:
maxValue- The value for maxValue- Returns:
thisbuilder for use in a chained invocation
-
distribution
Initializes the value for thedistributionattribute.If not set, this attribute will have a default value as returned by the initializer of
distribution.- Parameters:
distribution- The value for distribution- Returns:
thisbuilder for use in a chained invocation
-
build
Builds a newFloatChromosomeSpec.- Returns:
- An immutable instance of FloatChromosomeSpec
- Throws:
IllegalStateException- if any required attributes are missing
-
formatRequiredAttributesMessage
-