Package com.axemble.vdoc.sdk.interfaces
Interface IFunctions
public interface IFunctions
- Author:
- bchapoton
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Returns the absolute value of the parametersstatic final String
Logical andstatic final String
Make the average of the parametersstatic final String
return a concatenated stringstatic final String
Format a datestatic final String
return the day of datestatic final String
Case statementstatic final String
Substring from the rightstatic final String
return the position of a string in another stringstatic final String
If statementstatic final String
Substring from the leftstatic final String
return the lenth of the stringstatic final String
Get localized stringstatic final String
Converts all of the characters in this String to lower casestatic final String
Get the bigger value of the parametersstatic final String
Get the smallest value of the parametersstatic final String
return the month of datestatic final String
NOT statementstatic final String
Format numberstatic final String
Returns the value of the first argument raised to the power of the second argumentstatic final String
do the same thing as the "replace" javastatic final String
Substring from the rightstatic final String
return doublestatic final String
return doublestatic final String
return doublestatic final String
Make the sum of the parametersstatic final String
Constructs a Date object initialized with the given year, month, and day.static final String
Constructs a Date object initialized with the current date and timestatic final String
Convert String to Numberstatic final String
TRIM remove empty spacestatic final String
return doublestatic final String
Converts all of the characters in this String to upper casestatic final String
return the year (int), of date
-
Field Details
-
LOWER_CASE_FUNCTION
Converts all of the characters in this String to lower case- See Also:
-
UPPER_CASE_FUNCTION
Converts all of the characters in this String to upper case- See Also:
-
TODATE_FUNCTION
Constructs a Date object initialized with the given year, month, and day.- See Also:
-
DATE_FUNCTION
Format a date- See Also:
-
AND_FUNCTION
Logical and- See Also:
-
TODAY_FUNCTION
Constructs a Date object initialized with the current date and time- See Also:
-
SUM_FUNCTION
Make the sum of the parameters- See Also:
-
LEFT_FUNCTION
Substring from the left- See Also:
-
RIGHT_FUNCTION
Substring from the right- See Also:
-
FILESIZE_FUNCTION
Substring from the right- See Also:
-
TONUMBER_FUNCTION
Convert String to Number- See Also:
-
NUMBER_FUNCTION
Format number- See Also:
-
LOC_FUNCTION
Get localized string- See Also:
-
IF_FUNCTION
If statement- See Also:
-
ELSIF_FUNCTION
Case statement- See Also:
-
MIN_FUNCTION
Get the smallest value of the parameters- See Also:
-
MAX_FUNCTION
Get the bigger value of the parameters- See Also:
-
AVERAGE_FUNCTION
Make the average of the parameters- See Also:
-
POWER_FUNCTION
Returns the value of the first argument raised to the power of the second argument- See Also:
-
ABS_FUNCTION
Returns the absolute value of the parameters- See Also:
-
YEAR_FUNCTION
return the year (int), of date- See Also:
-
MONTH_FUNCTION
return the month of date- See Also:
-
DAY_FUNCTION
return the day of date- See Also:
-
NOT_FUNCTION
NOT statement- See Also:
-
TRIM_FUNCTION
TRIM remove empty space- See Also:
-
LEN_FUNCTION
return the lenth of the string- See Also:
-
FIND_FUNCTION
return the position of a string in another string- See Also:
-
REPLACE_FUNCTION
do the same thing as the "replace" java- See Also:
-
TRUNC_FUNCTION
return double- See Also:
-
ROUND_FUNCTION
return double- See Also:
-
ROUNDDOWN_FUNCTION
return double- See Also:
-
ROUNDUP_FUNCTION
return double- See Also:
-
CONCAT_FUNCTION
return a concatenated string- See Also:
-