public abstract class MathOperationBinary extends Object
Operation |
Output |
|||
|---|---|---|---|---|
|
|
|||
|
|
Input 1 |
Input 2 |
Beginning Index |
Length of Subset |
Operation |
|---|---|---|---|---|
| Well | Well | +/- | +/- | Performs the operation using the values in the two wells |
| Well | Array | +/- | +/- | Performs the operation using the values in the array and the values in the well |
| Well | Collection | +/- | +/- | Performs the operation using the values in the collection and the values in the well |
| Well | Constant | +/- | +/- | Performs the operation using the constant value and each value in the well |
| Set | Set | +/- | +/- | Performs the operation on the values in each matching pair of wells in the two sets |
| Set | Array | +/- | +/- | Performs the operation using the values in the array and the values in each well of the set |
| Set | Collection | +/- | +/- | Performs the operation using the values in the collection and the values in each well of the set |
| Set | Constant | +/- | +/- | Performs the operation using the constant and each value in each well of the set |
| Plate | Plate | +/- | +/- | Performs the operation on the values in each matching pair of wells in the two plates |
| Plate | Array | +/- | +/- | Performs the operation using the values in the array and the values in each well of the plate |
| Plate | Collection | +/- | +/- | Performs the operation using the values in the collection and the values in each well of the plate |
| Plate | Constant | +/- | +/- | Performs the operation using the constant and each value in each well of the plate |
| Stack | Stack | +/- | +/- | Performs the operation on the values in each matching pair of wells in each matching plate in the stack |
| Stack | Array | +/- | +/- | Performs the operation using the values in the array and the values in each well of each plate in the stack |
| Stack | Collection | +/- | +/- | Performs the operation using the values in the collection and the values in each well of each plate in the stack |
| Stack | Constant | +/- | +/- | Performs the operation using the constant and each value in each well of each plate in the stack |
Operations |
|---|
| Addition |
| Subtraction |
| Multiplication |
| Division |
| Modulus |
| Logical AND |
| Logical OR |
| Logical XOR |
| Constructor and Description |
|---|
MathOperationBinary()
Creates a new math operation.
|
| Modifier and Type | Method and Description |
|---|---|
abstract List<Integer> |
calculate(List<Integer> list,
Collection<Integer> collection)
Performs the mathematical operation for the two lists.
|
abstract List<Integer> |
calculate(List<Integer> list,
Collection<Integer> collection,
int begin,
int length)
Performs the mathematical operation for the two lists.
|
abstract List<Integer> |
calculate(List<Integer> list,
int constant)
Performs the mathematical operation for the two lists.
|
abstract List<Integer> |
calculate(List<Integer> list,
int[] array)
Performs the mathematical operation for the two lists.
|
abstract List<Integer> |
calculate(List<Integer> list,
int[] array,
int begin,
int length)
Performs the mathematical operation for the two lists.
|
abstract List<Integer> |
calculate(List<Integer> list1,
List<Integer> list2)
Performs the mathematical operation for the two lists.
|
abstract List<Integer> |
calculate(List<Integer> list1,
List<Integer> list2,
int begin,
int length)
Performs the mathematical operation for the two lists using the values
between the indices.
|
abstract List<Integer> |
calculateStrict(List<Integer> list,
Collection<Integer> collection)
Performs the mathematical operation for the two lists.
|
abstract List<Integer> |
calculateStrict(List<Integer> list,
Collection<Integer> collection,
int begin,
int length)
Performs the mathematical operation for the two lists.
|
abstract List<Integer> |
calculateStrict(List<Integer> list,
int[] array)
Performs the mathematical operation for the two lists.
|
abstract List<Integer> |
calculateStrict(List<Integer> list,
int[] array,
int begin,
int length)
Performs the mathematical operation for the two lists.
|
abstract List<Integer> |
calculateStrict(List<Integer> list1,
List<Integer> list2)
Performs the mathematical operation for the two lists.
|
abstract List<Integer> |
calculateStrict(List<Integer> list1,
List<Integer> list2,
int begin,
int length)
Performs the mathematical operation for the two lists.
|
Plate |
plates(Plate plate,
Collection<Integer> collection)
Returns the result of the mathematical operation.
|
Plate |
plates(Plate plate,
Collection<Integer> collection,
int begin,
int length)
Returns the result of the mathematical operation.
|
Plate |
plates(Plate plate,
int constant)
Returns the result of the mathematical operation.
|
Plate |
plates(Plate plate,
int[] array)
Returns the result of the mathematical operation.
|
Plate |
plates(Plate plate,
int[] array,
int begin,
int length)
Returns the result of the mathematical operation.
|
Plate |
plates(Plate plate1,
Plate plate2)
Returns the result of the mathematical operation.
|
Plate |
plates(Plate plate1,
Plate plate2,
int begin,
int length)
Returns the result of the mathematical operation using the values between
the indices.
|
Plate |
platesStrict(Plate plate,
Collection<Integer> collection)
Returns the result of the mathematical operation.
|
Plate |
platesStrict(Plate plate,
Collection<Integer> collection,
int begin,
int length)
Returns the result of the mathematical operation.
|
Plate |
platesStrict(Plate plate,
int[] array)
Returns the result of the mathematical operation.
|
Plate |
platesStrict(Plate plate,
int[] array,
int begin,
int length)
Returns the result of the mathematical operation.
|
Plate |
platesStrict(Plate plate1,
Plate plate2)
Returns the result of the mathematical operation.
|
Plate |
platesStrict(Plate plate1,
Plate plate2,
int begin,
int length)
Returns the result of the mathematical operation using the values between
the indices.
|
WellSet |
sets(WellSet set,
Collection<Integer> collection)
Returns the result of the mathematical operation.
|
WellSet |
sets(WellSet set,
Collection<Integer> collection,
int begin,
int length)
Returns the result of the mathematical operation.
|
WellSet |
sets(WellSet set,
int constant)
Returns the result of the mathematical operation.
|
WellSet |
sets(WellSet set,
int[] array)
Returns the result of the mathematical operation.
|
WellSet |
sets(WellSet set,
int[] array,
int begin,
int length)
Returns the result of the mathematical operation.
|
WellSet |
sets(WellSet set1,
WellSet set2)
Returns the result of the mathematical operation.
|
WellSet |
sets(WellSet set1,
WellSet set2,
int begin,
int length)
Returns the result of the mathematical operation using the values between
the indices.
|
WellSet |
setsStrict(WellSet set,
Collection<Integer> collection)
Returns the result of the mathematical operation.
|
WellSet |
setsStrict(WellSet set,
Collection<Integer> collection,
int begin,
int length)
Returns the result of the mathematical operation.
|
WellSet |
setsStrict(WellSet set,
int[] array)
Returns the result of the mathematical operation.
|
WellSet |
setsStrict(WellSet set,
int[] array,
int begin,
int length)
Returns the result of the mathematical operation.
|
WellSet |
setsStrict(WellSet set1,
WellSet set2)
Returns the result of the mathematical operation.
|
WellSet |
setsStrict(WellSet set1,
WellSet set2,
int begin,
int length)
Returns the result of the mathematical operation using the values between
the indices.
|
Stack |
stacks(Stack stack,
Collection<Integer> collection)
Returns the result of the mathematical operation.
|
Stack |
stacks(Stack stack,
Collection<Integer> collection,
int begin,
int length)
Returns the result of the mathematical operation.
|
Stack |
stacks(Stack stack,
int constant)
Returns the result of the mathematical operation.
|
Stack |
stacks(Stack stack,
int[] array)
Returns the result of the mathematical operation.
|
Stack |
stacks(Stack stack,
int[] array,
int begin,
int length)
Returns the result of the mathematical operation.
|
Stack |
stacks(Stack stack1,
Stack stack2)
Returns the result of the mathematical operation.
|
Stack |
stacks(Stack stack1,
Stack stack2,
int begin,
int length)
Returns the result of the mathematical operation using the values between
the indices.
|
Stack |
stacksStrict(Stack stack,
Collection<Integer> collection)
Returns the result of the mathematical operation.
|
Stack |
stacksStrict(Stack stack,
Collection<Integer> collection,
int begin,
int length)
Returns the result of the mathematical operation.
|
Stack |
stacksStrict(Stack stack,
int[] array)
Returns the result of the mathematical operation.
|
Stack |
stacksStrict(Stack stack,
int[] array,
int begin,
int length)
Returns the result of the mathematical operation.
|
Stack |
stacksStrict(Stack stack1,
Stack stack2)
Returns the result of the mathematical operation.
|
Stack |
stacksStrict(Stack stack1,
Stack stack2,
int begin,
int length)
Returns the result of the mathematical operation using the values between
the indices.
|
List<Integer> |
wells(Well well,
Collection<Integer> collection)
Returns the result of the mathematical operation.
|
List<Integer> |
wells(Well well,
Collection<Integer> collection,
int begin,
int length)
Returns the result of the mathematical operation.
|
List<Integer> |
wells(Well well,
int constant)
Returns the result of the mathematical operation.
|
List<Integer> |
wells(Well well,
int[] array)
Returns the result of the mathematical operation.
|
List<Integer> |
wells(Well well,
int[] array,
int begin,
int length)
Returns the result of the mathematical operation.
|
List<Integer> |
wells(Well well1,
Well well2)
Returns the result of the mathematical operation.
|
List<Integer> |
wells(Well well1,
Well well2,
int begin,
int length)
Returns the result of the mathematical operation using the data between
the indices.
|
List<Integer> |
wellsStrict(Well well,
Collection<Integer> collection)
Returns the result of the mathematical operation.
|
List<Integer> |
wellsStrict(Well well,
Collection<Integer> collection,
int begin,
int length)
Returns the result of the mathematical operation.
|
List<Integer> |
wellsStrict(Well well,
int[] array)
Returns the result of the mathematical operation.
|
List<Integer> |
wellsStrict(Well well,
int[] array,
int begin,
int length)
Returns the result of the mathematical operation.
|
List<Integer> |
wellsStrict(Well well1,
Well well2)
Returns the result of the mathematical operation.
|
List<Integer> |
wellsStrict(Well well1,
Well well2,
int begin,
int length)
Returns the result of the mathematical operation using the data between
the indices.
|
public List<Integer> wells(Well well1, Well well2)
Well - the first wellWell - the second wellpublic List<Integer> wells(Well well1, Well well2, int begin, int length)
Well - the first wellWell - the second wellint - beginning index of the subsetint - length of the subsetpublic List<Integer> wellsStrict(Well well1, Well well2)
Well - the first wellWell - the second wellpublic List<Integer> wellsStrict(Well well1, Well well2, int begin, int length)
Well - the first wellWell - the second wellint - beginning index of the subsetint - length of the subsetpublic List<Integer> wells(Well well, int constant)
Well - the wellint - constant for operationpublic List<Integer> wells(Well well, int[] array)
Well - the wellint[] - array for the operationpublic List<Integer> wells(Well well, int[] array, int begin, int length)
Well - the wellint[] - array for the operationint - beginning index of subsetint - length of the subsetpublic List<Integer> wells(Well well, Collection<Integer> collection)
Well - the wellCollection - collection for the operationpublic List<Integer> wells(Well well, Collection<Integer> collection, int begin, int length)
Well - the wellCollection - collection for the operationint - beginning index of subsetint - length of the subsetpublic List<Integer> wellsStrict(Well well, int[] array)
Well - the wellint[] - array for the operationpublic List<Integer> wellsStrict(Well well, int[] array, int begin, int length)
Well - the wellint[] - array for the operationint - beginning index of subsetint - length of the subsetpublic List<Integer> wellsStrict(Well well, Collection<Integer> collection)
Well - the wellCollection - collection for the operationpublic List<Integer> wellsStrict(Well well, Collection<Integer> collection, int begin, int length)
Well - the wellCollection - collection for the operationint - beginning index of subsetint - length of the subsetpublic Plate plates(Plate plate1, Plate plate2)
Plate - the first platePlate - the second platepublic Plate plates(Plate plate1, Plate plate2, int begin, int length)
Plate - the first platePlate - the second plateint - beginning index of the subsetint - length of the subsetpublic Plate platesStrict(Plate plate1, Plate plate2)
Plate - the first platePlate - the second platepublic Plate platesStrict(Plate plate1, Plate plate2, int begin, int length)
Plate - the first platePlate - the second plateint - beginning index of the subsetint - length of the subsetpublic Plate plates(Plate plate, int constant)
Plate - the plateint - constant for operationpublic Plate plates(Plate plate, int[] array)
Plate - the plateint[] - array for the operationpublic Plate plates(Plate plate, int[] array, int begin, int length)
Plate - the plateint[] - array for the operationint - beginning index of subsetint - length of the subsetpublic Plate plates(Plate plate, Collection<Integer> collection)
Plate - the plateCollection - collection for the operationpublic Plate plates(Plate plate, Collection<Integer> collection, int begin, int length)
Plate - the plateCollection - collection for the operationint - beginning index of subsetint - length of the subsetpublic Plate platesStrict(Plate plate, int[] array)
Plate - the plateint[] - array for the operationpublic Plate platesStrict(Plate plate, int[] array, int begin, int length)
Plate - the plateint[] - array for the operationint - beginning index of subsetint - length of the subsetpublic Plate platesStrict(Plate plate, Collection<Integer> collection)
Plate - the plateCollection - collection for the operationpublic Plate platesStrict(Plate plate, Collection<Integer> collection, int begin, int length)
Plate - the plateCollection - collection for the operationint - beginning index of subsetint - length of the subsetpublic WellSet sets(WellSet set1, WellSet set2)
WellSet - the first setWellSet - the second setpublic WellSet sets(WellSet set1, WellSet set2, int begin, int length)
WellSet - the first setWellSet - the second setint - beginning index of the subsetint - length of the subsetpublic WellSet setsStrict(WellSet set1, WellSet set2)
WellSet - the first setWellSet - the second setpublic WellSet setsStrict(WellSet set1, WellSet set2, int begin, int length)
WellSet - the first setWellSet - the second setint - beginning index of the subsetint - length of the subsetpublic WellSet sets(WellSet set, int constant)
WellSet - the well setint - constant for operationpublic WellSet sets(WellSet set, int[] array)
WellSet - the well setint[] - array for the operationpublic WellSet sets(WellSet set, int[] array, int begin, int length)
WellSet - the well setint[] - array for the operationint - beginning index of subsetint - length of the subsetpublic WellSet sets(WellSet set, Collection<Integer> collection)
WellSet - the well setCollection - collection for the operationpublic WellSet sets(WellSet set, Collection<Integer> collection, int begin, int length)
WellSet - the well setCollection - collection for the operationint - beginning index of subsetint - length of the subsetpublic WellSet setsStrict(WellSet set, int[] array)
WellSet - the well setint[] - array for the operationpublic WellSet setsStrict(WellSet set, int[] array, int begin, int length)
WellSet - the well setint[] - array for the operationint - beginning index of subsetint - length of the subsetpublic WellSet setsStrict(WellSet set, Collection<Integer> collection)
WellSet - the well setCollection - collection for the operationpublic WellSet setsStrict(WellSet set, Collection<Integer> collection, int begin, int length)
WellSet - the well setCollection - collection for the operationint - beginning index of subsetint - length of the subsetpublic Stack stacks(Stack stack1, Stack stack2)
Stack - the first stackStack - the second stackpublic Stack stacks(Stack stack1, Stack stack2, int begin, int length)
Stack - the first stackStack - the second stackint - beginning index of the subsetint - length of the subsetpublic Stack stacksStrict(Stack stack1, Stack stack2)
Stack - the first stackStack - the second stackpublic Stack stacksStrict(Stack stack1, Stack stack2, int begin, int length)
Stack - the first stackStack - the second stackint - beginning index of the subsetint - length of the subsetpublic Stack stacks(Stack stack, int constant)
Stack - the stackint - constant for operationpublic Stack stacks(Stack stack, int[] array)
Stack - the stackint[] - array for the operationpublic Stack stacks(Stack stack, int[] array, int begin, int length)
Stack - the stackint[] - array for the operationint - beginning index of subsetint - length of the subsetpublic Stack stacks(Stack stack, Collection<Integer> collection)
Stack - the stackCollection - collection for the operationpublic Stack stacks(Stack stack, Collection<Integer> collection, int begin, int length)
Stack - the stackCollection - collection for the operationint - beginning index of subsetint - length of the subsetpublic Stack stacksStrict(Stack stack, int[] array)
Stack - the stackint[] - array for the operationpublic Stack stacksStrict(Stack stack, int[] array, int begin, int length)
Stack - the stackint[] - array for the operationint - beginning index of subsetint - length of the subsetpublic Stack stacksStrict(Stack stack, Collection<Integer> collection)
Stack - the stackCollection - collection for the operationpublic Stack stacksStrict(Stack stack, Collection<Integer> collection, int begin, int length)
Stack - the stackCollection - collection for the operationint - beginning index of subsetint - length of the subsetpublic abstract List<Integer> calculate(List<Integer> list1, List<Integer> list2)
List - the first listList - the second listpublic abstract List<Integer> calculateStrict(List<Integer> list1, List<Integer> list2)
List - the first listList - the second listpublic abstract List<Integer> calculate(List<Integer> list1, List<Integer> list2, int begin, int length)
List - the first listList - the second listint - the beginning index of the subsetint - the length of the subsetpublic abstract List<Integer> calculateStrict(List<Integer> list1, List<Integer> list2, int begin, int length)
List - the first listList - the second listint - the beginning index of the subsetint - the length of the subsetpublic abstract List<Integer> calculate(List<Integer> list, int constant)
List - the first listint - the constant valuepublic abstract List<Integer> calculate(List<Integer> list, int[] array)
List - the first listint[] - the array valuespublic abstract List<Integer> calculate(List<Integer> list, int[] array, int begin, int length)
List - the first listint[] - the array valuesint - beginning index of the subsetint - length of the subsetpublic abstract List<Integer> calculate(List<Integer> list, Collection<Integer> collection)
List - the first listCollection - the array valuespublic abstract List<Integer> calculate(List<Integer> list, Collection<Integer> collection, int begin, int length)
List - the first listCollection - the array valuesint - beginning index of the subsetint - length of the subsetpublic abstract List<Integer> calculateStrict(List<Integer> list, int[] array)
List - the first listint[] - the array valuespublic abstract List<Integer> calculateStrict(List<Integer> list, int[] array, int begin, int length)
List - the first listint[] - the array valuesint - beginning index of the subsetint - length of the subsetpublic abstract List<Integer> calculateStrict(List<Integer> list, Collection<Integer> collection)
List - the first listCollection - the array valuespublic abstract List<Integer> calculateStrict(List<Integer> list, Collection<Integer> collection, int begin, int length)
List - the first listCollection - the array valuesint - beginning index of the subsetint - length of the subsetCopyright © 2017. All rights reserved.