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#unEscapeXml()
The following examples show how to use
org.pentaho.di.core.Const#unEscapeXml() .
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: ScriptValuesAddedFunctions.java From pentaho-kettle with Apache License 2.0 | 5 votes |
public static String unEscapeXml( Context actualContext, Scriptable actualObject, Object[] ArgList, Function FunctionContext ) { if ( ArgList.length == 1 ) { return Const.unEscapeXml( Context.toString( ArgList[0] ) ); } else { throw Context.reportRuntimeError( "The function call unEscapeXml requires 1 argument." ); } }
Example 2
Source File: ValueDataUtil.java From pentaho-kettle with Apache License 2.0 | 4 votes |
public static String unEscapeXML( ValueMetaInterface metaA, Object dataA ) { if ( dataA == null ) { return null; } return Const.unEscapeXml( dataA.toString() ); }