Package com.xiaoleilu.hutool

Examples of com.xiaoleilu.hutool.GroupedSet


*/
public class GroupedSetDemo {
  private final static Logger log = Log.get();
 
  public static void main(String[] args) {
    GroupedSet set = new GroupedSet("config/demo.set");
    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

Related Classes of com.xiaoleilu.hutool.GroupedSet

Copyright © 2018 www.massapicom. 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.