java.util

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » j2me » java.util 
java.util
Contains the collection classes, and the date and time facilities. @since CLDC 1.0
Java Source File NameTypeComment
AbstractCollection.javaClass This class provides a skeletal implementation of the Collection interface, to minimize the effort required to implement this interface.
AbstractList.javaClass This class provides a skeletal implementation of the List interface to minimize the effort required to implement this interface backed by a "random access" data store (such as an array).
AbstractMap.javaClass This class provides a skeletal implementation of the Map interface, to minimize the effort required to implement this interface.
AbstractSequentialList.javaClass This class provides a skeletal implementation of the List interface to minimize the effort required to implement this interface backed by a "sequential access" data store (such as a linked list).
AbstractSet.javaClass This class provides a skeletal implementation of the Set interface to minimize the effort required to implement this interface.
ArrayList.javaClass Resizable-array implementation of the List interface.
Arrays.javaClass This class contains various methods for manipulating arrays (such as sorting and searching).
BitSet.javaClass This class implements a vector of bits that grows as needed.
Calendar.javaClass Calendar is an abstract base class for converting between a Date object and a set of integer fields such as YEAR, MONTH, DAY, HOUR, and so on.
Collection.javaInterface The root interface in the collection hierarchy.
Collections.javaClass This class consists exclusively of static methods that operate on or return collections.
Comparator.javaInterface A comparison function, which imposes a total ordering on some collection of objects.
ConcurrentModificationException.javaClass This exception may be thrown by methods that have detected concurrent modification of an object when such modification is not permissible.

For example, it is not generally permssible for one thread to modify a Collection while another thread is iterating over it.

Currency.javaClass Represents a currency.
Date.javaClass The class Date represents a specific instant in time, with millisecond precision.

This class has been subset for the J2ME based on the JDK 1.3 Date class. Many methods and variables have been pruned, and other methods simplified, in an effort to reduce the size of this class.

Although the Date class is intended to reflect coordinated universal time (UTC), it may not do so exactly, depending on the host environment of the Java Virtual Machine.

Dictionary.javaClass The Dictionary class is the abstract parent of any class, such as Hashtable, which maps keys to values.
EmptyStackException.javaClass Thrown by methods in the Stack class to indicate that the stack is empty.
Enumeration.javaInterface An object that implements the Enumeration interface generates a series of elements, one at a time.
EventListener.javaInterface A tagging interface that all event listener interfaces must extend.
EventListenerProxy.javaClass An abstract wrapper class for an EventListener class which associates a set of additional parameters with the listener.
EventObject.javaClass

The root class from which all event state objects shall be derived.

GregorianCalendar.javaClass GregorianCalendar is a concrete subclass of Calendar and provides the standard calendar used by most of the world.

The standard (Gregorian) calendar has 2 eras, BC and AD.

This implementation handles a single discontinuity, which corresponds by default to the date the Gregorian calendar was instituted (October 15, 1582 in some countries, later in others).

HashMap.javaClass Hash table based implementation of the Map interface.
HashSet.javaClass This class implements the Set interface, backed by a hash table (actually a HashMap instance).
Hashtable.javaClass This class implements a hashtable, which maps keys to values.
IdentityHashMap.javaClass This class implements the Map interface with a hash table, using reference-equality in place of object-equality when comparing keys (and values).
Iterator.javaInterface An iterator over a collection.
LinkedHashMap.javaClass

Hash table and linked list implementation of the Map interface, with predictable iteration order.

LinkedHashSet.javaClass

Hash table and linked list implementation of the Set interface, with predictable iteration order.

LinkedList.javaClass Linked list implementation of the List interface.
List.javaInterface An ordered collection (also known as a sequence).
ListIterator.javaInterface An iterator for lists that allows the programmer to traverse the list in either direction, modify the list during iteration, and obtain the iterator's current position in the list.
ListResourceBundle.javaClass ListResourceBundle is an abstract subclass of ResourceBundle that manages resources for a locale in a convenient and easy to use list.
Locale.javaClass A Locale object represents a specific geographical, political, or cultural region.
Map.javaInterface An object that maps keys to values.
MissingResourceException.javaClass Signals that a resource is missing.
NoSuchElementException.javaClass Thrown by the nextElement method of an Enumeration to indicate that there are no more elements in the enumeration.
Observable.javaClass This class represents an observable object, or "data" in the model-view paradigm.
Observer.javaInterface A class can implement the Observer interface when it wants to be informed of changes in observable objects.
Properties.javaClass The Properties class represents a persistent set of properties.
PropertyPermission.javaClass This class is for property permissions.

The name is the name of the property ("java.home", "os.name", etc).

PropertyResourceBundle.javaClass PropertyResourceBundle is a concrete subclass of ResourceBundle that manages resources for a locale using a set of static strings from a property file.
Random.javaClass An instance of this class is used to generate a stream of pseudorandom numbers.
RandomAccess.javaInterface Marker interface used by List implementations to indicate that they support fast (generally 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.
ResourceBundleEnumeration.javaClass Implements an Enumeration that combines elements from a Set and an Enumeration.
Set.javaInterface A collection that contains no duplicate elements.
SimpleTimeZone.javaClass SimpleTimeZone is a concrete subclass of TimeZone that represents a time zone for use with a Gregorian calendar. The class holds an offset from GMT, called raw offset, and start and end rules for a daylight saving time schedule.
SortedMap.javaInterface A map that further guarantees that it will be in ascending key order, sorted according to the natural ordering of its keys (see the Comparable interface), or by a comparator provided at sorted map creation time.
SortedSet.javaInterface A set that further guarantees that its iterator will traverse the set in ascending element order, sorted according to the natural ordering of its elements (see Comparable), or by a Comparator provided at sorted set creation time.
Stack.javaClass The Stack class represents a last-in-first-out (LIFO) stack of objects.
StringTokenizer.javaClass The string tokenizer class allows an application to break a string into tokens.
Timer.javaClass A facility for threads to schedule tasks for future execution in a background thread.
TimerTask.javaClass A task that can be scheduled for one-time or repeated execution by a Timer.
TimeZone.javaClass TimeZone represents a time zone offset, and also figures out daylight savings.

Typically, you get a TimeZone using getDefault which creates a TimeZone based on the time zone where the program is running.

TooManyListenersException.javaClass

The TooManyListenersException Exception is used as part of the Java Event model to annotate and implement a unicast special case of a multicast Event Source.

The presence of a "throws TooManyListenersException" clause on any given concrete implementation of the normally multicast "void addXyzEventListener" event listener registration pattern is used to annotate that interface as implementing a unicast Listener special case, that is, that one and only one Listener may be registered on the particular event listener source concurrently.


See Also:   java.util.EventObject
See Also:   java.util.EventListener
version:
   1.10 00/02/02
author:
   Laurence P.
TreeMap.javaClass Red-Black tree based implementation of the SortedMap interface. This class guarantees that the map will be in ascending key order, sorted according to the natural order for the key's class (see Comparable), or by the comparator provided at creation time, depending on which constructor is used.

This implementation provides guaranteed log(n) time cost for the containsKey, get, put and remove operations.

TreeSet.javaClass This class implements the Set interface, backed by a TreeMap instance.
Vector.javaClass The Vector class implements a growable array of objects.
WeakHashMap.javaClass A hashtable-based Map implementation with weak keys. An entry in a WeakHashMap will automatically be removed when its key is no longer in ordinary use.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.