Package io.vertx.core

Examples of io.vertx.core.MultiMap.entries()


  @Test
  public void testEntriesTest1()
      throws Exception {
    MultiMap mmap = new CaseInsensitiveHeaders();

    List<Map.Entry<String, String>> result = mmap.entries();

    assertNotNull(result);
    assertEquals(0, result.size());
  }
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.