Tabnine Logo
FastTreeMap.getFast
Code IndexAdd Tabnine 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)

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

  • Finding current android device location
  • getSystemService (Context)
  • getContentResolver (Context)
  • startActivity (Activity)
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • ImageIO (javax.imageio)
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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