當前位置: 首頁>>代碼示例>>Java>>正文


Java StringUtils.equalsAny方法代碼示例

本文整理匯總了Java中org.apache.commons.lang3.StringUtils.equalsAny方法的典型用法代碼示例。如果您正苦於以下問題:Java StringUtils.equalsAny方法的具體用法?Java StringUtils.equalsAny怎麽用?Java StringUtils.equalsAny使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.commons.lang3.StringUtils的用法示例。


在下文中一共展示了StringUtils.equalsAny方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: buildNormalizedHomePath

import org.apache.commons.lang3.StringUtils; //導入方法依賴的package包/類
private Path buildNormalizedHomePath(final String rawHomePath) {
    final String defaultPath = StringUtils.defaultIfBlank(rawHomePath, Path.HOME);
    final String accountRootRegex = String.format("^/?(%s|~~?)/?", accountRoot.getAbsolute());
    final String subdirectoryRawPath = defaultPath.replaceFirst(accountRootRegex, "");

    if(StringUtils.isEmpty(subdirectoryRawPath)) {
        return accountRoot;
    }

    final String[] subdirectoryPathSegments = StringUtils.split(subdirectoryRawPath, Path.DELIMITER);
    Path homePath = accountRoot;

    for(final String pathSegment : subdirectoryPathSegments) {
        EnumSet<Path.Type> types = EnumSet.of(Path.Type.directory);
        if(homePath.getParent().equals(accountRoot)
            && StringUtils.equalsAny(pathSegment, HOME_PATH_PRIVATE, HOME_PATH_PUBLIC)) {
            types.add(Path.Type.volume);
        }

        homePath = new Path(homePath, pathSegment, types);
    }

    return homePath;
}
 
開發者ID:iterate-ch,項目名稱:cyberduck,代碼行數:25,代碼來源:MantaAccountHomeInfo.java

示例2: putItem

import org.apache.commons.lang3.StringUtils; //導入方法依賴的package包/類
public void putItem(String k , V v){
	
	List<V> values = StringUtils.equalsAny("", 
			StringTools.toString( get(k)) ) ? null : get( k );
	if(null == values){
		values = new Vector<>();
		super.put(k, values) ;
	}
	values.add(v) ;
}
 
開發者ID:hpgary,項目名稱:mylion-mvn,代碼行數:11,代碼來源:ArrayMap.java

示例3: iteration

import org.apache.commons.lang3.StringUtils; //導入方法依賴的package包/類
protected boolean iteration(InteractiveModeConsole reader, ScriptKnowledgeBaseInterpreter scriptInterpreter) throws IOException {
    StringBuffer commandBuffer = new StringBuffer();
    while (true) {
        if (!engine.isRunning()) {
            return false;
        }

        String command = null;
        try {
            command = reader.readLine();
        } catch (IOException e) {
            handleException("readLine", e);
            return false;
        }

        if (command == null) {
            return false;
        }

        command = StringUtils.stripEnd(command, null);

        if (StringUtils.equalsAny(command.trim(), InteractiveModeConstants.EXIT_COMMAND, InteractiveModeConstants.QUIT_COMMAND)) {
            return false;
        }

        boolean isMultiLineStatement = command.endsWith(InteractiveModeConstants.LINE_BREAK);
        if (isMultiLineStatement) {
            command = StringUtils.removeEnd(command, InteractiveModeConstants.LINE_BREAK);
        }

        commandBuffer.append(command);

        if (isMultiLineStatement) {
            commandBuffer.append(System.lineSeparator());
        } else {
            break;
        }
    }

    if (engine.isRunning()) {
        scriptInterpreter.eval(commandBuffer.toString());
        return true;
    } else {
        return false;
    }
}
 
開發者ID:softelnet,項目名稱:sponge,代碼行數:47,代碼來源:DefaultInteractiveMode.java


注:本文中的org.apache.commons.lang3.StringUtils.equalsAny方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。