Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ArrayMap (0.17 sec)

  1. src/main/java/org/codelibs/core/collection/ArrayMap.java

        @Override
        public boolean equals(final Object o) {
            if (o == null) {
                return false;
            }
            if (!(o instanceof ArrayMap)) {
                return false;
            }
            @SuppressWarnings("unchecked")
            final ArrayMap<K, V> e = (ArrayMap<K, V>) o;
            if (size != e.size) {
                return false;
            }
            for (int i = 0; i < size; i++) {
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 20.6K bytes
    - Viewed (1)
  2. src/test/java/org/codelibs/core/collection/ArrayMapTest.java

            exception.expectMessage(is("Index:1, Size:0"));
            ArrayMap<String, String> m = new ArrayMap<String, String>(1);
            m.getEntryAt(1);
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testSerialize() throws Exception {
            @SuppressWarnings("unchecked")
            ArrayMap<String, String> copy = (ArrayMap<String, String>) SerializeUtil.serialize(map);
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ArrayTable.java

            public K getKey() {
              return ArrayMap.this.getKey(index);
            }
    
            @Override
            @ParametricNullness
            public V getValue() {
              return ArrayMap.this.getValue(index);
            }
    
            @Override
            @ParametricNullness
            public V setValue(@ParametricNullness V value) {
              return ArrayMap.this.setValue(index, value);
            }
          };
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 26.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ArrayTable.java

            public K getKey() {
              return ArrayMap.this.getKey(index);
            }
    
            @Override
            @ParametricNullness
            public V getValue() {
              return ArrayMap.this.getValue(index);
            }
    
            @Override
            @ParametricNullness
            public V setValue(@ParametricNullness V value) {
              return ArrayMap.this.setValue(index, value);
            }
          };
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 26.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/collection/CaseInsensitiveMap.java

     */
    package org.codelibs.core.collection;
    
    import java.util.Map;
    
    /**
     * キーで大文字小文字を気にしない {@link ArrayMap}です。
     *
     * @author higa 値の型
     * @param <V>
     *            値の型
     */
    public class CaseInsensitiveMap<V> extends ArrayMap<String, V> {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * {@link CaseInsensitiveMap}を作成します。
         */
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

        protected final CaseInsensitiveMap<PropertyDesc> propertyDescCache = new CaseInsensitiveMap<>();
    
        /** フィールド名から{@link FieldDescImpl}へのマップ */
        protected final ArrayMap<String, FieldDesc> fieldDescCache = new ArrayMap<>();
    
        /** {@link ConstructorDesc}の配列 */
        protected final List<ConstructorDesc> constructorDescs = newArrayList();
    
        /** メソッド名から{@link MethodDesc}配列へのマップ */
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 26.1K bytes
    - Viewed (0)
Back to top