Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

         * Creates and returns a new instance of {@link LinkedList}.
         *
         * @param <E> the element type of {@link LinkedList}
         * @return a new instance of {@link LinkedList}
         * @see LinkedList#LinkedList()
         */
        public static <E> LinkedList<E> newLinkedList() {
            return new LinkedList<>();
        }
    
        /**
         * Creates and returns a new instance of {@link LinkedList}.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 49.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

    import java.net.InetSocketAddress;
    import java.net.Socket;
    import java.net.SocketException;
    import java.security.MessageDigest;
    import java.util.Arrays;
    import java.util.Collections;
    import java.util.LinkedList;
    import java.util.List;
    import java.util.ListIterator;
    import java.util.Locale;
    import java.util.Set;
    import java.util.concurrent.Semaphore;
    import java.util.concurrent.TimeUnit;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
Back to top