本文整理了Java中org.pentaho.di.core.Const.onlySpaces()
方法的一些代码示例,展示了Const.onlySpaces()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Const.onlySpaces()
方法的具体详情如下:
包路径:org.pentaho.di.core.Const
类名称:Const
方法名:onlySpaces
[英]Checks whether or not a String consists only of spaces.
[中]检查字符串是否仅由空格组成。
代码示例来源:origin: pentaho/pentaho-kettle
public boolean spacesValidation( String text ) {
return Const.onlySpaces( text ) && !Utils.isEmpty( text );
}
代码示例来源:origin: pentaho/pentaho-kettle
if ( !Const.onlySpaces( samples[i] ) ) {
stop = true;
代码示例来源:origin: pentaho/pentaho-kettle
if ( !Const.onlySpaces( samples[i] ) ) {
stop = true;
代码示例来源:origin: pentaho/pentaho-kettle
if ( Const.onlySpaces( pol ) ) {
return null;
代码示例来源:origin: pentaho/pentaho-kettle
if ( Const.onlySpaces( pol ) ) {
return null;
代码示例来源:origin: pentaho/pentaho-kettle
} else {
for ( int x = 0; x < date_formats.length; x++ ) {
if ( samples[i] == null || Const.onlySpaces( samples[i] ) || samples[i].length() == 0 ) {
datefmt[x] = false;
datefmt_cnt--;
代码示例来源:origin: pentaho/pentaho-kettle
if ( samples[i] == null || Const.onlySpaces( samples[i] ) || samples[i].length() == 0 ) {
datefmt[x] = false;
datefmt_cnt--;
代码示例来源:origin: pentaho/pentaho-kettle
} else {
for ( int x = 0; x < date_formats.length; x++ ) {
if ( samples[i] == null || Const.onlySpaces( samples[i] ) || samples[i].length() == 0 ) {
datefmt[x] = false;
datefmt_cnt--;
代码示例来源:origin: pentaho/pentaho-kettle
if ( Utils.isEmpty( name ) || Const.onlySpaces( name ) ) {
name = "Field" + ( i + 1 );
代码示例来源:origin: pentaho/pentaho-kettle
if ( Const.onlySpaces( pol ) ) {
return emptyValue;
代码示例来源:origin: pentaho/pentaho-kettle
if ( !Utils.isEmpty( sql ) && !Const.onlySpaces( sql ) ) {
execStatements( sql );
if ( log.isDetailed() ) {
代码示例来源:origin: pentaho/pentaho-kettle
if ( !Const.onlySpaces( stat ) ) {
String sql = Const.trim( stat );
if ( sql.toUpperCase().startsWith( "SELECT" ) ) {
内容来源于网络,如有侵权,请联系作者删除!