public class OdsCompare
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
protected static double |
MAX_DELTA
The maximum delta at float / double compare.
|
Constructor and Description |
---|
OdsCompare() |
Modifier and Type | Method and Description |
---|---|
static int |
compare(java.lang.String msg,
boolean[][] f1,
boolean[][] f2)
compare two boolean sequences.
|
static int |
compare(java.lang.String msg,
boolean[] f1,
boolean[] f2)
compare two boolean sequences.
|
static int |
compare(java.lang.String msg,
byte[][] f1,
byte[][] f2)
compare two arrays of byte values sequences, accept a rouning error.
|
static int |
compare(java.lang.String msg,
byte[] f1,
byte[] f2)
compare two byte sequences, accept a rouning error.
|
static int |
compare(java.lang.String msg,
double[][] f1,
double[][] f2)
compare two arrays of double values sequences, accept a rouning error.
|
static int |
compare(java.lang.String msg,
double[] f1,
double[] f2)
compare two double values sequences, accept a rouning error.
|
static int |
compare(java.lang.String msg,
double f1,
double f2)
compare two double values, accept a rouning error.
|
static int |
compare(java.lang.String msg,
float[][] f1,
float[][] f2)
compare two arrays of float values sequences, accept a rouning error.
|
static int |
compare(java.lang.String msg,
float[] f1,
float[] f2)
compare two float values sequences, accept a rouning error.
|
static int |
compare(java.lang.String msg,
float f1,
float f2)
compare two float values, accept a rouning error.
|
static int |
compare(java.lang.String msg,
int[][] f1,
int[][] f2)
compare arrays of two integer sequences, accept a rouning error.
|
static int |
compare(java.lang.String msg,
int[] f1,
int[] f2)
compare two integer sequences, accept a rouning error.
|
static int |
compare(java.lang.String msg,
short[][] f1,
short[][] f2)
compare two array of short sequences, accept a rouning error.
|
static int |
compare(java.lang.String msg,
short[] f1,
short[] f2)
compare two short sequences, accept a rouning error.
|
static int |
compare(java.lang.String msg,
java.lang.String[][] f1,
java.lang.String[][] f2)
compare two aray with string sequences, accept a rouning error.
|
static int |
compare(java.lang.String msg,
java.lang.String[] f1,
java.lang.String[] f2)
compare two string sequences, accept a rounding error.
|
static int |
compare(java.lang.String msg,
java.lang.String s1,
java.lang.String s2) |
static int |
compare(java.lang.String msg,
T_COMPLEX[][] f1,
T_COMPLEX[][] f2)
compare two arrays of complex values sequences, accept a rouning error.
|
static int |
compare(java.lang.String msg,
T_COMPLEX[] f1,
T_COMPLEX[] f2)
compare two complex values sequences, accept a rouning error.
|
static int |
compare(java.lang.String msg,
T_COMPLEX f1,
T_COMPLEX f2)
compare two T_Complex values
|
static int |
compare(java.lang.String msg,
T_DCOMPLEX[][] f1,
T_DCOMPLEX[][] f2)
compare two array of double complex values sequences, accept a rounding error.
|
static int |
compare(java.lang.String msg,
T_DCOMPLEX[] f1,
T_DCOMPLEX[] f2)
compare two double complex values sequences, accept a rounding error.
|
static int |
compare(java.lang.String msg,
T_DCOMPLEX f1,
T_DCOMPLEX f2)
compare two T_DComplex values
|
static int |
compare(java.lang.String msg,
T_ExternalReference[] f1,
T_ExternalReference[] f2)
compare two T_ExternalReference sequence values
|
static int |
compare(java.lang.String msg,
T_ExternalReference f1,
T_ExternalReference f2)
compare two T_ExternalReference values
|
static int |
compare(java.lang.String msg,
T_LONGLONG[][] f1,
T_LONGLONG[][] f2)
compare arrays of two T_LONGLONG sequences, accept a rouning error.
|
static int |
compare(java.lang.String msg,
T_LONGLONG[] f1,
T_LONGLONG[] f2)
compare two T_LONGLONG sequences, accept a rouning error.
|
static int |
compare(java.lang.String msg,
TS_UnionSeq v1,
TS_UnionSeq v2)
Compare TS_UnionSeq with the value in a TS_UnionSeq..
|
static int |
compare(java.lang.String msg,
TS_Union v1,
TS_Union v2)
Compare two TS_Union.
|
static int |
compare(java.lang.String msg,
TS_ValueSeq v1,
TS_ValueSeq v2)
Compare TS_ValueSeq .
|
static int |
compare(T_LONGLONG t1,
T_LONGLONG t2)
Compare two item of datatype T_LONGLONG.
|
static int |
compareDate(java.lang.String msg,
java.lang.String[][] d1,
java.lang.String[][] d2)
compare two array of date sequences, accept a rouning error.
|
static int |
compareDate(java.lang.String msg,
java.lang.String[] d1,
java.lang.String[] d2)
compare two date sequences, accept a rouning error.
|
static int |
compareDate(java.lang.String msg,
java.lang.String d1,
java.lang.String d2)
compare two float values, accept a rouning error.
|
protected static final double MAX_DELTA
public static int compare(java.lang.String msg, TS_ValueSeq v1, TS_ValueSeq v2)
msg
- the part of the messagev1
- the first TS_Valuev2
- the TS_ValueSeqpublic static int compare(java.lang.String msg, java.lang.String[] f1, java.lang.String[] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, TS_UnionSeq v1, TS_UnionSeq v2)
msg
- the part of the messagev1
- the first TS_UnionSeqv2
- the TS_UnionSeqpublic static int compare(java.lang.String msg, boolean[] f1, boolean[] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, boolean[][] f1, boolean[][] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, byte[] f1, byte[] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, byte[][] f1, byte[][] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, short[] f1, short[] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, short[][] f1, short[][] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, int[] f1, int[] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, int[][] f1, int[][] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, T_LONGLONG[] f1, T_LONGLONG[] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(T_LONGLONG t1, T_LONGLONG t2)
t1
- the first itemt2
- the second item.public static int compare(java.lang.String msg, T_LONGLONG[][] f1, T_LONGLONG[][] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, TS_Union v1, TS_Union v2)
msg
- the part of the messagev1
- the first TS_Unionv2
- the second TS_Unionpublic static int compare(java.lang.String msg, float[] f1, float[] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, float[][] f1, float[][] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, double[] f1, double[] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, double[][] f1, double[][] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, T_COMPLEX[] f1, T_COMPLEX[] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, T_COMPLEX[][] f1, T_COMPLEX[][] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, T_DCOMPLEX[] f1, T_DCOMPLEX[] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, T_DCOMPLEX[][] f1, T_DCOMPLEX[][] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, java.lang.String[][] f1, java.lang.String[][] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compareDate(java.lang.String msg, java.lang.String[] d1, java.lang.String[] d2)
msg
- message for the difference.d1
- the first valued2
- the second valuepublic static int compareDate(java.lang.String msg, java.lang.String[][] d1, java.lang.String[][] d2)
msg
- message for the difference.d1
- the first valued2
- the second valuepublic static int compareDate(java.lang.String msg, java.lang.String d1, java.lang.String d2)
msg
- message for the difference.d1
- the first valued2
- the second valuepublic static int compare(java.lang.String msg, float f1, float f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, double f1, double f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, T_DCOMPLEX f1, T_DCOMPLEX f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, T_ExternalReference f1, T_ExternalReference f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, T_ExternalReference[] f1, T_ExternalReference[] f2)
msg
- message for the difference.f1
- the first valuef2
- the second valuepublic static int compare(java.lang.String msg, java.lang.String s1, java.lang.String s2)