THashSet.writeEntries
Code IndexAdd Codota to your IDE (free)

Best code snippets using gnu.trove.set.hash.THashSet.writeEntries(Showing top 2 results out of 315)

origin: net.sf.trove4j/trove4j

public void writeExternal(ObjectOutput out) throws IOException {
  // VERSION
  out.writeByte(1);
  // NOTE: Super was not written in version 0
  super.writeExternal(out);
  // NUMBER OF ENTRIES
  out.writeInt(_size);
  // ENTRIES
  writeEntries(out);
}
origin: pingcap/tispark

public void writeExternal(ObjectOutput out) throws IOException {
  // VERSION
  out.writeByte(1);
  // NOTE: Super was not written in version 0
  super.writeExternal(out);
  // NUMBER OF ENTRIES
  out.writeInt(_size);
  // ENTRIES
  writeEntries(out);
}
gnu.trove.set.hashTHashSetwriteEntries

Popular methods of THashSet

  • size
  • add
    Inserts a value into the set.
  • addAll
    Adds all of the elements in collection to the set.
  • contains
  • capacity
  • remove
    Removes obj from the set.
  • trimToSize
  • containsAll
    Tests the set to determine if all of the elements incollection are present.
  • ensureCapacity
  • forEach
  • index
  • insertKey
  • index,
  • insertKey,
  • iterator,
  • postInsertHook,
  • removeAt,
  • reportPotentialConcurrentMod,
  • setUp,
  • throwObjectContractViolation,
  • clear

Popular classes and methods

  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • scheduleAtFixedRate (Timer)
    Schedules the specified task for repeated fixed-rate execution, beginning after the specified delay.
  • setContentView (Activity)
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • URL (java.net)
    Class URL represents a Uniform Resource Locator, a pointer to a "resource" on the World Wide Web.
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • IsNull (org.hamcrest.core)
    Is the value null?

For IntelliJ IDEA and
Android Studio

  • Codota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutContact Us
  • Terms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)