Package org.drip.function.definition
Class RxToR1Property
java.lang.Object
org.drip.function.definition.RxToR1Property
- Direct Known Subclasses:
R1ToR1Property
,R2ToR1Property
,R3ToR1Property
public abstract class RxToR1Property
extends java.lang.Object
RxToR1Property evaluates the Specified Pair of Rx To R1 Functions, and
verifies the Properties.
- Module = Computational Core Module
- Library = Numerical Analysis Library
- Project = Rd To Rd Function Analysis
- Package = Function Implementation Ancillary Support Objects
- Author:
- Lakshmi Krishnamurthy
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
EQ
EQUAL To Comparisonstatic java.lang.String
GT
GREATER THAN To Comparisonstatic java.lang.String
GTE
GREATER THAN OR EQUAL To Comparisonstatic java.lang.String
LT
LESS THAN To Comparisonstatic java.lang.String
LTE
LESS THAN OR EQUAL To Comparisonstatic double
MISMATCH_TOLERANCE
Mismatch Tolerance -
Method Summary
Modifier and Type Method Description double
mismatchTolerance()
Retrieve the Mismatch Tolerancejava.lang.String
type()
Retrieve the Type of the ComparisonR1PropertyVerification
verify(double leftValue, double rightValue)
Verify the specified Left and Right Function ValuesMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
MISMATCH_TOLERANCE
public static final double MISMATCH_TOLERANCEMismatch Tolerance- See Also:
- Constant Field Values
-
EQ
public static final java.lang.String EQEQUAL To Comparison- See Also:
- Constant Field Values
-
LTE
public static final java.lang.String LTELESS THAN OR EQUAL To Comparison- See Also:
- Constant Field Values
-
GTE
public static final java.lang.String GTEGREATER THAN OR EQUAL To Comparison- See Also:
- Constant Field Values
-
LT
public static final java.lang.String LTLESS THAN To Comparison- See Also:
- Constant Field Values
-
GT
public static final java.lang.String GTGREATER THAN To Comparison- See Also:
- Constant Field Values
-
-
Method Details
-
type
public java.lang.String type()Retrieve the Type of the Comparison- Returns:
- The Type of the Comparison
-
mismatchTolerance
public double mismatchTolerance()Retrieve the Mismatch Tolerance- Returns:
- The Mismatch Tolerance
-
verify
Verify the specified Left and Right Function Values- Parameters:
leftValue
- Left Function ValuerightValue
- Right Function Value- Returns:
- Results of the Verification
-