Submitted by heartin on Sun, 10/11/2015 - 02:50
JAXB provides a Java API that can map Java objects to XML content and XML content to Java objects.
Important notes on JAXB
-
JAXB stands for Java Architecture for XML Binding
-
Major components of JAXB are:
Submitted by heartin on Sat, 10/10/2015 - 22:46
TreeSet Class implements NavigableSet and is based on a TreeMap.
Important properties of a TreeMap class
-
The elements are ordered using their natural ordering, or by a Comparator
-
Provides guaranteed log(n) time cost for the basic operations like add, remove and contains.
Submitted by heartin on Sat, 10/10/2015 - 22:23
HashSet Class implements the Set interface, backed by a HashMap instance.
Important properties of HashSet class
-
Makes no order guarantees.
-
Permits the null element.
-
Offers constant time performance for the basic operations like add, remove, contains and size,
Submitted by heartin on Sat, 10/10/2015 - 19:52
Set is a collection that models the mathematical set abstraction and contains no duplicate elements.
Important properties of Set interface
-
Sets contain no pair of elements e1 and e2 such that e1.equals(e2), and at most one null element.
-
The Set interface places additional stipulations on:
Submitted by heartin on Sat, 10/10/2015 - 12:29
Deque stands for "double ended queue". Deque Interface extends Queue interface to provide a linear collection that supports element insertion and removal at both ends.
Important properties of Deque interface
-
Deque interface supports capacity-restricted deques as well as those with no fixed size limit.
-
Deque interface defines methods to access the elements at both ends of the deque.
-
Methods are provided to insert, remove, and examine the element.
Pages