Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 25.8K bytes
    - Viewed (1)
  2. 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: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
Back to top