
public class DoubleDistance extends NumberDistance<DoubleDistance,Double>
| Modifier and Type | Field and Description | 
|---|---|
| static DoubleDistance | FACTORYThe static factory instance | 
| static DoubleDistance | INFINITE_DISTANCEInfinite distance constant | 
| private static long | serialVersionUIDGenerated serialVersionUID. | 
| static DoubleDistance | UNDEFINED_DISTANCEUndefined distance constant | 
| (package private) double | valueThe actual value. | 
| static DoubleDistance | ZERO_DISTANCEZero distance constant | 
DOUBLE_PATTERN, INFINITY_PATTERN, INTEGER_PATTERN| Constructor and Description | 
|---|
| DoubleDistance()Empty constructor for serialization purposes. | 
| DoubleDistance(double value)Constructs a new DoubleDistance object that represents the double argument. | 
| Modifier and Type | Method and Description | 
|---|---|
| int | compareTo(DoubleDistance other) | 
| double | doubleValue()Get the value as double. | 
| boolean | equals(Object obj)Returns true if  this == ohas the valuetrueor o
 is not null and o is of the same class as this instance andthis.compareTo(o)is 0, false otherwise. | 
| int | externalizableSize()Returns the number of Bytes this distance uses if it is written to an
 external file. | 
| DoubleDistance | fromDouble(double val)Build a new instance from a double value. | 
| Pattern | getPattern()Get the pattern accepted by this distance | 
| int | hashCode()Any extending class should implement a proper hashCode method. | 
| DoubleDistance | infiniteDistance()An infinite DoubleDistance is based on  Double.POSITIVE_INFINITY. | 
| boolean | isInfiniteDistance()Returns true, if the distance is an infinite distance, false otherwise. | 
| boolean | isNullDistance()Returns true, if the distance is a null distance, false otherwise. | 
| boolean | isUndefinedDistance()Returns true, if the distance is an undefined distance, false otherwise. | 
| long | longValue()Get the value as long. | 
| DoubleDistance | minus(DoubleDistance distance)Returns a new Distance by subtracting the given distance from this
 distance. | 
| DoubleDistance | nullDistance()A null DoubleDistance is based on 0. | 
| DoubleDistance | parseString(String val)As pattern is required a String defining a Double. | 
| DoubleDistance | plus(DoubleDistance distance)Returns a new distance as sum of this distance and the given distance. | 
| void | readExternal(ObjectInput in)Reads the double value of this DoubleDistance from the specified stream. | 
| DoubleDistance | times(double lambda)Returns a new distance as the product of this distance and the given double
 value. | 
| DoubleDistance | times(DoubleDistance distance)Returns a new distance as the product of this distance and the given
 distance. | 
| String | toString()Any implementing class should implement a proper toString-method for
 printing the result-values. | 
| DoubleDistance | undefinedDistance()An undefined DoubleDistance is based on  Double.NaN. | 
| void | writeExternal(ObjectOutput out)Writes the double value of this DoubleDistance to the specified stream. | 
byteValue, floatValue, intValue, shortValuerequiredInputPattern, testInputPatternpublic static final DoubleDistance ZERO_DISTANCE
public static final DoubleDistance INFINITE_DISTANCE
public static final DoubleDistance UNDEFINED_DISTANCE
public static final DoubleDistance FACTORY
double value
private static final long serialVersionUID
public DoubleDistance()
public DoubleDistance(double value)
value - the value to be represented by the DoubleDistance.public DoubleDistance fromDouble(double val)
NumberDistancefromDouble in class NumberDistance<DoubleDistance,Double>val - Valuepublic DoubleDistance plus(DoubleDistance distance)
Distancedistance - the distance to be added to this distancepublic DoubleDistance minus(DoubleDistance distance)
Distancedistance - the distance to be subtracted from this distancepublic DoubleDistance times(DoubleDistance distance)
distance - the distance to be multiplied with this distancepublic DoubleDistance times(double lambda)
lambda - the double value this distance should be multiplied withpublic void writeExternal(ObjectOutput out) throws IOException
IOExceptionpublic void readExternal(ObjectInput in) throws IOException
IOExceptionpublic int externalizableSize()
public double doubleValue()
NumberDistancedoubleValue in class NumberDistance<DoubleDistance,Double>public long longValue()
NumberDistancelongValue in class NumberDistance<DoubleDistance,Double>public int compareTo(DoubleDistance other)
public DoubleDistance infiniteDistance()
Double.POSITIVE_INFINITY.public DoubleDistance nullDistance()
public DoubleDistance undefinedDistance()
Double.NaN.public DoubleDistance parseString(String val) throws IllegalArgumentException
val - a pattern defining a similarity suitable to this measurement
        functionIllegalArgumentException - if the given pattern is not compatible
         with the requirements of this measurement functionpublic boolean isInfiniteDistance()
DistanceisInfiniteDistance in interface Distance<DoubleDistance>isInfiniteDistance in class AbstractDistance<DoubleDistance>public boolean isNullDistance()
DistanceisNullDistance in interface Distance<DoubleDistance>isNullDistance in class AbstractDistance<DoubleDistance>public boolean isUndefinedDistance()
DistanceisUndefinedDistance in interface Distance<DoubleDistance>isUndefinedDistance in class AbstractDistance<DoubleDistance>public Pattern getPattern()
AbstractDistancegetPattern in class AbstractDistance<DoubleDistance>public String toString()
DistancetoString in interface Distance<DoubleDistance>toString in class Objectpublic int hashCode()
AbstractDistancehashCode in class AbstractDistance<DoubleDistance>public boolean equals(Object obj)
AbstractDistancethis == o has the value true or o
 is not null and o is of the same class as this instance and
 this.compareTo(o) is 0, false otherwise.equals in class AbstractDistance<DoubleDistance>