|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ValueBuffer | |
---|---|
be.SIRAPRISE.server | |
be.SIRAPRISE.typeimplementations |
Uses of ValueBuffer in be.SIRAPRISE.server |
---|
Methods in be.SIRAPRISE.server that return ValueBuffer | |
---|---|
ValueBuffer |
IntervalTypeImplementation.getComponentValue(java.lang.String componentName,
ScalarValueBuffer valueBuffer)
|
ValueBuffer |
DbmsTupleImplementation.getComponentValue(java.lang.String componentName,
ScalarValueBuffer valueBuffer)
Deprecated. |
ValueBuffer |
DbmsRelationImplementation.getComponentValue(java.lang.String componentName,
ScalarValueBuffer valueBuffer)
|
ValueBuffer |
DbmsTupleImplementation.getComponentValue(java.lang.String componentName,
ValueBuffer valueBuffer)
Deprecated. |
ValueBuffer |
IntervalTypeImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsTupleImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
Deprecated. |
ValueBuffer |
DbmsRelationImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
IntervalTypeImplementation.valueFromExternalRepresentation(java.lang.String value)
|
ValueBuffer |
DbmsTupleImplementation.valueFromExternalRepresentation(java.lang.String value)
Deprecated. |
ValueBuffer |
DbmsRelationImplementation.valueFromExternalRepresentation(java.lang.String value)
|
ValueBuffer |
IntervalTypeImplementation.valueFromExternalRepresentation(java.lang.String value,
int maximumLogicalLengthAllowed)
|
ValueBuffer |
DbmsTupleImplementation.valueFromExternalRepresentation(java.lang.String value,
int maximumLogicalLengthAllowed)
Deprecated. |
ValueBuffer |
DbmsRelationImplementation.valueFromExternalRepresentation(java.lang.String value,
int maximumLogicalLengthAllowed)
|
Methods in be.SIRAPRISE.server with parameters of type ValueBuffer | |
---|---|
ValueBuffer |
DbmsTupleImplementation.getComponentValue(java.lang.String componentName,
ValueBuffer valueBuffer)
Deprecated. |
java.lang.String |
IntervalTypeImplementation.valueToEscapedExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsTupleImplementation.valueToEscapedExternalRepresentation(ValueBuffer valueBuffer)
Deprecated. |
java.lang.String |
DbmsRelationImplementation.valueToEscapedExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
IntervalTypeImplementation.valueToExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsTupleImplementation.valueToExternalRepresentation(ValueBuffer valueBuffer)
Deprecated. |
java.lang.String |
DbmsRelationImplementation.valueToExternalRepresentation(ValueBuffer valueBuffer)
|
Method parameters in be.SIRAPRISE.server with type arguments of type ValueBuffer | |
---|---|
ValueBuffer |
IntervalTypeImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsTupleImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
Deprecated. |
ValueBuffer |
DbmsRelationImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
Uses of ValueBuffer in be.SIRAPRISE.typeimplementations |
---|
Subclasses of ValueBuffer in be.SIRAPRISE.typeimplementations | |
---|---|
class |
RelationBuffer
A RelationBuffer is the ValueBuffer type for relation values. |
class |
ScalarValueBuffer
A ScalarValueBuffer is the class that can be used as a container for any sort of scalar value. |
Methods in be.SIRAPRISE.typeimplementations that return ValueBuffer | |
---|---|
ValueBuffer |
XOR_BOOLEAN_BOOLEAN.executeOperator(java.util.LinkedList<ValueBuffer> args)
|
ValueBuffer |
UPPERCASE_STRING.executeOperator(java.util.LinkedList<ValueBuffer> args)
UPPERCASE() returns the input argument, converted to uppercase. |
ValueBuffer |
TOLONG_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the LONG value that represents the same number as the given INT argument. |
ValueBuffer |
TOINT_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the LONG value that represents the same number as the given INT argument. |
ValueBuffer |
TOFLOAT_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the LONG value that represents the same number as the given FLOAT argument. |
ValueBuffer |
TOFLOAT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the INT value that represents the same number as the given FLOAT argument. |
ValueBuffer |
TAN_ANGLE.executeOperator(java.util.LinkedList<ValueBuffer> args)
TAN returns the tangent of the given ANGLE value |
ValueBuffer |
SUB_TIMEOFDAY_TIMEOFDAY.executeOperator(java.util.LinkedList<ValueBuffer> args)
SUB returns the difference between two TIMEOFDAY values as another TIMEOFDAY value. |
ValueBuffer |
SUB_LONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
SUB returns the difference between the first argument (the minuend) and the second (the subrahend) |
ValueBuffer |
SUB_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
SUB returns the difference between the first argument (the minuend) and the second (the subrahend) |
ValueBuffer |
SUB_FLOAT_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
SUB returns the difference between the first argument (the minuend) and the second (the subrahend) |
ValueBuffer |
SUBSTR_STRING_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
SUBSTR(s,i,j) returns the string that appears in s starting at position i, and ends at the position immeidately before j. i is in the range [1-(LENGTH(s)+1)]. j is in the range [i-(LENGTH(s)+1)]. |
ValueBuffer |
SUBSTR_STRING_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
SUBSTR(s,i) returns the string that appears in s starting at position i. i is in the range [1-(LENGTH(s)+1)]. |
ValueBuffer |
SQRT_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
SQRT returns the square root of the given FLOAT value |
ValueBuffer |
SIN_ANGLE.executeOperator(java.util.LinkedList<ValueBuffer> args)
SIN returns the sine of the angle value passed as the argument |
ValueBuffer |
SEC_ANGLE.executeOperator(java.util.LinkedList<ValueBuffer> args)
SECANT returns the secant, i.e. the reciprocal of the cosine, of the angle given as argument value |
ValueBuffer |
ROUND_FLOAT_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The float rounding operator returns the FLOAT value that is an exact multiple of the second argument (the rounding unit), and for which the absolute value of the difference with the first argument (the number to be rounded) is minimal. |
ValueBuffer |
PRIORLONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
The PRIORLONG operator returns the LONG value that is one less than the given argument. |
ValueBuffer |
PRIORINT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The PRIORINT operator returns the INT value that is one less than the given argument. |
ValueBuffer |
PRIORDATE_DATE.executeOperator(java.util.LinkedList<ValueBuffer> args)
The PRIORDATE(DATE) operator returns the DATE value that is one day before the argument value. |
ValueBuffer |
PLUS_TIMEOFDAY_TIMEOFDAY.executeOperator(java.util.LinkedList<ValueBuffer> args)
PLUS returns the sum of the two given TIMEOFDAY values |
ValueBuffer |
PLUS_LONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
The PLUS(LONG,LONG) operator returns the LONG value that is the sum of the two arguments. |
ValueBuffer |
PLUS_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The PLUS(INT,INT) operator returns the INT value that is the sum of the two arguments. |
ValueBuffer |
PLUS_FLOAT_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
PLUS returns the sum of the two given arguments. |
ValueBuffer |
PLUS_DECIMAL_DECIMAL.executeOperator(java.util.LinkedList<ValueBuffer> args)
Deprecated. PLUS returns the result obtained by adding both operands together |
ValueBuffer |
PLUS_AVERAGE_AVERAGE.executeOperator(java.util.LinkedList<ValueBuffer> args)
The average addition operator returns the AVERAGE value (VALUE((c1 * b1) + (c2 * b2) / (c1 + c2)))COUNT(c1 + c2)) |
ValueBuffer |
PI.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the FLOAT constant 3.1415926535... |
ValueBuffer |
OR_BOOLEAN_BOOLEAN.executeOperator(java.util.LinkedList<ValueBuffer> args)
|
ValueBuffer |
OperatorImplementation.executeOperator(java.util.LinkedList<ValueBuffer> args)
Performs the actual logic of the operator. |
ValueBuffer |
NOT_BOOLEAN.executeOperator(java.util.LinkedList<ValueBuffer> args)
NOT returns true if the argument is false and false if the argument is true |
ValueBuffer |
NEXTLONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
The NEXTLONG(LONG) operator returns the LONG value that is one higher than the argument value. |
ValueBuffer |
NEXTINT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The NEXTINT(INT) operator returns the INT value that is one higher than the argument value. |
ValueBuffer |
NEXTDATE_DATE.executeOperator(java.util.LinkedList<ValueBuffer> args)
The NEXTDATE(DATE) operator returns the DATE value that is one day after the argument value. |
ValueBuffer |
MULT_LONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
MULT returns the arithmetic product of its two argument values |
ValueBuffer |
MULT_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
MULT returns the arithmetic product of its two argument values |
ValueBuffer |
MULT_FLOAT_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
MULT returns the arithmetic product of its argument values |
ValueBuffer |
MOD_LONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
MOD(a,b) returns the number c such that a = (a / b) + c. |
ValueBuffer |
MOD_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
MOD(a,b) returns the number c such that a = (a / b) + c. |
ValueBuffer |
MIN_TIMEOFDAY_TIMEOFDAY.executeOperator(java.util.LinkedList<ValueBuffer> args)
MIN returns the lowest of the two given TIMEOFDAY values |
ValueBuffer |
MIN_LONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
MIN returns the lowest of the two given argument values |
ValueBuffer |
MIN_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
MIN returns the lowest of the two given argument values |
ValueBuffer |
MIN_FLOAT_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
MIN returns the lowest of the two given argument values |
ValueBuffer |
MIN_DATE_DATE.executeOperator(java.util.LinkedList<ValueBuffer> args)
MIN returns the lowest of the two given DATE values |
ValueBuffer |
MAX_TIMEOFDAY_TIMEOFDAY.executeOperator(java.util.LinkedList<ValueBuffer> args)
MAX returns the highest of the two given TIMEOFDAY values |
ValueBuffer |
MAX_LONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
MAX returns the highest of the two given argument values |
ValueBuffer |
MAX_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
MAX returns the highest of the two given argument values |
ValueBuffer |
MAX_FLOAT_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
MAX returns the highest of the given two argument values |
ValueBuffer |
MAX_DATE_DATE.executeOperator(java.util.LinkedList<ValueBuffer> args)
MAX returns the highest of the two dates given |
ValueBuffer |
MATCHES_STRING_STRING.executeOperator(java.util.LinkedList<ValueBuffer> args)
MATCHES(s,p) returns true if the string s matches the regular expression p |
ValueBuffer |
LOWERCASE_STRING.executeOperator(java.util.LinkedList<ValueBuffer> args)
LOWERCASE() returns the argument, converted to lowercase |
ValueBuffer |
LN_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
LN returns the natural logarithm of the argument |
ValueBuffer |
LessThanOperatorImplementation.executeOperator(java.util.LinkedList<ValueBuffer> args)
|
ValueBuffer |
LessOrEqualOperatorImplementation.executeOperator(java.util.LinkedList<ValueBuffer> args)
|
ValueBuffer |
LENGTH_LONGINTERVAL.executeOperator(java.util.LinkedList<ValueBuffer> args)
LENGTH returns the length of the interval value in the argument |
ValueBuffer |
LENGTH_INTINTERVAL.executeOperator(java.util.LinkedList<ValueBuffer> args)
LENGTH returns the length of the interval value in the argument |
ValueBuffer |
LASTLONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
LASTLONG returns the highest supported LONG value |
ValueBuffer |
LASTINT.executeOperator(java.util.LinkedList<ValueBuffer> args)
LASTINT returns the highest supported INT value |
ValueBuffer |
LASTDATE.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the highest supported DATE value |
ValueBuffer |
GT_TIMEOFDAY_TIMEOFDAY.executeOperator(java.util.LinkedList<ValueBuffer> args)
GT returns true if the first operand compares higher than the second, and false otherwise |
ValueBuffer |
GT_LONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
GT returns true if the first operand compares higher than the second, and false otherwise |
ValueBuffer |
GT_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
GT returns true if the first operand compares higher than the second, and false otherwise |
ValueBuffer |
GT_FOO_FOO.executeOperator(java.util.LinkedList<ValueBuffer> args)
GT returns true if the first operand compares higher than the second, and false otherwise |
ValueBuffer |
GT_FLOAT_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
GT returns true if the first operand compares higher than the second, and false otherwise |
ValueBuffer |
GT_DECIMAL_DECIMAL.executeOperator(java.util.LinkedList<ValueBuffer> args)
Deprecated. GT returns true if the first operand compares higher than the second, and false otherwise |
ValueBuffer |
GT_DATE_DATE.executeOperator(java.util.LinkedList<ValueBuffer> args)
GT returns true if the first operand compares higher than the second, and false otherwise |
ValueBuffer |
GT_ANGLE_ANGLE.executeOperator(java.util.LinkedList<ValueBuffer> args)
GT returns true if the first operand compares higher than the second, and false otherwise |
ValueBuffer |
GreaterOrEqualOperatorImplementation.executeOperator(java.util.LinkedList<ValueBuffer> args)
|
ValueBuffer |
FLOOR_LONG_LONG.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. |
ValueBuffer |
FLOOR_INT_INT.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. |
ValueBuffer |
FIRSTLONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
FIRSTLONG returns the lowest supported LONG value |
ValueBuffer |
FIRSTINT.executeOperator(java.util.LinkedList<ValueBuffer> args)
FIRSTINT returns the lowest supported INT value |
ValueBuffer |
FIRSTDATE.executeOperator(java.util.LinkedList<ValueBuffer> args)
FIRSTDATE returns the lowest supported DATE value |
ValueBuffer |
EXP_FLOAT_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
EXP returns the value of a^b |
ValueBuffer |
EXP_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
EXP returns the value of e^x |
ValueBuffer |
EQ_RELATION_RELATION.executeOperator(java.util.LinkedList<ValueBuffer> args)
|
ValueBuffer |
EQ_BOOLEAN_BOOLEAN.executeOperator(java.util.LinkedList<ValueBuffer> args)
|
ValueBuffer |
ENDSWITH_STRING_STRING.executeOperator(java.util.LinkedList<ValueBuffer> args)
ENDSWITH returns a truth value indicating whether or not the first argument's ending sequence of tokens is identical to the second argument's complete token sequence. |
ValueBuffer |
ENDSWITH_NAME_NAME.executeOperator(java.util.LinkedList<ValueBuffer> args)
ENDSWITH operator returns a truth-value indicating whether the first argument's ending sequence of tokens is identical to the second argument's complete sequence of tokens. |
ValueBuffer |
DIV_LONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
DIV returns the result of dividing the first LONG argument by the second. |
ValueBuffer |
DIV_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
DIV returns the result of dividing the first INT argument by the second. |
ValueBuffer |
DIV_FLOAT_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
FLOAT division returns the result of dividing the two arguments by one another. |
ValueBuffer |
DATESHIFT_DATE_INT_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The DATESHIFT operator computes a date that is a given quantity of days, months, years away from a given date |
ValueBuffer |
COTAN_ANGLE.executeOperator(java.util.LinkedList<ValueBuffer> args)
COTAN returns the cotangent of its argument |
ValueBuffer |
COS_ANGLE.executeOperator(java.util.LinkedList<ValueBuffer> args)
COS returns the cosine of its argument. |
ValueBuffer |
COSEC_ANGLE.executeOperator(java.util.LinkedList<ValueBuffer> args)
COSEC returns the cosecant of the argument |
ValueBuffer |
CONCAT_STRING_STRING.executeOperator(java.util.LinkedList<ValueBuffer> args)
CONCAT returns the result of appending the second STRING argument to the first. |
ValueBuffer |
CEIL_LONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
CEIL returns the smallest integer that is higher than or equal to the first argument and an exact multiple of the second. |
ValueBuffer |
CEIL_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
CEIL returns the smallest integer that is higher than or equal to the first argument and an exact multiple of the second. |
ValueBuffer |
BEGINSWITH_STRING_STRING.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns true if the first argument starts with all the characters of the second argument. |
ValueBuffer |
BEGINSWITH_NAME_NAME.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns true if the first argument starts with all the characters of the second argument. |
ValueBuffer |
ATAN_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the ANGLE value (in the range -PI/2 - PI/2) to which the argument is the tangent. |
ValueBuffer |
ASIN_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the ANGLE value (in the range -PI/2 - PI/2) to which the argument is the sine. |
ValueBuffer |
ASEC_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the ANGLE value (in the range 0-PI) to which the argument is the secant. |
ValueBuffer |
AND_BOOLEAN_BOOLEAN.executeOperator(java.util.LinkedList<ValueBuffer> args)
|
ValueBuffer |
ACOTAN_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the ANGLE value (in the range -PI/2 - PI/2) to which the argument is the cotangent |
ValueBuffer |
ACOS_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the ANGLE value (in the range 0-PI) such that the argument is the cosine of this angle |
ValueBuffer |
ACOSEC_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
Returns the ANGLE value (in the range -PI/2 - PI/2) to which the argument is the cosecant. |
ValueBuffer |
ABS_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the absolute value of the argument. |
ValueBuffer |
ABS_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the absolute value of its argument. |
ValueBuffer |
ABS_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the absolute value of the argument. |
static ValueBuffer |
DbmsAngleImplementation.getAngleValuebuffer(int degrees,
int minutes,
double seconds)
Gets A ValueBuffer holding the given value |
static ValueBuffer |
DbmsAverageImplementation.getAverageValueBuffer(int count,
double value)
Gets A ValueBuffer holding the given value |
static ValueBuffer |
DbmsAverageImplementation.getAverageValueBufferWithoutException(int count,
double value)
Gets A ValueBuffer holding the given value |
ValueBuffer |
PossRepImplementation.getComponentValue(java.lang.String componentName,
ScalarValueBuffer valueBuffer)
"Extracts" a possrep component value out of a value of the type |
ValueBuffer |
DbmsTimeofdayImplementation.getComponentValue(java.lang.String componentName,
ScalarValueBuffer valueBuffer)
|
ValueBuffer |
DbmsStringImplementation.getComponentValue(java.lang.String componentName,
ScalarValueBuffer valueBuffer)
|
ValueBuffer |
DbmsNameImplementation.getComponentValue(java.lang.String componentName,
ScalarValueBuffer valueBuffer)
|
ValueBuffer |
DbmsLongImplementation.getComponentValue(java.lang.String componentName,
ScalarValueBuffer valueBuffer)
|
ValueBuffer |
DbmsIntImplementation.getComponentValue(java.lang.String componentName,
ScalarValueBuffer valueBuffer)
|
ValueBuffer |
DbmsFooImplementation.getComponentValue(java.lang.String componentName,
ScalarValueBuffer valueBuffer)
|
ValueBuffer |
DbmsFloatImplementation.getComponentValue(java.lang.String componentName,
ScalarValueBuffer valueBuffer)
|
ValueBuffer |
DbmsFilenameImplementation.getComponentValue(java.lang.String componentName,
ScalarValueBuffer valueBuffer)
|
ValueBuffer |
DbmsDecimalImplementation.getComponentValue(java.lang.String componentName,
ScalarValueBuffer valueBuffer)
Deprecated. |
ValueBuffer |
DbmsDateImplementation.getComponentValue(java.lang.String componentName,
ScalarValueBuffer valueBuffer)
|
ValueBuffer |
DbmsCharImplementation.getComponentValue(java.lang.String componentName,
ScalarValueBuffer valueBuffer)
|
ValueBuffer |
DbmsBooleanImplementation.getComponentValue(java.lang.String componentName,
ScalarValueBuffer valueBuffer)
|
ValueBuffer |
DbmsBitsImplementation.getComponentValue(java.lang.String componentName,
ScalarValueBuffer valueBuffer)
|
ValueBuffer |
DbmsBarImplementation.getComponentValue(java.lang.String componentName,
ScalarValueBuffer valueBuffer)
|
ValueBuffer |
DbmsAverageImplementation.getComponentValue(java.lang.String componentName,
ScalarValueBuffer valueBuffer)
|
ValueBuffer |
DbmsAngleImplementation.getComponentValue(java.lang.String componentName,
ScalarValueBuffer valueBuffer)
|
ValueBuffer |
PossRepImplementation14.getComponentValue(java.lang.String componentName,
ValueBuffer valueBuffer)
"Extracts" a possrep component value out of a value of the type |
static ValueBuffer |
DbmsFooImplementation.getFooValuebuffer(double x,
double y)
Gets A ValueBuffer holding the given value |
ValueBuffer |
PossRepImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
Returns a ValueBuffer holding the value of the type that this PossRepImplementation is for, and that corresponds to the component values given in the componentValueMap argument. |
ValueBuffer |
DbmsTimeofdayImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsStringImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsNameImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsLongImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsIntImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsFooImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsFloatImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsFilenameImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsDecimalImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
Deprecated. |
ValueBuffer |
DbmsDateImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsCharImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsBooleanImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsBitsImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsBarImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsAverageImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsAngleImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
PossRepImplementation.valueFromExternalRepresentation(java.lang.String value)
Convert a value of this possrep's type to internal format. |
ValueBuffer |
DbmsTimeofdayImplementation.valueFromExternalRepresentation(java.lang.String value)
|
ValueBuffer |
DbmsStringImplementation.valueFromExternalRepresentation(java.lang.String value)
|
ValueBuffer |
DbmsNameImplementation.valueFromExternalRepresentation(java.lang.String value)
|
ValueBuffer |
DbmsLongImplementation.valueFromExternalRepresentation(java.lang.String value)
|
ValueBuffer |
DbmsIntImplementation.valueFromExternalRepresentation(java.lang.String value)
|
ValueBuffer |
DbmsFooImplementation.valueFromExternalRepresentation(java.lang.String value)
|
ValueBuffer |
DbmsFloatImplementation.valueFromExternalRepresentation(java.lang.String value)
|
ValueBuffer |
DbmsFilenameImplementation.valueFromExternalRepresentation(java.lang.String value)
|
ValueBuffer |
DbmsDecimalImplementation.valueFromExternalRepresentation(java.lang.String value)
Deprecated. |
ValueBuffer |
DbmsDateImplementation.valueFromExternalRepresentation(java.lang.String value)
|
ValueBuffer |
DbmsCharImplementation.valueFromExternalRepresentation(java.lang.String value)
|
ValueBuffer |
DbmsBooleanImplementation.valueFromExternalRepresentation(java.lang.String value)
|
ValueBuffer |
DbmsBitsImplementation.valueFromExternalRepresentation(java.lang.String value)
|
ValueBuffer |
DbmsBarImplementation.valueFromExternalRepresentation(java.lang.String value)
|
ValueBuffer |
DbmsAverageImplementation.valueFromExternalRepresentation(java.lang.String value)
|
ValueBuffer |
DbmsAngleImplementation.valueFromExternalRepresentation(java.lang.String value)
|
ValueBuffer |
PossRepImplementation.valueFromExternalRepresentation(java.lang.String value,
int maximumLogicalLengthAllowed)
Converts a value of this type from external to internal format, given a specified maximum allowable logical size for the value to be returned. |
ValueBuffer |
DbmsTimeofdayImplementation.valueFromExternalRepresentation(java.lang.String value,
int maximumLogicalLengthAllowed)
|
ValueBuffer |
DbmsStringImplementation.valueFromExternalRepresentation(java.lang.String value,
int maximumLogicalLengthAllowed)
|
ValueBuffer |
DbmsNameImplementation.valueFromExternalRepresentation(java.lang.String value,
int maximumLogicalLengthAllowed)
|
ValueBuffer |
DbmsLongImplementation.valueFromExternalRepresentation(java.lang.String value,
int maximumLogicalLengthAllowed)
|
ValueBuffer |
DbmsIntImplementation.valueFromExternalRepresentation(java.lang.String value,
int maximumLogicalLengthAllowed)
|
ValueBuffer |
DbmsFooImplementation.valueFromExternalRepresentation(java.lang.String value,
int maximumLogicalLengthAllowed)
|
ValueBuffer |
DbmsFloatImplementation.valueFromExternalRepresentation(java.lang.String value,
int maximumLogicalLengthAllowed)
|
ValueBuffer |
DbmsFilenameImplementation.valueFromExternalRepresentation(java.lang.String value,
int maximumLogicalLengthAllowed)
|
ValueBuffer |
DbmsDecimalImplementation.valueFromExternalRepresentation(java.lang.String value,
int maximumLogicalLengthAllowed)
Deprecated. |
ValueBuffer |
DbmsDateImplementation.valueFromExternalRepresentation(java.lang.String value,
int maximumLogicalLengthAllowed)
|
ValueBuffer |
DbmsCharImplementation.valueFromExternalRepresentation(java.lang.String value,
int maximumLogicalLengthAllowed)
|
ValueBuffer |
DbmsBooleanImplementation.valueFromExternalRepresentation(java.lang.String value,
int maximumLogicalLengthAllowed)
|
ValueBuffer |
DbmsBitsImplementation.valueFromExternalRepresentation(java.lang.String value,
int maximumLogicalLengthAllowed)
|
ValueBuffer |
DbmsBarImplementation.valueFromExternalRepresentation(java.lang.String value,
int maximumLogicalLengthAllowed)
|
ValueBuffer |
DbmsAverageImplementation.valueFromExternalRepresentation(java.lang.String value,
int maximumLogicalLengthAllowed)
|
ValueBuffer |
DbmsAngleImplementation.valueFromExternalRepresentation(java.lang.String value,
int maximumLogicalLengthAllowed)
|
Methods in be.SIRAPRISE.typeimplementations with parameters of type ValueBuffer | |
---|---|
ValueBuffer |
PossRepImplementation14.getComponentValue(java.lang.String componentName,
ValueBuffer valueBuffer)
"Extracts" a possrep component value out of a value of the type |
static java.lang.String |
DbmsLongImplementation.getExternalRepresentation(ValueBuffer valueBuffer)
Gets the textual representation of a Long value |
static double |
DbmsFloatImplementation.getJavaDouble(ValueBuffer valueBuffer)
Gets a java double value out of a sira prise float scalarvaluebuffer |
java.lang.String |
PossRepImplementation.valueToEscapedExternalRepresentation(ValueBuffer valueBuffer)
Converts a value in internal format to the appropriate textual representation of that value for this possrep. |
java.lang.String |
DbmsTimeofdayImplementation.valueToEscapedExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsStringImplementation.valueToEscapedExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsNameImplementation.valueToEscapedExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsLongImplementation.valueToEscapedExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsIntImplementation.valueToEscapedExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsFooImplementation.valueToEscapedExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsFloatImplementation.valueToEscapedExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsFilenameImplementation.valueToEscapedExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsDecimalImplementation.valueToEscapedExternalRepresentation(ValueBuffer valueBuffer)
Deprecated. |
java.lang.String |
DbmsDateImplementation.valueToEscapedExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsCharImplementation.valueToEscapedExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsBooleanImplementation.valueToEscapedExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsBitsImplementation.valueToEscapedExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsBarImplementation.valueToEscapedExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsAverageImplementation.valueToEscapedExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsAngleImplementation.valueToEscapedExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
PossRepImplementation.valueToExternalRepresentation(ValueBuffer valueBuffer)
Converts a value in internal format to the appropriate textual representation of that value for this possrep. |
java.lang.String |
DbmsTimeofdayImplementation.valueToExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsStringImplementation.valueToExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsNameImplementation.valueToExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsLongImplementation.valueToExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsIntImplementation.valueToExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsFooImplementation.valueToExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsFloatImplementation.valueToExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsFilenameImplementation.valueToExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsDecimalImplementation.valueToExternalRepresentation(ValueBuffer valueBuffer)
Deprecated. |
java.lang.String |
DbmsDateImplementation.valueToExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsCharImplementation.valueToExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsBooleanImplementation.valueToExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsBitsImplementation.valueToExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsBarImplementation.valueToExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsAverageImplementation.valueToExternalRepresentation(ValueBuffer valueBuffer)
|
java.lang.String |
DbmsAngleImplementation.valueToExternalRepresentation(ValueBuffer valueBuffer)
|
Method parameters in be.SIRAPRISE.typeimplementations with type arguments of type ValueBuffer | |
---|---|
ValueBuffer |
XOR_BOOLEAN_BOOLEAN.executeOperator(java.util.LinkedList<ValueBuffer> args)
|
ValueBuffer |
UPPERCASE_STRING.executeOperator(java.util.LinkedList<ValueBuffer> args)
UPPERCASE() returns the input argument, converted to uppercase. |
ValueBuffer |
TOLONG_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the LONG value that represents the same number as the given INT argument. |
ValueBuffer |
TOINT_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the LONG value that represents the same number as the given INT argument. |
ValueBuffer |
TOFLOAT_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the LONG value that represents the same number as the given FLOAT argument. |
ValueBuffer |
TOFLOAT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the INT value that represents the same number as the given FLOAT argument. |
ValueBuffer |
TAN_ANGLE.executeOperator(java.util.LinkedList<ValueBuffer> args)
TAN returns the tangent of the given ANGLE value |
ValueBuffer |
SUB_TIMEOFDAY_TIMEOFDAY.executeOperator(java.util.LinkedList<ValueBuffer> args)
SUB returns the difference between two TIMEOFDAY values as another TIMEOFDAY value. |
ValueBuffer |
SUB_LONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
SUB returns the difference between the first argument (the minuend) and the second (the subrahend) |
ValueBuffer |
SUB_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
SUB returns the difference between the first argument (the minuend) and the second (the subrahend) |
ValueBuffer |
SUB_FLOAT_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
SUB returns the difference between the first argument (the minuend) and the second (the subrahend) |
ValueBuffer |
SUBSTR_STRING_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
SUBSTR(s,i,j) returns the string that appears in s starting at position i, and ends at the position immeidately before j. i is in the range [1-(LENGTH(s)+1)]. j is in the range [i-(LENGTH(s)+1)]. |
ValueBuffer |
SUBSTR_STRING_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
SUBSTR(s,i) returns the string that appears in s starting at position i. i is in the range [1-(LENGTH(s)+1)]. |
ValueBuffer |
SQRT_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
SQRT returns the square root of the given FLOAT value |
ValueBuffer |
SIN_ANGLE.executeOperator(java.util.LinkedList<ValueBuffer> args)
SIN returns the sine of the angle value passed as the argument |
ValueBuffer |
SEC_ANGLE.executeOperator(java.util.LinkedList<ValueBuffer> args)
SECANT returns the secant, i.e. the reciprocal of the cosine, of the angle given as argument value |
ValueBuffer |
ROUND_FLOAT_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The float rounding operator returns the FLOAT value that is an exact multiple of the second argument (the rounding unit), and for which the absolute value of the difference with the first argument (the number to be rounded) is minimal. |
ValueBuffer |
PRIORLONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
The PRIORLONG operator returns the LONG value that is one less than the given argument. |
ValueBuffer |
PRIORINT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The PRIORINT operator returns the INT value that is one less than the given argument. |
ValueBuffer |
PRIORDATE_DATE.executeOperator(java.util.LinkedList<ValueBuffer> args)
The PRIORDATE(DATE) operator returns the DATE value that is one day before the argument value. |
ValueBuffer |
PLUS_TIMEOFDAY_TIMEOFDAY.executeOperator(java.util.LinkedList<ValueBuffer> args)
PLUS returns the sum of the two given TIMEOFDAY values |
ValueBuffer |
PLUS_LONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
The PLUS(LONG,LONG) operator returns the LONG value that is the sum of the two arguments. |
ValueBuffer |
PLUS_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The PLUS(INT,INT) operator returns the INT value that is the sum of the two arguments. |
ValueBuffer |
PLUS_FLOAT_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
PLUS returns the sum of the two given arguments. |
ValueBuffer |
PLUS_DECIMAL_DECIMAL.executeOperator(java.util.LinkedList<ValueBuffer> args)
Deprecated. PLUS returns the result obtained by adding both operands together |
ValueBuffer |
PLUS_AVERAGE_AVERAGE.executeOperator(java.util.LinkedList<ValueBuffer> args)
The average addition operator returns the AVERAGE value (VALUE((c1 * b1) + (c2 * b2) / (c1 + c2)))COUNT(c1 + c2)) |
ValueBuffer |
PI.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the FLOAT constant 3.1415926535... |
ValueBuffer |
OR_BOOLEAN_BOOLEAN.executeOperator(java.util.LinkedList<ValueBuffer> args)
|
ValueBuffer |
OperatorImplementation.executeOperator(java.util.LinkedList<ValueBuffer> args)
Performs the actual logic of the operator. |
ValueBuffer |
NOT_BOOLEAN.executeOperator(java.util.LinkedList<ValueBuffer> args)
NOT returns true if the argument is false and false if the argument is true |
ValueBuffer |
NEXTLONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
The NEXTLONG(LONG) operator returns the LONG value that is one higher than the argument value. |
ValueBuffer |
NEXTINT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The NEXTINT(INT) operator returns the INT value that is one higher than the argument value. |
ValueBuffer |
NEXTDATE_DATE.executeOperator(java.util.LinkedList<ValueBuffer> args)
The NEXTDATE(DATE) operator returns the DATE value that is one day after the argument value. |
ValueBuffer |
MULT_LONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
MULT returns the arithmetic product of its two argument values |
ValueBuffer |
MULT_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
MULT returns the arithmetic product of its two argument values |
ValueBuffer |
MULT_FLOAT_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
MULT returns the arithmetic product of its argument values |
ValueBuffer |
MOD_LONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
MOD(a,b) returns the number c such that a = (a / b) + c. |
ValueBuffer |
MOD_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
MOD(a,b) returns the number c such that a = (a / b) + c. |
ValueBuffer |
MIN_TIMEOFDAY_TIMEOFDAY.executeOperator(java.util.LinkedList<ValueBuffer> args)
MIN returns the lowest of the two given TIMEOFDAY values |
ValueBuffer |
MIN_LONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
MIN returns the lowest of the two given argument values |
ValueBuffer |
MIN_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
MIN returns the lowest of the two given argument values |
ValueBuffer |
MIN_FLOAT_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
MIN returns the lowest of the two given argument values |
ValueBuffer |
MIN_DATE_DATE.executeOperator(java.util.LinkedList<ValueBuffer> args)
MIN returns the lowest of the two given DATE values |
ValueBuffer |
MAX_TIMEOFDAY_TIMEOFDAY.executeOperator(java.util.LinkedList<ValueBuffer> args)
MAX returns the highest of the two given TIMEOFDAY values |
ValueBuffer |
MAX_LONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
MAX returns the highest of the two given argument values |
ValueBuffer |
MAX_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
MAX returns the highest of the two given argument values |
ValueBuffer |
MAX_FLOAT_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
MAX returns the highest of the given two argument values |
ValueBuffer |
MAX_DATE_DATE.executeOperator(java.util.LinkedList<ValueBuffer> args)
MAX returns the highest of the two dates given |
ValueBuffer |
MATCHES_STRING_STRING.executeOperator(java.util.LinkedList<ValueBuffer> args)
MATCHES(s,p) returns true if the string s matches the regular expression p |
ValueBuffer |
LOWERCASE_STRING.executeOperator(java.util.LinkedList<ValueBuffer> args)
LOWERCASE() returns the argument, converted to lowercase |
ValueBuffer |
LN_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
LN returns the natural logarithm of the argument |
ValueBuffer |
LessThanOperatorImplementation.executeOperator(java.util.LinkedList<ValueBuffer> args)
|
ValueBuffer |
LessOrEqualOperatorImplementation.executeOperator(java.util.LinkedList<ValueBuffer> args)
|
ValueBuffer |
LENGTH_LONGINTERVAL.executeOperator(java.util.LinkedList<ValueBuffer> args)
LENGTH returns the length of the interval value in the argument |
ValueBuffer |
LENGTH_INTINTERVAL.executeOperator(java.util.LinkedList<ValueBuffer> args)
LENGTH returns the length of the interval value in the argument |
ValueBuffer |
LASTLONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
LASTLONG returns the highest supported LONG value |
ValueBuffer |
LASTINT.executeOperator(java.util.LinkedList<ValueBuffer> args)
LASTINT returns the highest supported INT value |
ValueBuffer |
LASTDATE.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the highest supported DATE value |
ValueBuffer |
GT_TIMEOFDAY_TIMEOFDAY.executeOperator(java.util.LinkedList<ValueBuffer> args)
GT returns true if the first operand compares higher than the second, and false otherwise |
ValueBuffer |
GT_LONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
GT returns true if the first operand compares higher than the second, and false otherwise |
ValueBuffer |
GT_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
GT returns true if the first operand compares higher than the second, and false otherwise |
ValueBuffer |
GT_FOO_FOO.executeOperator(java.util.LinkedList<ValueBuffer> args)
GT returns true if the first operand compares higher than the second, and false otherwise |
ValueBuffer |
GT_FLOAT_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
GT returns true if the first operand compares higher than the second, and false otherwise |
ValueBuffer |
GT_DECIMAL_DECIMAL.executeOperator(java.util.LinkedList<ValueBuffer> args)
Deprecated. GT returns true if the first operand compares higher than the second, and false otherwise |
ValueBuffer |
GT_DATE_DATE.executeOperator(java.util.LinkedList<ValueBuffer> args)
GT returns true if the first operand compares higher than the second, and false otherwise |
ValueBuffer |
GT_ANGLE_ANGLE.executeOperator(java.util.LinkedList<ValueBuffer> args)
GT returns true if the first operand compares higher than the second, and false otherwise |
ValueBuffer |
GreaterOrEqualOperatorImplementation.executeOperator(java.util.LinkedList<ValueBuffer> args)
|
ValueBuffer |
FLOOR_LONG_LONG.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. |
ValueBuffer |
FLOOR_INT_INT.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. |
ValueBuffer |
FIRSTLONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
FIRSTLONG returns the lowest supported LONG value |
ValueBuffer |
FIRSTINT.executeOperator(java.util.LinkedList<ValueBuffer> args)
FIRSTINT returns the lowest supported INT value |
ValueBuffer |
FIRSTDATE.executeOperator(java.util.LinkedList<ValueBuffer> args)
FIRSTDATE returns the lowest supported DATE value |
ValueBuffer |
EXP_FLOAT_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
EXP returns the value of a^b |
ValueBuffer |
EXP_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
EXP returns the value of e^x |
ValueBuffer |
EQ_RELATION_RELATION.executeOperator(java.util.LinkedList<ValueBuffer> args)
|
ValueBuffer |
EQ_BOOLEAN_BOOLEAN.executeOperator(java.util.LinkedList<ValueBuffer> args)
|
ValueBuffer |
ENDSWITH_STRING_STRING.executeOperator(java.util.LinkedList<ValueBuffer> args)
ENDSWITH returns a truth value indicating whether or not the first argument's ending sequence of tokens is identical to the second argument's complete token sequence. |
ValueBuffer |
ENDSWITH_NAME_NAME.executeOperator(java.util.LinkedList<ValueBuffer> args)
ENDSWITH operator returns a truth-value indicating whether the first argument's ending sequence of tokens is identical to the second argument's complete sequence of tokens. |
ValueBuffer |
DIV_LONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
DIV returns the result of dividing the first LONG argument by the second. |
ValueBuffer |
DIV_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
DIV returns the result of dividing the first INT argument by the second. |
ValueBuffer |
DIV_FLOAT_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
FLOAT division returns the result of dividing the two arguments by one another. |
ValueBuffer |
DATESHIFT_DATE_INT_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The DATESHIFT operator computes a date that is a given quantity of days, months, years away from a given date |
ValueBuffer |
COTAN_ANGLE.executeOperator(java.util.LinkedList<ValueBuffer> args)
COTAN returns the cotangent of its argument |
ValueBuffer |
COS_ANGLE.executeOperator(java.util.LinkedList<ValueBuffer> args)
COS returns the cosine of its argument. |
ValueBuffer |
COSEC_ANGLE.executeOperator(java.util.LinkedList<ValueBuffer> args)
COSEC returns the cosecant of the argument |
ValueBuffer |
CONCAT_STRING_STRING.executeOperator(java.util.LinkedList<ValueBuffer> args)
CONCAT returns the result of appending the second STRING argument to the first. |
ValueBuffer |
CEIL_LONG_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
CEIL returns the smallest integer that is higher than or equal to the first argument and an exact multiple of the second. |
ValueBuffer |
CEIL_INT_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
CEIL returns the smallest integer that is higher than or equal to the first argument and an exact multiple of the second. |
ValueBuffer |
BEGINSWITH_STRING_STRING.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns true if the first argument starts with all the characters of the second argument. |
ValueBuffer |
BEGINSWITH_NAME_NAME.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns true if the first argument starts with all the characters of the second argument. |
ValueBuffer |
ATAN_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the ANGLE value (in the range -PI/2 - PI/2) to which the argument is the tangent. |
ValueBuffer |
ASIN_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the ANGLE value (in the range -PI/2 - PI/2) to which the argument is the sine. |
ValueBuffer |
ASEC_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the ANGLE value (in the range 0-PI) to which the argument is the secant. |
ValueBuffer |
AND_BOOLEAN_BOOLEAN.executeOperator(java.util.LinkedList<ValueBuffer> args)
|
ValueBuffer |
ACOTAN_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the ANGLE value (in the range -PI/2 - PI/2) to which the argument is the cotangent |
ValueBuffer |
ACOS_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the ANGLE value (in the range 0-PI) such that the argument is the cosine of this angle |
ValueBuffer |
ACOSEC_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
Returns the ANGLE value (in the range -PI/2 - PI/2) to which the argument is the cosecant. |
ValueBuffer |
ABS_LONG.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the absolute value of the argument. |
ValueBuffer |
ABS_INT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the absolute value of its argument. |
ValueBuffer |
ABS_FLOAT.executeOperator(java.util.LinkedList<ValueBuffer> args)
The operator returns the absolute value of the argument. |
ValueBuffer |
PossRepImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
Returns a ValueBuffer holding the value of the type that this PossRepImplementation is for, and that corresponds to the component values given in the componentValueMap argument. |
ValueBuffer |
DbmsTimeofdayImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsStringImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsNameImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsLongImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsIntImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsFooImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsFloatImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsFilenameImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsDecimalImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
Deprecated. |
ValueBuffer |
DbmsDateImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsCharImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsBooleanImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsBitsImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsBarImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsAverageImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
ValueBuffer |
DbmsAngleImplementation.valueFromComponentValues(java.util.HashMap<java.lang.String,ValueBuffer> componentValueMap,
int logicalSize)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |