本文整理了Java中org.pentaho.di.core.Const.initCap()
方法的一些代码示例,展示了Const.initCap()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Const.initCap()
方法的具体详情如下:
包路径:org.pentaho.di.core.Const
类名称:Const
方法名:initCap
[英]Sets the first character of each word in upper-case.
[中]以大写形式设置每个单词的第一个字符。
代码示例来源:origin: pentaho/pentaho-kettle
public static String initCap( ValueMetaInterface metaA, Object dataA ) {
if ( dataA == null ) {
return null;
}
return Const.initCap( dataA.toString() );
}
代码示例来源:origin: pentaho/pentaho-kettle
public static String initCap( Context actualContext, Scriptable actualObject, Object[] ArgList,
Function FunctionContext ) {
if ( ArgList.length == 1 ) {
return Const.initCap( Context.toString( ArgList[0] ) );
} else {
throw Context.reportRuntimeError( "The function call initCap requires 1 argument." );
}
}
代码示例来源:origin: pentaho/pentaho-kettle
public Value initcap() {
if ( isNull() ) {
return this;
}
if ( getString() == null ) {
setNull();
} else {
setValue( Const.initCap( getString() ) );
}
return this;
}
代码示例来源:origin: pentaho/pentaho-kettle
break;
case StringOperationsMeta.INIT_CAP_YES:
rcode = Const.initCap( rcode );
break;
default:
内容来源于网络,如有侵权,请联系作者删除!