|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectibis.gmi.FlatCombiner
The FlatCombiner
class serves as a base class for user-defined
result flat-combiners. The user-defined flatcombiner is supposed to redefine
the "combine" versions that the user is going to invoke.
This class is not abstract, because the user-defined combiner does not have
to supply all "combine" methods (for all different result types). Therefore,
default ones are supplied that just throw an exception.
Constructor Summary | |
FlatCombiner()
|
Method Summary | |
boolean |
combine(boolean[] results,
java.lang.Exception[] exceptions)
Combine with a boolean result. |
byte |
combine(byte[] results,
java.lang.Exception[] exceptions)
Combine with a byte result. |
char |
combine(char[] results,
java.lang.Exception[] exceptions)
Combine with a char result. |
double |
combine(double[] results,
java.lang.Exception[] exceptions)
Combine with a double result. |
void |
combine(java.lang.Exception[] exceptions)
Combine with a void result. |
float |
combine(float[] results,
java.lang.Exception[] exceptions)
Combine with a float result. |
int |
combine(int[] results,
java.lang.Exception[] exceptions)
Combine with an int result. |
long |
combine(long[] results,
java.lang.Exception[] exceptions)
Combine with a long result. |
java.lang.Object |
combine(java.lang.Object[] results,
java.lang.Exception[] exceptions)
Combine with an Object result. |
short |
combine(short[] results,
java.lang.Exception[] exceptions)
Combine with a short result. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public FlatCombiner()
Method Detail |
public void combine(java.lang.Exception[] exceptions)
exceptions
- the exceptions to be combinedpublic boolean combine(boolean[] results, java.lang.Exception[] exceptions)
results
- the results to be combinedexceptions
- the exceptions to be combined
public byte combine(byte[] results, java.lang.Exception[] exceptions)
results
- the results to be combinedexceptions
- the exceptions to be combined
public char combine(char[] results, java.lang.Exception[] exceptions)
results
- the results to be combinedexceptions
- the exceptions to be combined
public short combine(short[] results, java.lang.Exception[] exceptions)
results
- the results to be combinedexceptions
- the exceptions to be combined
public int combine(int[] results, java.lang.Exception[] exceptions)
results
- the results to be combinedexceptions
- the exceptions to be combined
public long combine(long[] results, java.lang.Exception[] exceptions)
results
- the results to be combinedexceptions
- the exceptions to be combined
public float combine(float[] results, java.lang.Exception[] exceptions)
results
- the results to be combinedexceptions
- the exceptions to be combined
public double combine(double[] results, java.lang.Exception[] exceptions)
results
- the results to be combinedexceptions
- the exceptions to be combined
public java.lang.Object combine(java.lang.Object[] results, java.lang.Exception[] exceptions)
results
- the results to be combinedexceptions
- the exceptions to be combined
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |