inverted 2 included features to fix ESB SE build pb

git-svn-id: http://talendforge.org/svn/tos/trunk@73207 f6f1c999-d317-4740-80b0-e6d1abc6f99e
This commit is contained in:
sgandon
2011-11-25 15:56:59 +00:00
commit e68df216c8
7685 changed files with 2006472 additions and 0 deletions

View File

@@ -0,0 +1,73 @@
// ============================================================================
//
// %GENERATED_LICENSE%
//
// ============================================================================
package routines;
public class DataOperation {
/**
* CHAR() Converts a numeric value to its ASCII character string equivalent.
*
* {talendTypes} char | Character
*
* {Category} DataOperation
*
* {param} int(1) i: numeric value
*
* {example} CHAR(1):int
*
*/
public static char CHAR(int i) {
return Character.forDigit(i, 10);
}
/**
* DTX( ) Converts a decimal integer into its hexadecimal equivalent.
*
* {talendTypes} String
*
* {Category} DataOperation
*
* {param} int(1) i:decimal integer
*
* {example} DTX(1)
*
*/
public static String DTX(int i) {
return Integer.toHexString(i);
}
/**
* FIX( ) Rounds an expression to a decimal number having the accuracy specified by the PRECISION statement.
*
* {talendTypes} long | Long
*
* {Category} DataOperation
*
* {param} double (0.0) d:decimal number
*
* {example} FIX(3.14)
*
*/
public static long FIX(double d) {
return Math.round(d);
}
/**
* XTD( ) Converts a hexadecimal string into its decimal equivalent.
*
* {talendTypes} int | Integer
*
* {Category} DataOperation
*
* {param} string ("0") text: hexadecimal string
*
* {example} XTD(\"1\")
*
*/
public static int XTD(String text) {
return Integer.valueOf(text, 16);
}
}