Available Methods
- toInt ( )
- CR
- NVL
- isEmpty ( )
- indexOfString ( )
- sortStrings ( )
- MARGIN
- FORM_MARGIN
- toLong ( )
- FILE_SEPARATOR
- getEnvironmentVariable ( )
- isWindows ( )
- trim ( )
- isOSX ( )
- ltrim ( )
- NULL_NONE
- replace ( )
- NULL_BIGNUMBER
- toDouble ( )
- INTERNAL_JOB_VARIABLES
- rtrim ( )
- NULL_BOOLEAN
- rightPad ( )
- getKettleDirectory ( )
- unEscapeXml ( )
- NULL_NUMBER
- NULL_STRING
- NULL_BINARY
- getDigitsOnly ( )
- INTERNAL_VARIABLE_ENTRY_CURRENT_DIRECTORY
- trimToType ( )
- HEARTBEAT_PERIODIC_INTERVAL_IN_SECS
Related Classes
- org.w3c.dom.Node
- org.eclipse.swt.SWT
- org.eclipse.swt.widgets.Composite
- org.eclipse.swt.widgets.Display
- org.eclipse.swt.widgets.Button
- org.eclipse.swt.widgets.Label
- org.eclipse.swt.widgets.Shell
- org.eclipse.swt.widgets.Text
- org.eclipse.swt.events.SelectionEvent
- org.eclipse.swt.events.SelectionAdapter
- org.eclipse.swt.widgets.Group
- org.eclipse.swt.widgets.Event
- org.eclipse.swt.widgets.Listener
- org.eclipse.swt.events.ModifyListener
- org.eclipse.swt.events.ModifyEvent
- org.eclipse.swt.widgets.TableItem
- org.eclipse.swt.custom.CTabFolder
- org.eclipse.swt.layout.FormAttachment
- org.eclipse.swt.widgets.MessageBox
- org.eclipse.swt.layout.FormData
- org.eclipse.swt.layout.FormLayout
- org.eclipse.swt.custom.CTabItem
- org.eclipse.swt.events.ShellEvent
- org.apache.commons.vfs2.FileObject
- org.eclipse.swt.custom.CCombo
Java Code Examples for org.pentaho.di.core.Const#NULL_BIGNUMBER
The following examples show how to use
org.pentaho.di.core.Const#NULL_BIGNUMBER .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Value.java From pentaho-kettle with Apache License 2.0 | 6 votes |
/** * Converts a BigNumber value to a String, optionally padding the result to the specified length. * * @param pad * true if you want to pad the resulting string to length. * @return a String optionally padded to the specified length. */ private String toStringBigNumber() { if ( value == null ) { return null; } String retval; if ( isNull() ) { retval = Const.NULL_BIGNUMBER; } else { if ( value.getBigNumber() == null ) { retval = null; } else { retval = value.getString(); // Localise . to , if ( Const.DEFAULT_DECIMAL_SEPARATOR != '.' ) { retval = retval.replace( '.', Const.DEFAULT_DECIMAL_SEPARATOR ); } } } return retval; }