TiffSRational
Inheritance: java.lang.Object
public class TiffSRational
The tiff rational type.
Constructors
Constructor | Description |
---|---|
TiffSRational() | Initializes a new instance of the TiffSRational class. |
TiffSRational(int value) | Initializes a new instance of the TiffRational class. |
TiffSRational(int nominator, int denominator) | Initializes a new instance of the TiffSRational class. |
Fields
Field | Description |
---|---|
Epsilon | The epsilon for fraction calculation |
Methods
Method | Description |
---|---|
approximateFraction(double value) | Approximates the provided value to a fraction. |
approximateFraction(double value, double epsilon) | Approximates the provided value to a fraction. |
approximateFraction(float value) | Approximates the provided value to a fraction. |
approximateFraction(float value, double epsilon) | Approximates the provided value to a fraction. |
equals(Object obj) | Determines whether the specified Object is equal to this instance. |
getClass() | |
getDenominator() | Gets the denominator. |
getNominator() | Gets the nominator. |
getValue() | Gets the float value. |
getValueD() | Gets the double value. |
hashCode() | Returns a hash code for this instance. |
notify() | |
notifyAll() | |
toString() | Returns a System.String that represents this instance. |
wait() | |
wait(long arg0) | |
wait(long arg0, int arg1) |
TiffSRational()
public TiffSRational()
Initializes a new instance of the TiffSRational class.
TiffSRational(int value)
public TiffSRational(int value)
Initializes a new instance of the TiffRational class.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int | The nominator value. |
The nominator will be used as the value specified and denominator will be equal 1. |
TiffSRational(int nominator, int denominator)
public TiffSRational(int nominator, int denominator)
Initializes a new instance of the TiffSRational class.
Parameters:
Parameter | Type | Description |
---|---|---|
nominator | int | The nominator. |
denominator | int | The denominator. |
Epsilon
public static final double Epsilon
The epsilon for fraction calculation
approximateFraction(double value)
public static TiffSRational approximateFraction(double value)
Approximates the provided value to a fraction.
Parameters:
Parameter | Type | Description |
---|---|---|
value | double | The value. |
Returns: TiffSRational - A rational number having error less than Epsilon .
approximateFraction(double value, double epsilon)
public static TiffSRational approximateFraction(double value, double epsilon)
Approximates the provided value to a fraction.
Parameters:
Parameter | Type | Description |
---|---|---|
value | double | The value. |
epsilon | double | The error allowed. |
Returns: TiffSRational - A rational number having error less than epsilon .
approximateFraction(float value)
public static TiffSRational approximateFraction(float value)
Approximates the provided value to a fraction.
Parameters:
Parameter | Type | Description |
---|---|---|
value | float | The value. |
Returns: TiffSRational - A rational number having error less than Epsilon .
approximateFraction(float value, double epsilon)
public static TiffSRational approximateFraction(float value, double epsilon)
Approximates the provided value to a fraction.
Parameters:
Parameter | Type | Description |
---|---|---|
value | float | The value. |
epsilon | double | The error allowed. |
Returns: TiffSRational - A rational number having error less than epsilon .
equals(Object obj)
public boolean equals(Object obj)
Determines whether the specified Object is equal to this instance.
Parameters:
Parameter | Type | Description |
---|---|---|
obj | java.lang.Object | The Object to compare with this instance. |
Returns: boolean - true if the specified Object is equal to this instance; otherwise, false .
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getDenominator()
public int getDenominator()
Gets the denominator.
Value: The denominator.
Returns: int
getNominator()
public int getNominator()
Gets the nominator.
Value: The nominator.
Returns: int
getValue()
public float getValue()
Gets the float value.
Value: The float value.
Returns: float
getValueD()
public double getValueD()
Gets the double value.
Value: The double value.
Returns: double
hashCode()
public int hashCode()
Returns a hash code for this instance.
Returns: int - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
toString()
public String toString()
Returns a System.String that represents this instance.
Returns: java.lang.String - A System.String that represents this instance.
wait()
public final void wait()
wait(long arg0)
public final void wait(long arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long | |
arg1 | int |