Class IntegerDouble
- java.lang.Object
-
- com.actelion.research.util.datamodel.IntegerDouble
-
public class IntegerDouble extends java.lang.Object
IntegerDouble Oct 24, 2011 MvK: Start implementation
-
-
Constructor Summary
Constructors Constructor Description IntegerDouble()
IntegerDouble(int iv, double dv)
IntegerDouble(IntegerDouble id)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.Comparator<IntegerDouble>
getComparatorDouble()
static java.util.Comparator<IntegerDouble>
getComparatorInt()
double
getDouble()
int
getInt()
int
hashCode()
void
setDouble(double dv)
void
setInteger(int iv)
java.lang.String
toString()
static java.lang.String
toStringValues(IntegerDouble[] arr, java.text.NumberFormat df)
static java.lang.String
toStringValues(java.util.List<IntegerDouble> li, java.text.NumberFormat df)
-
-
-
Constructor Detail
-
IntegerDouble
public IntegerDouble()
-
IntegerDouble
public IntegerDouble(int iv, double dv)
- Parameters:
iv
-dv
-
-
IntegerDouble
public IntegerDouble(IntegerDouble id)
-
-
Method Detail
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
getInt
public int getInt()
-
getDouble
public double getDouble()
-
setInteger
public void setInteger(int iv)
-
setDouble
public void setDouble(double dv)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
toStringValues
public static java.lang.String toStringValues(java.util.List<IntegerDouble> li, java.text.NumberFormat df)
-
toStringValues
public static java.lang.String toStringValues(IntegerDouble[] arr, java.text.NumberFormat df)
-
getComparatorDouble
public static java.util.Comparator<IntegerDouble> getComparatorDouble()
-
getComparatorInt
public static java.util.Comparator<IntegerDouble> getComparatorInt()
-
-