public final class DoubleGene extends Object implements NumericGene<Double,DoubleGene>, Mean<DoubleGene>, Comparable<DoubleGene>
This is a 
 value-based class; use of identity-sensitive operations (including
 reference equality (==), identity hash code, or synchronization) on
 instances of DoubleGene may have unpredictable results and should
 be avoided.
| Modifier and Type | Method and Description | 
|---|---|
| int | compareTo(DoubleGene other) | 
| boolean | equals(Object obj) | 
| A | getAllele()Return the allele of this gene. | 
| A | getMax()Return the allowed max value. | 
| A | getMin()Return the allowed min value. | 
| int | hashCode() | 
| boolean | isValid()Check if this object is valid. | 
| DoubleGene | mean(DoubleGene that)Return the (usually arithmetic) mean value of  thisandthat. | 
| DoubleGene | newInstance()Return a new, random gene with the same type and with the same constraints
 than this gene. | 
| DoubleGene | newInstance(Number number)Create a new gene from the given  valueand the current bounds. | 
| static DoubleGene | of(double min,
  double max)Create a new random  DoubleGene. | 
| static DoubleGene | of(double value,
  double min,
  double max)Create a new random  DoubleGenewith the given value and the
 given range. | 
| String | toString() | 
clone, finalize, getClass, notify, notifyAll, wait, wait, waitbyteValue, doubleValue, floatValue, intValue, longValue, shortValuegetMax, getMin, isValidpublic int compareTo(DoubleGene other)
compareTo in interface Comparable<DoubleGene>compareTo in interface BoundedGene<Double,DoubleGene>public static DoubleGene of(double value, double min, double max)
DoubleGene with the given value and the
 given range. If the value isn't within the interval [min, max),
 no exception is thrown. In this case the method
 AbstractBoundedGene.isValid() returns false.value - the value of the gene.min - the minimal valid value of this gene (inclusively).max - the maximal valid value of this gene (exclusively).DoubleGene with the given parameterpublic static DoubleGene of(double min, double max)
DoubleGene. It is guaranteed that the value
 of the DoubleGene lies in the interval [min, max).min - the minimal valid value of this gene (inclusively).max - the maximal valid value of this gene (exclusively).DoubleGene with the given parameterpublic DoubleGene newInstance(Number number)
BoundedGenevalue and the current bounds.newInstance in interface NumericGene<Double,DoubleGene>number - the value of the new gene.public DoubleGene newInstance()
Genegene.getClass() == gene.newInstance().getClass(). Implementations
 of this method has to use the Random object which can
 be fetched from the RandomRegistry.newInstance in interface Gene<Double,DoubleGene>newInstance in interface Factory<DoubleGene>public DoubleGene mean(DoubleGene that)
Meanthis and
 that. For NumericGenes the mean is the
 arithmetic mean.mean in interface Mean<DoubleGene>that - the second value for calculating the mean.this and that.public A getAllele()
GenegetAllele in interface Gene<A extends Comparable<? super A>,G extends org.jenetics.AbstractBoundedGene<A,G>>public A getMin()
BoundedGenegetMin in interface BoundedGene<A extends Comparable<? super A>,G extends org.jenetics.AbstractBoundedGene<A,G>>public A getMax()
BoundedGenegetMax in interface BoundedGene<A extends Comparable<? super A>,G extends org.jenetics.AbstractBoundedGene<A,G>>public boolean isValid()
VerifiableisValid in interface BoundedGene<A extends Comparable<? super A>,G extends org.jenetics.AbstractBoundedGene<A,G>>isValid in interface Verifiable© 2007-2014 Franz Wilhelmstötter (2014-12-28 10:45)