org.pentaho.di.core.Const.getTransformationFilterNames()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(2.3k)|赞(0)|评价(0)|浏览(111)

本文整理了Java中org.pentaho.di.core.Const.getTransformationFilterNames()方法的一些代码示例,展示了Const.getTransformationFilterNames()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Const.getTransformationFilterNames()方法的具体详情如下:
包路径:org.pentaho.di.core.Const
类名称:Const
方法名:getTransformationFilterNames

Const.getTransformationFilterNames介绍

暂无

代码示例

代码示例来源:origin: pentaho/pentaho-kettle

/**
 * Gets the transformation filter names.
 *
 * @return the filter names
 * @see org.pentaho.di.core.EngineMetaInterface#getFilterNames()
 */
@Override
public String[] getFilterNames() {
 return Const.getTransformationFilterNames();
}

代码示例来源:origin: pentaho/pentaho-kettle

FileObject file =
 vfsFileChooser.open(
  shell, null, Const.STRING_TRANS_FILTER_EXT, Const.getTransformationFilterNames(),
  VfsFileChooserDialog.VFS_DIALOG_OPEN_FILE );
if ( file == null ) {

代码示例来源:origin: pentaho/pentaho-kettle

FileObject file =
 vfsFileChooser.open(
  shell, null, Const.STRING_TRANS_FILTER_EXT, Const.getTransformationFilterNames(),
  VfsFileChooserDialog.VFS_DIALOG_OPEN_FILE );
if ( file == null ) {

代码示例来源:origin: pentaho/pentaho-kettle

FileObject file =
 vfsFileChooser.open(
  shell, null, Const.STRING_TRANS_FILTER_EXT, Const.getTransformationFilterNames(),
  VfsFileChooserDialog.VFS_DIALOG_OPEN_FILE );
if ( file == null ) {

代码示例来源:origin: pentaho/pentaho-kettle

FileObject file =
 vfsFileChooser.open(
  shell, null, Const.STRING_TRANS_FILTER_EXT, Const.getTransformationFilterNames(),
  VfsFileChooserDialog.VFS_DIALOG_OPEN_FILE );
if ( file == null ) {

代码示例来源:origin: pentaho/pentaho-kettle

FileObject file =
 vfsFileChooser.open(
  shell, null, Const.STRING_TRANS_FILTER_EXT, Const.getTransformationFilterNames(),
  VfsFileChooserDialog.VFS_DIALOG_OPEN_FILE );
if ( file == null ) {

代码示例来源:origin: pentaho/pentaho-kettle

wlTransPath.setLayoutData( fdlTransPath );
wFileSection = new VFSFileSelection( shell, SWT.SINGLE, Const.STRING_TRANS_FILTER_EXT, Const.getTransformationFilterNames(), transMeta, repository  );
props.setLook( wFileSection );
FormData fdFileSelection = new FormData();

代码示例来源:origin: pentaho/pentaho-kettle

dialog.setFilterNames( Const.getTransformationFilterNames() );
String prevName = jobMeta.environmentSubstitute( wPath.getText() );
String parentFolder = null;

代码示例来源:origin: pentaho/big-data-plugin

dialog.setFilterNames( Const.getTransformationFilterNames() );
String prevName = jobEntry.environmentSubstitute( originalTransformationName );
String parentFolder = null;

相关文章

微信公众号

最新文章

更多