Created
April 4, 2019 14:01
-
-
Save rohmanhakim/2e15689ee35ad1f006d5b4bf5f0cddae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package java.util; | |
public interface List<E> extends Collection<E> { | |
boolean add(E e); | |
boolean remove(Object o); | |
E get(int index); | |
... | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment