本文整理汇总了Java中org.codehaus.plexus.util.StringUtils.defaultString方法的典型用法代码示例。如果您正苦于以下问题:Java StringUtils.defaultString方法的具体用法?Java StringUtils.defaultString怎么用?Java StringUtils.defaultString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.codehaus.plexus.util.StringUtils
的用法示例。
在下文中一共展示了StringUtils.defaultString方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: equals
import org.codehaus.plexus.util.StringUtils; //导入方法依赖的package包/类
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
ValueSetTm other = (ValueSetTm) obj;
String id1 = myId != null && myId.isEmpty() == false ? myId : myName;
String id2 = other.myId != null && other.myId.isEmpty() == false ? other.myId : other.myName;
id1 = StringUtils.defaultString(id1);
id2 = StringUtils.defaultString(id2);
return id1.equals(id2);
}
示例2: toString
import org.codehaus.plexus.util.StringUtils; //导入方法依赖的package包/类
public String toString()
{
if ( this.classifier == null )
{
return groupId + ":" + artifactId + ":" + StringUtils.defaultString( version, "?" ) + ":" + type;
}
else
{
return groupId + ":" + artifactId + ":" + classifier + ":" + StringUtils.defaultString( version, "?" )
+ ":" + type;
}
}
示例3: setDefaultValues
import org.codehaus.plexus.util.StringUtils; //导入方法依赖的package包/类
private void setDefaultValues()
{
String userHome = System.getProperty( "user.home" );
if ( userHome == null )
userHome = System.getenv( "HOME" );
if ( userHome == null )
throw new RuntimeException( "Failed to obtain user home path" );
counterPath = Paths.get( "bisect-counter" ).toAbsolutePath().toString();
InvocationRequest request = new DefaultInvocationRequest();
alsoMake = request.isAlsoMake();
alsoMakeDependents = request.isAlsoMakeDependents();
debug = request.isDebug();
failureBehavior = request.getFailureBehavior();
globalChecksumPolicy = request.getGlobalChecksumPolicy();
globalSettings = StringUtils.defaultString( request.getGlobalSettingsFile() );
goals = request.getGoals();
batchMode = !request.isInteractive();
javaHome = fileToString( request.getJavaHome() );
localRepository = fileToString( request.getLocalRepositoryDirectory( null ) );
mavenOpts = request.getMavenOpts();
offline = request.isOffline();
pomFile = fileToString( request.getPomFile() );
profiles = request.getProfiles();
projects = request.getProjects();
nonRecursive = !request.isRecursive();
resumeFrom = request.getResumeFrom();
showErrors = request.isShowErrors();
showVersion = request.isShowVersion();
threads = request.getThreads();
toolchains = fileToString( request.getToolchainsFile() );
updateSnapshots = request.isUpdateSnapshots();
userSettings = fileToString( request.getUserSettingsFile() );
}
示例4: checkResult
import org.codehaus.plexus.util.StringUtils; //导入方法依赖的package包/类
private void checkResult( ScmResult result )
throws MojoExecutionException
{
if ( !result.isSuccess() )
{
getLog().debug( "Provider message:" );
getLog().debug( result.getProviderMessage() == null ? "" : result.getProviderMessage() );
getLog().debug( "Command output:" );
getLog().debug( result.getCommandOutput() == null ? "" : result.getCommandOutput() );
throw new MojoExecutionException( "Command failed."
+ StringUtils.defaultString( result.getProviderMessage() ) );
}
}
示例5: getDescription
import org.codehaus.plexus.util.StringUtils; //导入方法依赖的package包/类
public String getDescription() {
return StringUtils.defaultString(myDescription);
}
示例6: getName
import org.codehaus.plexus.util.StringUtils; //导入方法依赖的package包/类
public String getName() {
return StringUtils.defaultString(myName);
}