- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for CaseInsensitiveMap (0.46 sec)
-
src/main/java/org/codelibs/core/collection/CaseInsensitiveMap.java
* * @author higa * @param <V> the type of values */ public class CaseInsensitiveMap<V> extends ArrayMap<String, V> { private static final long serialVersionUID = 1L; /** * Creates a {@link CaseInsensitiveMap}. */ public CaseInsensitiveMap() { } /** * Creates a {@link CaseInsensitiveMap}. * * @param capacity the initial capacity */
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.2K 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(); /** * Creates a {@link CaseInsensitiveSet}. */ public CaseInsensitiveSet() { map = new CaseInsensitiveMap<>(); } /** * Creates a {@link CaseInsensitiveSet}. *Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.4K 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: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4K bytes - Viewed (0) -
README.md
SequencedCollection<String> reversed = CollectionsUtil.reversed(sequenced); // Specialized collections LruHashMap<String, Object> lruCache = new LruHashMap<>(100); // LRU cache with max 100 entries CaseInsensitiveMap<String> configMap = new CaseInsensitiveMap<>(); ``` ### Resource Management ```java import org.codelibs.core.io.*; // Resource loading and management URL resource = ResourceUtil.getResource("config.properties");
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
/** Map of type arguments and type variables */ protected final Map<TypeVariable<?>, Type> typeVariables; /** Map from property name to {@link PropertyDesc} */ protected final CaseInsensitiveMap<PropertyDesc> propertyDescCache = new CaseInsensitiveMap<>(); /** Map from field name to {@link FieldDescImpl} */ protected final ArrayMap<String, FieldDesc> fieldDescCache = new ArrayMap<>(); /** Array of {@link ConstructorDesc} */Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1)