本文整理匯總了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);
}