Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CaseInsensitiveMap (1.85 sec)

  1. src/test/java/org/codelibs/core/collection/CaseInsensitiveMapTest.java

    import org.junit.Before;
    import org.junit.Test;
    
    /**
     * @author higa
     */
    public class CaseInsensitiveMapTest {
    
        CaseInsensitiveMap<String> map;
    
        /**
         * @throws Exception
         */
        @Before
        public void setUp() throws Exception {
            map = new CaseInsensitiveMap<String>();
            map.put("one", "1");
            map.put("two", "2");
        }
    
        /**
         * @throws Exception
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/collection/CaseInsensitiveSet.java

        static final long serialVersionUID = 0L;
    
        private transient Map<String, Object> map = new CaseInsensitiveMap<>();
    
        private static final Object PRESENT = new Object();
    
        /**
         * Creates a {@link CaseInsensitiveSet}.
         */
        public CaseInsensitiveSet() {
            map = new CaseInsensitiveMap<>();
        }
    
        /**
         * Creates a {@link CaseInsensitiveSet}.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top