Tabnine Logo
Int2ObjectSortedMap.headMap
Code IndexAdd Tabnine to your IDE (free)

How to use
headMap
method
in
it.unimi.dsi.fastutil.ints.Int2ObjectSortedMap

Best Java code snippets using it.unimi.dsi.fastutil.ints.Int2ObjectSortedMap.headMap (Showing top 5 results out of 315)

origin: it.unimi.dsi/fastutil

/**
 * {@inheritDoc}
 * <p>
 * Note that this specification strengthens the one given in
 * {@link SortedMap#headMap(Object)}.
 * 
 * @deprecated Please use the corresponding type-specific method instead.
 */
@Deprecated
@Override
default Int2ObjectSortedMap<V> headMap(final Integer to) {
  return headMap((to).intValue());
}
/**
origin: it.unimi.dsi/fastutil

@Override
public Int2ObjectSortedMap<V> headMap(final int to) {
  return new SynchronizedSortedMap<>(sortedMap.headMap(to), sync);
}
@Override
origin: it.unimi.dsi/fastutil

@Override
public Int2ObjectSortedMap<V> headMap(final int to) {
  return new UnmodifiableSortedMap<>(sortedMap.headMap(to));
}
@Override
origin: it.unimi.dsi/fastutil

/**
 * {@inheritDoc}
 * 
 * @deprecated Please use the corresponding type-specific method instead.
 */
@Deprecated
@Override
public Int2ObjectSortedMap<V> headMap(final Integer to) {
  return new SynchronizedSortedMap<>(sortedMap.headMap(to), sync);
}
/**
origin: it.unimi.dsi/fastutil

/**
 * {@inheritDoc}
 * 
 * @deprecated Please use the corresponding type-specific method instead.
 */
@Deprecated
@Override
public Int2ObjectSortedMap<V> headMap(final Integer to) {
  return new UnmodifiableSortedMap<>(sortedMap.headMap(to));
}
/**
it.unimi.dsi.fastutil.intsInt2ObjectSortedMapheadMap

Javadoc

Note that this specification strengthens the one given in SortedMap#headMap(Object).

Popular methods of Int2ObjectSortedMap

  • values
  • firstIntKey
    Returns the first (lowest) key currently in this map.
  • lastIntKey
    Returns the last (highest) key currently in this map.
  • subMap
    Note that this specification strengthens the one given in SortedMap#subMap(Object,Object).
  • comparator
  • firstKey
  • get
  • int2ObjectEntrySet
  • isEmpty
  • keySet
  • lastKey
  • put
  • lastKey,
  • put,
  • tailMap

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getSharedPreferences (Context)
  • setRequestProperty (URLConnection)
  • setContentView (Activity)
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Best IntelliJ plugins
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