Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SequencedCollection (0.06 sec)

  1. README.md

    ```java
    import org.codelibs.core.collection.CollectionsUtil;
    import java.util.SequencedCollection;
    
    // Enhanced collection creation
    List<String> list = CollectionsUtil.newArrayList();
    Map<String, Object> map = CollectionsUtil.newLinkedHashMap();
    Set<String> caseInsensitiveSet = new CaseInsensitiveSet<>();
    
    // Java 21 Sequenced Collections support
    SequencedCollection<String> sequenced = CollectionsUtil.newLinkedHashSet();
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/collection/CollectionsUtil.java

         */
        public static <E> SequencedCollection<E> reversed(final SequencedCollection<E> collection) {
            return collection.reversed();
        }
    
        /**
         * Returns the first entry of a sequenced map.
         *
         * @param <K> the key type
         * @param <V> the value type
         * @param map the sequenced map
         * @return the first entry, or null if the map is empty
         * @since Java 21
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 49.9K bytes
    - Viewed (0)
Back to top