Tabnine Logo
AbstractObjectList.clone
Code IndexAdd Tabnine to your IDE (free)

How to use
clone
method
in
org.jfree.util.AbstractObjectList

Best Java code snippets using org.jfree.util.AbstractObjectList.clone (Showing top 6 results out of 315)

origin: jfree/jcommon

/**
 * Returns an independent copy of the list.
 * 
 * @return A clone.
 * 
 * @throws CloneNotSupportedException if an item in the list cannot be cloned.
 */
public Object clone() throws CloneNotSupportedException {
  return super.clone();
}
 
origin: org.jfree/jcommon

/**
 * Returns an independent copy of the list.
 *
 * @return A clone.
 *
 * @throws CloneNotSupportedException if an item in the list does not
 *         support cloning.
 */
public Object clone() throws CloneNotSupportedException {
  return super.clone();
}
origin: org.jfree/com.springsource.org.jfree

/**
 * Returns an independent copy of the list.
 * 
 * @return A clone.
 * 
 * @throws CloneNotSupportedException if an item in the list does not support cloning.
 */
public Object clone() throws CloneNotSupportedException {
  return super.clone();
}
 
origin: jfree/jcommon

/**
 * Returns an independent copy of the list.
 *
 * @return A clone.
 *
 * @throws CloneNotSupportedException if an item in the list does not
 *         support cloning.
 */
public Object clone() throws CloneNotSupportedException {
  return super.clone();
}
origin: org.jfree/jcommon

/**
 * Returns an independent copy of the list.
 * 
 * @return A clone.
 * 
 * @throws CloneNotSupportedException if an item in the list cannot be cloned.
 */
public Object clone() throws CloneNotSupportedException {
  return super.clone();
}
 
origin: org.jfree/com.springsource.org.jfree

/**
 * Returns an independent copy of the list.
 * 
 * @return A clone.
 * 
 * @throws CloneNotSupportedException if an item in the list cannot be cloned.
 */
public Object clone() throws CloneNotSupportedException {
  return super.clone();
}
 
org.jfree.utilAbstractObjectListclone

Javadoc

Clones the list of objects. The objects in the list are not cloned, so this is method makes a 'shallow' copy of the list.

Popular methods of AbstractObjectList

  • equals
    Tests this list for equality with another object.
  • get
    Returns the object at the specified index, if there is one, ornull.
  • hashCode
    Returns a hash code value for the object.
  • indexOf
    Returns the index of the specified object, or -1 if the object is not in the list.
  • set
    Sets an object reference (overwriting any existing object).
  • size
    Returns the size of the list.

Popular in Java

  • Reactive rest calls using spring rest template
  • onCreateOptionsMenu (Activity)
  • startActivity (Activity)
  • getExternalFilesDir (Context)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • Notification (javax.management)
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Sublime Text for Python
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now