Tabnine Logo
TreeMap$KeySet
Code IndexAdd Tabnine to your IDE (free)

How to use
TreeMap$KeySet
in
java.util

Best Java code snippets using java.util.TreeMap$KeySet (Showing top 20 results out of 315)

origin: jtulach/bck2brwsr

public boolean remove(Object o) {
  int oldSize = size();
  m.remove(o);
  return size() != oldSize;
}
public NavigableSet<E> subSet(E fromElement, boolean fromInclusive,
origin: FlexoVM/flexovm

@Override public Set<K> keySet() {
  KeySet result = keySet;
  return result != null ? result : (keySet = new KeySet());
}
origin: jtulach/bck2brwsr

  public NavigableSet<E> descendingSet() {
    return new KeySet(m.descendingMap());
  }
}
origin: FlexoVM/flexovm

public NavigableSet<K> navigableKeySet() {
  KeySet result = keySet;
  return result != null ? result : (keySet = new KeySet());
}
origin: jtulach/bck2brwsr

public SortedSet<E> subSet(E fromElement, E toElement) {
  return subSet(fromElement, true, toElement, false);
}
public SortedSet<E> headSet(E toElement) {
origin: com.jtransc/jtransc-rt

@Override public Set<K> keySet() {
  KeySet result = keySet;
  return result != null ? result : (keySet = new KeySet());
}
origin: org.apidesign.bck2brwsr/emul

  public NavigableSet<E> descendingSet() {
    return new KeySet(m.descendingMap());
  }
}
origin: org.apidesign.bck2brwsr/emul

public SortedSet<E> subSet(E fromElement, E toElement) {
  return subSet(fromElement, true, toElement, false);
}
public SortedSet<E> headSet(E toElement) {
origin: org.apidesign.bck2brwsr/emul

public SortedSet<E> tailSet(E fromElement) {
  return tailSet(fromElement, true);
}
public NavigableSet<E> descendingSet() {
origin: com.mobidevelop.robovm/robovm-rt

@Override public Set<K> keySet() {
  KeySet result = keySet;
  return result != null ? result : (keySet = new KeySet());
}
origin: com.gluonhq/robovm-rt

public NavigableSet<K> navigableKeySet() {
  KeySet result = keySet;
  return result != null ? result : (keySet = new KeySet());
}
origin: com.gluonhq/robovm-rt

@Override public Set<K> keySet() {
  KeySet result = keySet;
  return result != null ? result : (keySet = new KeySet());
}
origin: com.jtransc/jtransc-rt

public NavigableSet<K> navigableKeySet() {
  KeySet result = keySet;
  return result != null ? result : (keySet = new KeySet());
}
origin: org.apidesign.bck2brwsr/emul

public NavigableSet<E> headSet(E toElement, boolean inclusive) {
  return new KeySet<>(m.headMap(toElement, inclusive));
}
public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
origin: ibinti/bugvm

public NavigableSet<K> navigableKeySet() {
  KeySet result = keySet;
  return result != null ? result : (keySet = new KeySet());
}
origin: jtulach/bck2brwsr

public NavigableSet<E> subSet(E fromElement, boolean fromInclusive,
               E toElement,   boolean toInclusive) {
  return new KeySet<>(m.subMap(fromElement, fromInclusive,
                 toElement,   toInclusive));
}
public NavigableSet<E> headSet(E toElement, boolean inclusive) {
origin: jtulach/bck2brwsr

/**
 * @since 1.6
 */
public NavigableSet<K> navigableKeySet() {
  KeySet<K> nks = navigableKeySet;
  return (nks != null) ? nks : (navigableKeySet = new KeySet(this));
}
origin: ibinti/bugvm

@Override public Set<K> keySet() {
  KeySet result = keySet;
  return result != null ? result : (keySet = new KeySet());
}
origin: jtulach/bck2brwsr

public final NavigableSet<K> navigableKeySet() {
  KeySet<K> nksv = navigableKeySetView;
  return (nksv != null) ? nksv :
    (navigableKeySetView = new TreeMap.KeySet(this));
}
origin: MobiVM/robovm

public NavigableSet<K> navigableKeySet() {
  KeySet result = keySet;
  return result != null ? result : (keySet = new KeySet());
}
java.utilTreeMap$KeySet

Most used methods

  • <init>
  • headSet
  • size
  • subSet
  • tailSet

Popular in Java

  • Creating JSON documents from java classes using gson
  • scheduleAtFixedRate (ScheduledExecutorService)
  • compareTo (BigDecimal)
  • getSupportFragmentManager (FragmentActivity)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • Github Copilot alternatives
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