be.SIRAPRISE.typeimplementations
Class FLOOR_INT_INT

java.lang.Object
  extended by be.SIRAPRISE.typeimplementations.FLOOR_INT_INT
All Implemented Interfaces:
OperatorImplementation, OperatorImplementation_V0104

public final class FLOOR_INT_INT
extends java.lang.Object
implements OperatorImplementation_V0104

FLOOR returns the biggest integer that is smaller than or equal to the first argument and an exact multiple of the second. FLOOR(5,2) = 4 FLOOR(6,2) = 6 FLOOR(-5,2) = -6 FLOOR(-6,2) = -6 FLOOR(a,b) = FLOOR(a,-b)

Author:
Erwin

Constructor Summary
FLOOR_INT_INT()
           
 
Method Summary
 ValueBuffer executeOperator(java.util.LinkedList<ValueBuffer> args)
          FLOOR returns the biggest integer that is smaller than or equal to the first argument and an exact multiple of the second.
 java.lang.String[] getArgumentTypeNames()
          FLOOR takes two arguments, both of type INT
 java.lang.String getReturnTypeName()
          The return type is INT
 boolean isDeterministic()
          Tells whether the operator is deterministic with respect to the arguments of its invocations.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FLOOR_INT_INT

public FLOOR_INT_INT()
Method Detail

executeOperator

public ValueBuffer executeOperator(java.util.LinkedList<ValueBuffer> args)
FLOOR returns the biggest integer that is smaller than or equal to the first argument and an exact multiple of the second. FLOOR(5,2) = 4 FLOOR(6,2) = 6 FLOOR(-5,2) = -6 FLOOR(-6,2) = -6 FLOOR(a,b) = FLOOR(a,-b)

Specified by:
executeOperator in interface OperatorImplementation
Parameters:
args - the argument list. The list must hold as many ValueBuffer objects as there are arguments to the operator, and each ValueBuffer object holds a value for some argument to the operator. ValueBuffer objects on the list must appear in the same order as the operator argument declarations.
Returns:
A ValueBuffer object holding the result value of the operator execution in internal format.

getArgumentTypeNames

public java.lang.String[] getArgumentTypeNames()
FLOOR takes two arguments, both of type INT

Specified by:
getArgumentTypeNames in interface OperatorImplementation
Returns:
The names of the argument types

getReturnTypeName

public java.lang.String getReturnTypeName()
The return type is INT

Specified by:
getReturnTypeName in interface OperatorImplementation
Returns:
the name of the type of the return value

isDeterministic

public boolean isDeterministic()
Description copied from interface: OperatorImplementation_V0104
Tells whether the operator is deterministic with respect to the arguments of its invocations. An operator is deterministic if and only if for any two distinct invocations, if all the argument values are the same, then the result value returned will also be the same. An example of a nondeterministic operators is RANDOM().

Specified by:
isDeterministic in interface OperatorImplementation_V0104
Returns:
true if the operator is deterministic.