public abstract class MathOperationShift extends Object
Operations |
|---|
| Left Shift |
| Right Shift (Arithmetic/Signed) |
| Right Shift (Logical/Unsigned) |
| Constructor and Description |
|---|
MathOperationShift()
Creates a new math operation.
|
| Modifier and Type | Method and Description |
|---|---|
abstract List<Integer> |
calculate(List<Integer> list,
int n)
Performs the mathematical operation for the two lists.
|
abstract List<Integer> |
calculate(List<Integer> list,
int n,
int begin,
int length)
Performs the mathematical operation for the two lists using the values
between the indices.
|
Plate |
plates(Plate plate,
int n)
Returns the result of the mathematical operation.
|
Plate |
plates(Plate plate,
int n,
int begin,
int length)
Returns the result of the mathematical operation using the values between
the indices.
|
WellSet |
sets(WellSet set,
int n)
Returns the result of the mathematical operation.
|
WellSet |
sets(WellSet set,
int n,
int begin,
int length)
Returns the result of the mathematical operation using the values between
the indices.
|
Stack |
stacks(Stack stack,
int n)
Returns the result of the mathematical operation.
|
Stack |
stacks(Stack stack,
int n,
int begin,
int length)
Returns the result of the mathematical operation.
|
List<Integer> |
wells(Well well,
int n)
Returns the result of the mathematical operation.
|
List<Integer> |
wells(Well well,
int n,
int begin,
int length)
Returns the result of the mathematical operation using the values between
the indices.
|
public List<Integer> wells(Well well, int n)
Well - the wellint - number of bits to shiftpublic List<Integer> wells(Well well, int n, int begin, int length)
Well - the wellint - number of bits to shiftint - beginning index of the subsetint - length of the subsetpublic Plate plates(Plate plate, int n)
Plate - the plateint - number of bits to shiftpublic Plate plates(Plate plate, int n, int begin, int length)
Plate - the plateint - number of bits to shiftint - beginning index of the subsetint - length of the subsetpublic WellSet sets(WellSet set, int n)
WellSet - well the well setint - number of bits to shiftpublic WellSet sets(WellSet set, int n, int begin, int length)
WellSet - the first plateint - number of bits to shiftint - beginning index of the subsetint - length of the subsetpublic Stack stacks(Stack stack, int n)
Stack - the stackint - number of bits to shiftpublic Stack stacks(Stack stack, int n, int begin, int length)
Stack - the stackint - number of bits to shiftint - beginning index of the sub setint - length of the subsetpublic abstract List<Integer> calculate(List<Integer> list, int n)
List - the first listint - number of bits to shiftpublic abstract List<Integer> calculate(List<Integer> list, int n, int begin, int length)
List - the first listint - number of bits to shiftCopyright © 2017. All rights reserved.