Uses of Interface
java.lang.Cloneable

Packages that use Cloneable
java.awt   
java.awt.geom   
java.io   
java.util   
 

Uses of Cloneable in java.awt
 

Classes in java.awt that implement Cloneable
 class Dimension
          The Dimension class encapsulates the width and height of a component (in integer precision) in a single object.
 class GridBagConstraints
          The GridBagConstraints class specifies constraints for components that are laid out using the GridBagLayout class.
 class Insets
          An Insets object is a representation of the borders of a container.
 class Point
          A point representing a location in (x, y) coordinate space, specified in integer precision.
 class Rectangle
          A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-left point (xy) in the coordinate space, its width, and its height.
 class RenderingHints
          The RenderingHints class contains rendering hints that can be used by the Graphics2D class, and classes that implement BufferedImageOp and Raster.
 

Uses of Cloneable in java.awt.geom
 

Classes in java.awt.geom that implement Cloneable
 class java.awt.geom.Dimension2D
          The Dimension2D class is to encapsulate a width and a height dimension.
 class java.awt.geom.Point2D
          The Point2D class defines a point representing a location in (x, y) coordinate space.
 class java.awt.geom.Rectangle2D
          The Rectangle2D class describes a rectangle defined by a location (x, y) and dimension (w x h).
 class java.awt.geom.RectangularShape
          RectangularShape is the base class for a number of Shape objects whose geometry is defined by a rectangular frame.
 

Uses of Cloneable in java.io
 

Classes in java.io that implement Cloneable
(package private) static class ObjectOutputStream.Stack
          Unsynchronized Stack.
 

Uses of Cloneable in java.util
 

Classes in java.util that implement Cloneable
 class ArrayList
          Resizable-array implementation of the List interface.
 class BitSet
          This class implements a vector of bits that grows as needed.
 class Calendar
          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.
 class Date
          The class Date represents a specific instant in time, with millisecond precision.
 class GregorianCalendar
          GregorianCalendar is a concrete subclass of Calendar and provides the standard calendar used by most of the world.
 class HashMap
          Hash table based implementation of the Map interface.
 class HashSet
          This class implements the Set interface, backed by a hash table (actually a HashMap instance).
 class Hashtable
          This class implements a hashtable, which maps keys to values.
 class LinkedList
          Linked list implementation of the List interface.
 class Locale
          A Locale object represents a specific geographical, political, or cultural region.
 class Properties
          The Properties class represents a persistent set of properties.
 class SimpleTimeZone
          SimpleTimeZone is a concrete subclass of TimeZone that represents a time zone for use with a Gregorian calendar.
 class Stack
          The Stack class represents a last-in-first-out (LIFO) stack of objects.
 class TimeZone
          TimeZone represents a time zone offset, and also figures out daylight savings.
 class TreeMap
          Red-Black tree based implementation of the SortedMap interface.
 class TreeSet
          This class implements the Set interface, backed by a TreeMap instance.
 class Vector
          The Vector class implements a growable array of objects.