Codota Logo
FastTreeMap.getFast
Code IndexAdd Codota to your IDE (free)

How to use
getFast
method
in
org.apache.commons.collections.FastTreeMap

Best Java code snippets using org.apache.commons.collections.FastTreeMap.getFast (Showing top 7 results out of 315)

  • Common ways to obtain FastTreeMap
private void myMethod () {
FastTreeMap f =
  • Codota IconSortedMap map;new FastTreeMap(map)
  • Smart code suggestions by Codota
}
origin: commons-collections/commons-collections

/**
 * Return a shallow copy of this <code>FastTreeMap</code> instance.
 * The keys and values themselves are not copied.
 * 
 * @return a clone of this map
 */
public Object clone() {
  FastTreeMap results = null;
  if (fast) {
    results = new FastTreeMap(map);
  } else {
    synchronized (map) {
      results = new FastTreeMap(map);
    }
  }
  results.setFast(getFast());
  return (results);
}
origin: wildfly/wildfly

/**
 * Return a shallow copy of this <code>FastTreeMap</code> instance.
 * The keys and values themselves are not copied.
 * 
 * @return a clone of this map
 */
public Object clone() {
  FastTreeMap results = null;
  if (fast) {
    results = new FastTreeMap(map);
  } else {
    synchronized (map) {
      results = new FastTreeMap(map);
    }
  }
  results.setFast(getFast());
  return (results);
}
origin: org.apache.directory.api/api-ldap-client-all

/**
 * Return a shallow copy of this <code>FastTreeMap</code> instance.
 * The keys and values themselves are not copied.
 * 
 * @return a clone of this map
 */
public Object clone() {
  FastTreeMap results = null;
  if (fast) {
    results = new FastTreeMap(map);
  } else {
    synchronized (map) {
      results = new FastTreeMap(map);
    }
  }
  results.setFast(getFast());
  return (results);
}
origin: com.alibaba.citrus.tool/antx-autoexpand

/**
 * Return a shallow copy of this <code>FastTreeMap</code> instance.
 * The keys and values themselves are not copied.
 * 
 * @return a clone of this map
 */
public Object clone() {
  FastTreeMap results = null;
  if (fast) {
    results = new FastTreeMap(map);
  } else {
    synchronized (map) {
      results = new FastTreeMap(map);
    }
  }
  results.setFast(getFast());
  return (results);
}
origin: org.apache.openjpa/openjpa-all

/**
 * Return a shallow copy of this <code>FastTreeMap</code> instance.
 * The keys and values themselves are not copied.
 * 
 * @return a clone of this map
 */
public Object clone() {
  FastTreeMap results = null;
  if (fast) {
    results = new FastTreeMap(map);
  } else {
    synchronized (map) {
      results = new FastTreeMap(map);
    }
  }
  results.setFast(getFast());
  return (results);
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-collections

/**
 * Return a shallow copy of this <code>FastTreeMap</code> instance.
 * The keys and values themselves are not copied.
 * 
 * @return a clone of this map
 */
public Object clone() {
  FastTreeMap results = null;
  if (fast) {
    results = new FastTreeMap(map);
  } else {
    synchronized (map) {
      results = new FastTreeMap(map);
    }
  }
  results.setFast(getFast());
  return (results);
}
origin: org.jboss.eap/wildfly-client-all

/**
 * Return a shallow copy of this <code>FastTreeMap</code> instance.
 * The keys and values themselves are not copied.
 * 
 * @return a clone of this map
 */
public Object clone() {
  FastTreeMap results = null;
  if (fast) {
    results = new FastTreeMap(map);
  } else {
    synchronized (map) {
      results = new FastTreeMap(map);
    }
  }
  results.setFast(getFast());
  return (results);
}
org.apache.commons.collectionsFastTreeMapgetFast

Javadoc

Returns true if this map is operating in fast mode.

Popular methods of FastTreeMap

  • <init>
    Construct a new map with the same mappings as the specified map, sorted according to the same orderi
  • setFast
    Sets whether this map is operating in fast mode.
  • remove
    Remove any mapping for this key, and return any previously mapped value.
  • put
    Associate the specified value with the specified key in this map. If the map previously contained a

Popular in Java

  • Reactive rest calls using spring rest template
  • getContentResolver (Context)
  • onCreateOptionsMenu (Activity)
  • findViewById (Activity)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • FileWriter (java.io)
    Convenience class for writing character files. The constructors of this class assume that the defaul
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • JList (javax.swing)
  • LogFactory (org.apache.commons.logging)
    A minimal incarnation of Apache Commons Logging's LogFactory API, providing just the common Log look
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now