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 » Apache Harmony Java SE » java package » 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 Arrays contains static methods which operate on arrays.
BitSet.javaClass The BitSet class implements a bit field.
Calendar.javaClass Calendar is an abstract class which provides the conversion between Dates and integer calendar fields, such as the month, year or minute.
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.
Currency.javaClass This class represents a currency as identified in the ISO 4217 currency codes.
Date.javaClass Date represents a specific moment in time, to the millisecond.
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.
EnumMap.javaClass
EnumSet.javaClass
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.
Formattable.javaInterface Any class that need to perform customer formatting by transferring converter specifier 's' to Formatter should implement the Formattable interface.
FormattableFlags.javaClass FormattableFlags are used as a parameter to method Formattable.formatTo() and instruct the output format in Formattables.
Formatter.javaClass Formatter provides the method to give out formatted string just like the printf-style.
FormatterClosedException.javaClass The unchecked exception will be thrown out if the formatter has been closed.
GregorianCalendar.javaClass GregorianCalendar provides the conversion between Dates and integer calendar fields, such as the month, year or minute, for the Gregorian calendar.
HashMap.javaClass HashMap is an implementation of Map.
HashSet.javaClass HashSet is an implementation of Set.
Hashtable.javaClass Hashtable associates keys with values.
HugeEnumSet.javaClass This is a concrete subclass of EnumSet designed specifically for enum type with more than 64 elements.
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 Locale represents a language/country/variant combination.
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.
MiniEnumSet.javaClass This is a concrete subclass of EnumSet designed specifically for enum type with less than or equal to 64 elements.
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 a missing 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.
PriorityQueue.javaClass PriorityQueue holds elements on a priority heap, which orders elements according to the comparator specified at construction or their natural order. If the queue uses natural order, any element that is not comparable is not permitted to insert to the queue. The least element of the specified ordering is stored at the head of the queue and the greatest element is stored at the tail of the queue. PriorityQueue is not synchronized.
Properties.javaClass Properties is a Hashtable where the keys and values must be Strings.
PropertyPermission.javaClass PropertyPermission objects represent permission to access system properties.
PropertyPermissionCollection.javaClass A PermissionCollection for holding PropertyPermissions.
PropertyResourceBundle.javaClass PropertyResourceBundle loads resources from an InputStream.
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 ResourceBundle is an abstract class which is the superclass of classes which provide locale specific resources.
Scanner.javaClass A parser that parses a text string of primitive types and strings with the help of regular expressions.
Set.javaInterface Set is a collection which does not allow duplicate elements.
SimpleTimeZone.javaClass SimpleTimeZone represents a local time zone and its daylight savings time rules for the gregorian calendar.
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.
Timer.javaClass Timers are used to schedule jobs for execution in a background process.
TimerTask.javaClass The TimerTask class is represents a task to run at specified time.
TimeZone.javaClass TimeZone is an abstract class which represents a local time zone and its daylight savings time rules.
TimeZones.javaClass
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.
UUID.javaClass

UUID is an immutable representation of a 128-bit universally unique identifier (UUID).

There are multiple, variant layouts of UUIDs, but this class is based upon variant 2 of RFC 4122, the Leach-Salz variant.

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.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.