java.util

Home
Java Source Code / Java Documentation 2
1.2D
2.3D
3.Ajax
4.Algebra
5.App Engine
6.Aspect
7.Assemble
8.Cache
9.Cassandra
10.Chat
11.Cloud
12.CMS
13.CouchDB
14.Crypt
15.Database
16.Distributed
17.Eclipse
18.Facebook
19.File
20.Forum
21.GAE
22.Game
23.Google tech
24.Graph
25.Graphic
26.GWT
27.Hibernate
28.HTML
29.HTTP
30.Image
31.IntelliJ
32.IRC
33.J2EE
34.J2ME
35.JDBC
36.JPA
37.JSON
38.JSR
39.JUnit
40.JVM
41.Language
42.Linux
43.Math
44.Maven
45.Media
46.Messenger
47.MiddleWare
48.Mobile
49.Mock
50.MongoDB
51.Mp3
52.Music
53.MVC
54.Network
55.OpenID
56.OSGi
57.Parse
58.Persist
59.Petri
60.Phone
61.Physics
62.REST
63.Robot
64.RPC
65.RSS
66.Ruby
67.Script
68.Search
69.Spring
70.SQL
71.SSH
72.Sudoku
73.Swing
74.Tapestry
75.Test
76.Text
77.Torrent
78.Twitter
79.UML
80.UnTagged
81.Utilities
82.Web
83.Wiki
84.XML
Java Source Code / Java Documentation 2 » Script » java2script » java.util 
java.util
Java Source File NameTypeComment
AbstractCollection.javaClass AbstractCollection is an abstract implementation of the Collection interface. This implementation does not support adding.
AbstractList.javaClass AbstractList is an abstract implementation of the List interface, optimized for a backing store which supports random access.
AbstractMap.javaClass AbstractMap is an abstract implementation of the Map interface.
AbstractQueue.javaClass An abstract class which gives out skeletal implementations for some methods in Queue which include add, remove, and element that are based on offer, poll, and peek except that they throw exception to indicate the occurrence of some error instead of the return value of false or null.
AbstractSequentialList.javaClass AbstractSequentialList is an abstract implementation of the List interface. This implementation does not support adding.
AbstractSet.javaClass AbstractSet is an abstract implementation of the Set interface.
ArrayList.javaClass ArrayList is an implementation of List, backed by an array.
Arrays.javaClass This class contains various methods for manipulating arrays (such as sorting and searching).
Collection.javaInterface Collection is the root of the collection hierarchy.
Collections.javaClass Collections contains static methods which operate on Collection classes.
Comparator.javaInterface Comparator is used to compare two objects to determine their ordering in respect to each other.
ConcurrentModificationException.javaClass This runtime exception is thrown when a Collection is modified and an existing iterator on the Collection is used to modify the Collection as well.
Dictionary.javaClass Dictionary is a abstract class which is the superclass of all classes that associate keys with values, such as Hashtable.
DuplicateFormatFlagsException.javaClass The unchecked exception will be thrown out if there are duplicate flags given out in the format specifier.
EmptyStackException.javaClass
Enumeration.javaInterface An Enumeration is used to sequence over a collection of objects.
EventListener.javaInterface EventListener is the superclass of all event listener interfaces.
EventListenerProxy.javaClass This abstract class provides a simple wrapper to types of EventListener.
EventObject.javaClass EventObjects represent events.
FormatFlagsConversionMismatchException.javaClass The unchecked exception will be thrown out if a conversion and flags are incompatible.
FormatterClosedException.javaClass The unchecked exception will be thrown out if the formatter has been closed.
HashMap.javaClass HashMap is an implementation of Map.
HashSet.javaClass HashSet is an implementation of Set.
Hashtable.javaClass Hashtable associates keys with values.
IdentityHashMap.javaClass IdentityHashMap This is a variant on HashMap which tests equality by reference instead of by value.
IllegalFormatCodePointException.javaClass The unchecked exception will be thrown out if an invalid Unicode code point, which is Character.isValidCodePoint(int), is passed as a parameter to Formatter.
IllegalFormatConversionException.javaClass The unchecked exception will be thrown out when the parameter is incompatible with the corresponding format specifier.
IllegalFormatException.javaClass Unchecked Exception that is to be thrown out when a format string that contains either an illegal syntax or format specifier is transferred as a parameter.
IllegalFormatFlagsException.javaClass The unchecked exception will be thrown out if the combination of the format flags is illegal.
IllegalFormatPrecisionException.javaClass The unchecked exception will be thrown out when the precision is a negative other than -1, or the conversion does not support a precision or other cases when the precision is not supported.
IllegalFormatWidthException.javaClass The unchecked exception will be thrown out when the width is a negative other than -1, or the conversion does not support a width or other cases when the width is not supported.
InputMismatchException.javaClass An InputMismatchException is thrown by a scanner to indicate that the next token does not match the pattern the specified type.
InvalidPropertiesFormatException.javaClass
Iterator.javaInterface An Iterator is used to sequence over a collection of objects.
LinkedHashMap.javaClass LinkedHashMap is a variant on HashMap.
LinkedHashSet.javaClass LinkedHashSet is a variant on HashSet.
LinkedList.javaClass LinkedList is an implementation of List, backed by a linked list.
List.javaInterface List is a collection which maintains an ordering for its elements.
ListIterator.javaInterface An ListIterator is used to sequence over a List of objects.
ListResourceBundle.javaClass ListResourceBundle is the abstract superclass of classes which provide resources by implementing the getContents() method to return the list of resources.
Locale.javaClass A Locale object represents a specific geographical, political, or cultural region.
Map.javaInterface Map has a set of keys, each key is mapped to a single value.
MapEntry.javaClass MapEntry is an internal class which provides an implementation of Map.Entry.
MissingFormatArgumentException.javaClass The unchecked exception will be thrown out if there no corresponding argument with the specified conversion or an argument index that refers to an unexisting argument.
MissingFormatWidthException.javaClass The unchecked exception will be thrown out if the format width is missing but is required.
MissingResourceException.javaClass This runtime exception is thrown by ResourceBundle when a resouce bundle cannot be found or a resource is missing from a resource bundle.
NoSuchElementException.javaClass This runtime exception is thrown when trying to retrieve an element past the end of an Enumeration, or the first or last element from an empty Vector.
Observable.javaClass Observable is used to notify a group of Observer objects when a change occurs.
Observer.javaInterface Observer must be implemented by objects which are added to an Observable.
Properties.javaClass Properties is a Hashtable where the keys and values must be Strings.
Queue.javaInterface A kind of collection provides advanced operations than other basic collections, such as insertion, extraction, and inspection. Generally, a queue orders its elements by means of first-in-first-out.
Random.javaClass
RandomAccess.javaInterface RandomAccess is implemented by List implementations that support fast (usually constant time) random access.
ResourceBundle.javaClass Resource bundles contain locale-specific objects. When your program needs a locale-specific resource, a String for example, your program can load it from the resource bundle that is appropriate for the current user's locale.
Set.javaInterface Set is a collection which does not allow duplicate elements.
SortedMap.javaInterface SortedMap is a Map where the iterators sequence in order of the sorted keys.
SortedSet.javaInterface SortedSet is a Set which iterates its elements in sorted order.
Stack.javaClass Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects.
StringTokenizer.javaClass String tokenizer is used to break a string apart into tokens.
TooManyListenersException.javaClass This exception is thrown when an attempt is made to add more than one listener to an event source which only supports a single listener.
TreeMap.javaClass TreeMap is an implementation of SortedMap.
TreeSet.javaClass TreeSet is an implementation of SortedSet.
UnknownFormatConversionException.javaClass The unchecked exception will be thrown out if the format conversion is unknown.
UnknownFormatFlagsException.javaClass The unchecked exception will be thrown out if there is an unknown flag.
Vector.javaClass Vector is a variable size contiguous indexable array of Objects.
WeakHashMap.javaClass WeakHashMap is an implementation of Map with keys which are WeakReferences. The key/value mapping is removed when the key is no longer referenced.
w__w___w___.j__a___v_a2_s._c__o__m__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.