- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for CaseInsensitiveMap (0.12 sec)
-
src/main/java/org/codelibs/core/collection/CaseInsensitiveMap.java
* * @author higa 値の型 * @param <V> * 値の型 */ public class CaseInsensitiveMap<V> extends ArrayMap<String, V> { private static final long serialVersionUID = 1L; /** * {@link CaseInsensitiveMap}を作成します。 */ public CaseInsensitiveMap() { } /** * {@link CaseInsensitiveMap}を作成します。 * * @param capacity * 初期容量 */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.3K bytes - Viewed (0) -
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(); /** * {@link CaseInsensitiveSet}を作成します。 */ public CaseInsensitiveSet() { map = new CaseInsensitiveMap<>(); } /** * {@link CaseInsensitiveSet}を作成します。 * * @param c
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.5K bytes - Viewed (0) -
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 Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 4K bytes - Viewed (0)