ElegantJ Data Tables Java API Specification v1.1

Package com.elegantj.data.parser.postfixmathcommand

A package contains the classes for different functionality which are used in parser.

See:
          Description

Interface Summary
PostfixMathCommandI The PostfixMathCommandI interface represents the method command to be executed by the node.
 

Class Summary
Abs Determines the absolute value
Command Method -> abs
Add Results the addition operation
And Results the logical operation
Asc Determines the ascii value of the character
Avg Determines the average value
Command Method -> avg
BooleanValue Results the boolean value
Command Method -> Boolean
ByteValue Results the byte value
Command Method -> Byte
Ceil Determines the ceiling value
Command Method -> ceil
Char Results the character value of the integer
Cos Determines the cosine value
Command Method -> cos
Count Determines the count
Command Method -> count
CumulativePercent Determines the cumulative percentage
Command Method -> cumulativePercent
CumulativeSum Determines the cumulative sum
Command Method -> cumutativeSum
DateDate Determines the date from the specified string
Command Method -> date
DateTime Determines the datetime object from the specified string
Command Method -> dateTime
Day Determines the day
Command Method -> day
DayName Determines the day name
Command Method -> dayName
DayNumber Determines the day number
Command Method -> dayNumber
DaysAfter Determines the date after the specified days
Command Method -> daysAfter
Divide Results division operation
DoubleValue Results the double value
Command Method -> Double
Equal Checks for the equal value
Exp Determines the exponential value
Command Method -> exp
Fact Determines the factorial value
Command Method -> factorial
Fill Fills the string with specified characters within specified length
Command Method -> fill
First Determines the first value
Command Method -> first
FloatValue Results the float value
Command Method -> Float
Floor Determines the floor value
Command Method -> floor
Greater Results greater value
GreaterEqual Results greater than or equal to value
Hour Determines the hour from the specified date
Command Method -> hour
If Determines the conditional expression (if then else )
Command Method -> ifCase
IndexOfChar Determines the index of the character into the specified string
Command Method -> int indexOfChar(String str1, char ch, int pos) : str1 - the string to be processed, ch - the character to be searched, pos - the start index to search, return the start index of the searched character, -1 if not found
IndexOfString Determines index of the string in the specified string
Command Method -> int indexOfString(String str1, String str2, int pos) : str1 - the string to be processed, str2 - the string to be searched, pos - the start index to search, return the start index of the searched string, -1 if not found
IntValue Results the intger value
Command Method -> Integer
IsDate Checks whether the specified string is date or not
Command Method -> isDate
IsNull Checks whether the specified string is null or not
Command Method -> boolean isNull(Object obj) : obj - the object to be checked, return true if the obj is null
IsNumber Checks whether the specified string is number or not
Command Method -> isNumber
IsTime Checks whether the specified string is time or not
Command Method -> isTime
Large Determines the large value
Command Method -> large
Last Determines the last value
Command Method -> last
Left Results the string from left end with specified length
Command Method -> String left(String str, int pos) : str - the string to be processed, pos - the end index of the the string, return the string
LeftTrim Trims the string left hand side
Command Method -> leftTrim
Length Determines the length of the string
Command Method -> int length(String str) : str - the string to be calculated, returns the length of the str
Less Checks for less than value
LessEqual Checks for less than or equal to value
Log Determines the natural logarithom (base e) of double value
Command Method -> double log(double d)
LogTen Determines the logarithom (base 10) of double value
Command Method -> double logTen(double d)
LongValue Results the long value
Command Method -> Long
LowerCase Converts the string to the lower case
Command Method -> String toLowerCase(String str) : str - the string to be converted, return the string in lower case
Match Checks for the string match
Command Method -> boolean match(String str1.
Max Determines the maximum value
Command Method -> max
Maximum Determines the specified number of maximum value
Command Method -> maximum
Median Determines the medium value
Command Method -> median
Min Determines the minimum value
Command Method -> min
Minimum Determines the specified number of minimum value
Command Method -> minimum
Minute Determines the minute from the specified date
Command Method -> minute
Mod Results the modulus operation
Mode Determines the mode value
Command Method -> mode
Month Determines the month from the specified date
Command Method -> month
Multiply Results the multiplication operation
NotEqual Checks the non equality
Now Determines the current time in milliseconds
Command Method -> now
Or Results the logical or operation
Page Determines the vertical page index
Command Method -> page
PageAcross Determines the horizontal page index
Command Method -> pageAcross
PageCount Determines the vertical page count
Command Method -> pageCount
PageCountAcross Determines the horizontal page count
Command Method -> pageCountAcross
Percent Determines the percentage value
Command Method -> percent
Pi Results the pi value For example, if the value is 10, it returns 10 raised to (value of)pi
Command Method -> double pi(double d)
PostfixMathCommand The PostfixMathCommand abstract class provides the utitlity methods to execute and process the command method by node.
Power Determines the power ratio of the number
Command Method -> pow
RandomNumber Generates the random number
Command Method -> random
RelativeDate Determines the relative date from the specified date
Command Method -> relativeDate
RelativeTime Determines the relative time the given milliseconds
Command Method -> relativeTime
Replace Replaces the string with specified string from index0 to index1
Command Method -> String replace(String str1, int index0, int index1, String str2) : str1 - the string to be processed index0 - the start index, index1 - the end index, str2 - the string to be replaced, return the string
Reverse Reverses the string
Command Method -> String reverse(String str) : str - the string to be reversed, return the reversed string
Rgb Determines the color from r,g,b
Command Method -> Color
Right Results the string from right end with specified length
Command Method -> String right(String str, int pos) : str - the string to be processed, pos - the start index of the the string, return the string
RightTrim Trims the string right hand side
Command Method -> rightTrim
Round Calculates the round value
Command Method -> round
Second Calculates the milliseconds from the specified time
Command Method -> second
ShortValue Converts into the sort value
Command Method -> Short
Sign Calculates the signature of the value For example, if value is -10.89 it returns -1 ,if 10.89 it returns 1, if 0 it returns 0
Command Method -> int sign(double d) : d - a double value to be observed, return -1,0,1 for negative,zero,positive.
Sin Calculates the sine value
Command Method -> sin
Small Returns the specified number of smallest value
Command Method -> small
Space Makes the string containing specified white spaces.
Sqrt Calculates the square root
Command Method -> sqrt
Substring Determines the substring of the string value
Command Method -> String substring(String str, int index0, int index1) : str - the string to be processed, index0 - the start index, index1 - the end index, returns the string
Subtract Results the subtracting operation
Sum Results the addition operation
Command Method -> sum
Tan Calculates the tanget of the value
Command Method -> tan
TimeTime Converts the time from the string representation
Command Method -> time
Today Determines the today's date
Command Method -> today
ToString Converts the any object into the string representation
Command Method -> String toString(Object obj) : obj - the object to be converted to string representation
Trim Trims the string value
Command Method -> String trim(String str) : str - the string to be trimmed, returns the string
Truncate Truncates the double value
Command Method -> truncate
UMinus Results the unury minus operation.
UpperCase Converts the string to upper case
Command Method -> String toUpperCase(String str) : str - the string to be converted to upper case, returns the string
WhenThen Determines the conditional expression (when then else )
Command Method -> whenThen
Year Determines the current year
Command Method -> year
 

Package com.elegantj.data.parser.postfixmathcommand Description

A package contains the classes for different functionality which are used in parser.


ElegantJ Data Tables Java API Specification v1.1

Submit a bug or feature

Copyright(c)
Elegant Microweb Technologies Pvt. Ltd.
www.elegantmicroweb.com
www.elegantjbeans.com
All Rights Reserved.