Package com.xiaoleilu.hutool

Examples of com.xiaoleilu.hutool.GroupedSet.entrySet()


    log.debug("path: {}", set.getPath());
    log.debug("groups: {}", set.getGroups());
   
    log.debug("特殊分组是否包含字符1: {}", set.contains("特殊分组", "1"));
   
    Set<Entry<String,LinkedHashSet<String>>> entrySet = set.entrySet();
    for (Entry<String, LinkedHashSet<String>> entry : entrySet) {
      log.debug(entry.toString());
    }
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.