- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for caseInsensitiveMap (0.09 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) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
/** 型引数と型変数のマップ */ protected final Map<TypeVariable<?>, Type> typeVariables; /** プロパティ名から{@link PropertyDesc}へのマップ */ protected final CaseInsensitiveMap<PropertyDesc> propertyDescCache = new CaseInsensitiveMap<>(); /** フィールド名から{@link FieldDescImpl}へのマップ */ protected final ArrayMap<String, FieldDesc> fieldDescCache = new ArrayMap<>(); /** {@link ConstructorDesc}の配列 */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 26.1K bytes - Viewed (0) -
cmd/bucket-replication.go
meta[xhttp.AmzBucketReplicationStatus] = replication.Replica.String() return meta } type caseInsensitiveMap map[string]string // Lookup map entry case insensitively. func (m caseInsensitiveMap) Lookup(key string) (string, bool) { if len(m) == 0 { return "", false } for _, k := range []string{ key, strings.ToLower(key),
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 10 06:49:55 UTC 2024 - 116.1K bytes - Viewed (0)