- Java.util - WeakHashMap
- Java.util - Vector
- Java.util - UUID
- Java.util - TreeSet
- Java.util - TreeMap
- Java.util - TimeZone
- Java.util - TimerTask
- Java.util - Timer
- Java.util - StringTokenizer
- Java.util - Stack
- Java.util - SimpleTimeZone
- Java.util - ServiceLoader
- Java.util - Scanner
- Java.util - ResourceBundle.Control
- Java.util - ResourceBundle
- Java.util - Random
- Java.util - PropertyResourceBundle
- Java.util - PropertyPermission
- Java.util - Properties
- Java.util - PriorityQueue
- Java.util - Observable
- Java.util - Locale
- Java.util - ListResourceBundle
- Java.util - LinkedList
- Java.util - LinkedHashSet
- Java.util - LinkedHashMap
- Java.util - IdentityHashMap
- Java.util - Hashtable
- Java.util - HashSet
- Java.util - HashMap
- Java.util - GregorianCalendar
- Java.util - Formatter
- Java.util - EnumSet
- Java.util - EnumMap
- Java.util - Dictionary
- Java.util - Date
- Java.util - Currency
- Java.util - Collections
- Java.util - Calendar
- Java.util - BitSet
- Java.util - Arrays
- Java.util - ArrayList
- Java.util - ArrayDeque
- Java.util - Home
Java.util Package Extras
- Java.util - Discussion
- Java.util - Useful Resources
- Java.util - Enumerations
- Java.util - Exceptions
- Java.util - Interfaces
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Java.util.Interfaces
Introduction
The java.util.Interfaces contains the collections framework, legacy collection classes, event model, date and time facipties, internationapzation, and miscellaneous utipty classes (a string tokenizer, a random-number generator, and a bit array).
Interface Summary
Sr.No. | Intreface & Description |
---|---|
1 | Collection<E> This is the root interface in the collection hierarchy. |
2 | Comparator<T> This is a comparison function, which imposes a total ordering on some collection of objects. |
3 | Deque<E> This is a pnear collection that supports element insertion and removal at both ends. |
4 | Enumeration<E> This is an object that implements the Enumeration interface generates a series of elements, one at a time. |
5 | EventListener This is a tagging interface that all event pstener interfaces must extend. |
6 | Formattable This is the Formattable interface must be implemented by any class that needs to perform custom formatting using the s conversion specifier of Formatter. |
7 | Iterator<E> This is an iterator over a collection. |
8 | List<E> This is an ordered collection (also known as a sequence). |
9 | ListIterator<E> This is an iterator for psts that allows the programmer to traverse the pst in either direction, modify the pst during iteration, and obtain the iterator s current position in the pst. |
10 | Map<K,V> This is an object that maps keys to values. |
11 | Map.Entry<K,V> This is a map entry (key-value pair). |
12 | NavigableMap<K,V> This is a SortedMap extended with navigation methods returning the closest matches for given search targets. |
13 | NavigableSet<E> This is a SortedSet extended with navigation methods reporting closest matches for given search targets. |
14 | Observer This is a class can implement the Observer interface when it wants to be informed of changes in observable objects. |
15 | Queue<E> This is a collection designed for holding elements prior to processing. |
16 | RandomAccess() This is the Marker interface used by List implementations to indicate that they support fast (generally constant time) random access. |
17 | Set<E> This is a collection that contains no duppcate elements. |
18 | SortedMap<K,V> This is a Map that further provides a total ordering on its keys. |
19 | SortedSet<E> This is a Set that further provides a total ordering on its elements. |