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


Java LinkedHashMap.forEach方法代碼示例

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


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

示例1: getCrftsCount

import java.util.LinkedHashMap; //導入方法依賴的package包/類
/**
 * crftの個數を返します
 * @return int
 */
public int getCrftsCount() {
  final int[] cc = {0};
  LinkedHashMap<String, LinkedHashMap<Long, CantRemoveFloatingText>> crfts = getCrfts();
  if (!crfts.isEmpty()) {
    crfts.forEach((levelName, lhm) -> lhm.forEach((eid, crft) -> cc[0]++));
  }
  System.out.println(cc[0]);// TODO: 2017/09/12 final int は謎構文 
  return cc[0];
}
 
開發者ID:fuyutsuki,項目名稱:Texter_nukkit,代碼行數:14,代碼來源:TexterApi.java

示例2: getFtsCount

import java.util.LinkedHashMap; //導入方法依賴的package包/類
/**
 * crftの個數を返します
 * @return int
 */
public int getFtsCount() {
  final int[] cc = {0};
  LinkedHashMap<String, LinkedHashMap<Long, FloatingText>> fts = getFts();
  if (!fts.isEmpty()) {
    fts.forEach((levelName, lhm) -> lhm.forEach((eid, ft) -> cc[0]++));
  }
  System.out.println(cc[0]);// TODO: 2017/09/12 final int は謎構文
  return cc[0];
}
 
開發者ID:fuyutsuki,項目名稱:Texter_nukkit,代碼行數:14,代碼來源:TexterApi.java

示例3: createContextMenu

import java.util.LinkedHashMap; //導入方法依賴的package包/類
/**
 * Creates the context menu for a given tile.
 */
private ContextMenu createContextMenu(ContextMenuEvent event) {
  ContextMenu menu = new ContextMenu();

  LinkedHashMap<String, List<MenuItem>> actions = new LinkedHashMap<>();
  if (event.getTarget() instanceof Node) {
    Node leaf = (Node) event.getTarget();
    Stream
        .iterate(leaf, Node::getParent)
        // non-functional ugliness necessary due to the lack of takeWhile in java 8
        .peek(node -> ActionList.actionsForNode(node).ifPresent(al -> {
          if (actions.containsKey(al.getName())) {
            actions.get(al.getName()).addAll(al.toMenuItems());
          } else {
            actions.put(al.getName(), al.toMenuItems());
          }
        }))
        .allMatch(n -> n.getParent() != null); // terminates infinite Stream#iterate
  }

  actions.forEach((key, menuItems) -> {
    menu.getItems().add(new SeparatorMenuItem());
    menu.getItems().add(FxUtils.menuLabel(key));
    menu.getItems().addAll(menuItems);
  });

  // remove leading separator.
  menu.getItems().remove(0);

  return menu;
}
 
開發者ID:wpilibsuite,項目名稱:shuffleboard,代碼行數:34,代碼來源:WidgetPaneController.java

示例4: add

import java.util.LinkedHashMap; //導入方法依賴的package包/類
public void add(LinkedHashMap<String, String> attribs) {
  attribs.forEach((key, value) -> this.addToAttribute(key, value));
}
 
開發者ID:jochen777,項目名稱:jWebForm,代碼行數:4,代碼來源:TagAttributes.java


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