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_BOOLEAN
The following examples show how to use
org.pentaho.di.core.Const#NULL_BOOLEAN .
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 |
/** * Returns a String representing the boolean value. It will be either "true" or "false". * * @return a String representing the boolean value. */ private String toStringBoolean() { // Code was removed from this method as ValueBoolean // did not store length, so some parts could never be // called. String retval; if ( value == null ) { return null; } if ( isNull() ) { retval = Const.NULL_BOOLEAN; } else { retval = value.getBoolean() ? "true" : "false"; } return retval; }