Class ImmutableProgramRandomPrune

java.lang.Object
net.bmahe.genetics4j.gp.spec.mutation.ImmutableProgramRandomPrune
All Implemented Interfaces:
MutationPolicy, ProgramRandomPrune

@Generated("org.immutables.processor.ProxyProcessor") public final class ImmutableProgramRandomPrune extends Object implements ProgramRandomPrune
Immutable implementation of ProgramRandomPrune.

Use the builder to create immutable instances: ImmutableProgramRandomPrune.builder(). Use the static factory method to create immutable instances: ImmutableProgramRandomPrune.of().

  • Field Details

    • populationMutationProbability

      private final double populationMutationProbability
  • Constructor Details

    • ImmutableProgramRandomPrune

      private ImmutableProgramRandomPrune(double populationMutationProbability)
  • Method Details

    • populationMutationProbability

      public double populationMutationProbability()
      Specified by:
      populationMutationProbability in interface ProgramRandomPrune
      Returns:
      The value of the populationMutationProbability attribute
    • withPopulationMutationProbability

      public final ImmutableProgramRandomPrune withPopulationMutationProbability(double value)
      Copy the current immutable object by setting a value for the populationMutationProbability attribute. A value strict bits equality used to prevent copying of the same value by returning this.
      Parameters:
      value - A new value for populationMutationProbability
      Returns:
      A modified copy of the this object
    • equals

      public boolean equals(Object another)
      This instance is equal to all instances of ImmutableProgramRandomPrune that have equal attribute values.
      Overrides:
      equals in class Object
      Returns:
      true if this is equal to another instance
    • equalTo

      private boolean equalTo(int synthetic, ImmutableProgramRandomPrune another)
    • hashCode

      public int hashCode()
      Computes a hash code from attributes: populationMutationProbability.
      Overrides:
      hashCode in class Object
      Returns:
      hashCode value
    • toString

      public String toString()
      Prints the immutable value ProgramRandomPrune with attribute values.
      Overrides:
      toString in class Object
      Returns:
      A string representation of the value
    • of

      public static ImmutableProgramRandomPrune of(double populationMutationProbability)
      Construct a new immutable ProgramRandomPrune instance.
      Parameters:
      populationMutationProbability - The value for the populationMutationProbability attribute
      Returns:
      An immutable ProgramRandomPrune instance
    • validate

      private static ImmutableProgramRandomPrune validate(ImmutableProgramRandomPrune instance)
    • copyOf

      public static ImmutableProgramRandomPrune copyOf(ProgramRandomPrune instance)
      Creates an immutable copy of a ProgramRandomPrune value. Uses accessors to get values to initialize the new immutable instance. If an instance is already immutable, it is returned as is.
      Parameters:
      instance - The instance to copy
      Returns:
      A copied immutable ProgramRandomPrune instance
    • builder

      public static ImmutableProgramRandomPrune.Builder builder()
      Creates a builder for ImmutableProgramRandomPrune.
       ImmutableProgramRandomPrune.builder()
          .populationMutationProbability(double) // required populationMutationProbability
          .build();
       
      Returns:
      A new ImmutableProgramRandomPrune builder