java.util.concurrent.ConcurrentSkipListMap.getNear()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(8.6k)|赞(0)|评价(0)|浏览(97)

本文整理了Java中java.util.concurrent.ConcurrentSkipListMap.getNear()方法的一些代码示例,展示了ConcurrentSkipListMap.getNear()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ConcurrentSkipListMap.getNear()方法的具体详情如下:
包路径:java.util.concurrent.ConcurrentSkipListMap
类名称:ConcurrentSkipListMap
方法名:getNear

ConcurrentSkipListMap.getNear介绍

[英]Returns SimpleImmutableEntry for results of findNear.
[中]返回findNear结果的SimpleImmutableEntry。

代码示例

代码示例来源:origin: robovm/robovm

/**
 * Returns a key-value mapping associated with the least key
 * greater than or equal to the given key, or {@code null} if
 * there is no such entry. The returned entry does <em>not</em>
 * support the {@code Entry.setValue} method.
 *
 * @throws ClassCastException {@inheritDoc}
 * @throws NullPointerException if the specified key is null
 */
public Map.Entry<K,V> ceilingEntry(K key) {
  return getNear(key, GT|EQ);
}

代码示例来源:origin: robovm/robovm

/**
 * Returns a key-value mapping associated with the greatest key
 * strictly less than the given key, or {@code null} if there is
 * no such key. The returned entry does <em>not</em> support the
 * {@code Entry.setValue} method.
 *
 * @throws ClassCastException {@inheritDoc}
 * @throws NullPointerException if the specified key is null
 */
public Map.Entry<K,V> lowerEntry(K key) {
  return getNear(key, LT);
}

代码示例来源:origin: robovm/robovm

/**
 * Returns a key-value mapping associated with the greatest key
 * less than or equal to the given key, or {@code null} if there
 * is no such key. The returned entry does <em>not</em> support
 * the {@code Entry.setValue} method.
 *
 * @param key the key
 * @throws ClassCastException {@inheritDoc}
 * @throws NullPointerException if the specified key is null
 */
public Map.Entry<K,V> floorEntry(K key) {
  return getNear(key, LT|EQ);
}

代码示例来源:origin: robovm/robovm

/**
 * Returns a key-value mapping associated with the least key
 * strictly greater than the given key, or {@code null} if there
 * is no such key. The returned entry does <em>not</em> support
 * the {@code Entry.setValue} method.
 *
 * @param key the key
 * @throws ClassCastException {@inheritDoc}
 * @throws NullPointerException if the specified key is null
 */
public Map.Entry<K,V> higherEntry(K key) {
  return getNear(key, GT);
}

代码示例来源:origin: com.jtransc/jtransc-rt

/**
 * Returns a key-value mapping associated with the greatest key
 * strictly less than the given key, or {@code null} if there is
 * no such key. The returned entry does <em>not</em> support the
 * {@code Entry.setValue} method.
 *
 * @throws ClassCastException {@inheritDoc}
 * @throws NullPointerException if the specified key is null
 */
public Map.Entry<K,V> lowerEntry(K key) {
  return getNear(key, LT);
}

代码示例来源:origin: ibinti/bugvm

/**
 * Returns a key-value mapping associated with the greatest key
 * less than or equal to the given key, or {@code null} if there
 * is no such key. The returned entry does <em>not</em> support
 * the {@code Entry.setValue} method.
 *
 * @param key the key
 * @throws ClassCastException {@inheritDoc}
 * @throws NullPointerException if the specified key is null
 */
public Map.Entry<K,V> floorEntry(K key) {
  return getNear(key, LT|EQ);
}

代码示例来源:origin: ibinti/bugvm

/**
 * Returns a key-value mapping associated with the greatest key
 * strictly less than the given key, or {@code null} if there is
 * no such key. The returned entry does <em>not</em> support the
 * {@code Entry.setValue} method.
 *
 * @throws ClassCastException {@inheritDoc}
 * @throws NullPointerException if the specified key is null
 */
public Map.Entry<K,V> lowerEntry(K key) {
  return getNear(key, LT);
}

代码示例来源:origin: MobiVM/robovm

/**
 * Returns a key-value mapping associated with the greatest key
 * strictly less than the given key, or {@code null} if there is
 * no such key. The returned entry does <em>not</em> support the
 * {@code Entry.setValue} method.
 *
 * @throws ClassCastException {@inheritDoc}
 * @throws NullPointerException if the specified key is null
 */
public Map.Entry<K,V> lowerEntry(K key) {
  return getNear(key, LT);
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

/**
 * Returns a key-value mapping associated with the least key
 * greater than or equal to the given key, or {@code null} if
 * there is no such entry. The returned entry does <em>not</em>
 * support the {@code Entry.setValue} method.
 *
 * @throws ClassCastException {@inheritDoc}
 * @throws NullPointerException if the specified key is null
 */
public Map.Entry<K,V> ceilingEntry(K key) {
  return getNear(key, GT|EQ);
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Returns a key-value mapping associated with the least key
 * strictly greater than the given key, or {@code null} if there
 * is no such key. The returned entry does <em>not</em> support
 * the {@code Entry.setValue} method.
 *
 * @param key the key
 * @throws ClassCastException {@inheritDoc}
 * @throws NullPointerException if the specified key is null
 */
public Map.Entry<K,V> higherEntry(K key) {
  return getNear(key, GT);
}

代码示例来源:origin: com.jtransc/jtransc-rt

/**
 * Returns a key-value mapping associated with the greatest key
 * less than or equal to the given key, or {@code null} if there
 * is no such key. The returned entry does <em>not</em> support
 * the {@code Entry.setValue} method.
 *
 * @param key the key
 * @throws ClassCastException {@inheritDoc}
 * @throws NullPointerException if the specified key is null
 */
public Map.Entry<K,V> floorEntry(K key) {
  return getNear(key, LT|EQ);
}

代码示例来源:origin: com.gluonhq/robovm-rt

/**
 * Returns a key-value mapping associated with the greatest key
 * strictly less than the given key, or {@code null} if there is
 * no such key. The returned entry does <em>not</em> support the
 * {@code Entry.setValue} method.
 *
 * @throws ClassCastException {@inheritDoc}
 * @throws NullPointerException if the specified key is null
 */
public Map.Entry<K,V> lowerEntry(K key) {
  return getNear(key, LT);
}

代码示例来源:origin: MobiVM/robovm

/**
 * Returns a key-value mapping associated with the least key
 * greater than or equal to the given key, or {@code null} if
 * there is no such entry. The returned entry does <em>not</em>
 * support the {@code Entry.setValue} method.
 *
 * @throws ClassCastException {@inheritDoc}
 * @throws NullPointerException if the specified key is null
 */
public Map.Entry<K,V> ceilingEntry(K key) {
  return getNear(key, GT|EQ);
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Returns a key-value mapping associated with the greatest key
 * strictly less than the given key, or {@code null} if there is
 * no such key. The returned entry does <em>not</em> support the
 * {@code Entry.setValue} method.
 *
 * @throws ClassCastException {@inheritDoc}
 * @throws NullPointerException if the specified key is null
 */
public Map.Entry<K,V> lowerEntry(K key) {
  return getNear(key, LT);
}

代码示例来源:origin: org.codehaus.jsr166-mirror/jsr166

/**
 * Returns a key-value mapping associated with the least key
 * greater than or equal to the given key, or <tt>null</tt> if
 * there is no such entry. The returned entry does <em>not</em>
 * support the <tt>Entry.setValue</tt> method.
 *
 * @throws ClassCastException {@inheritDoc}
 * @throws NullPointerException if the specified key is null
 */
public Map.Entry<K,V> ceilingEntry(K key) {
  return getNear(key, GT|EQ);
}

代码示例来源:origin: MobiVM/robovm

/**
 * Returns a key-value mapping associated with the least key
 * strictly greater than the given key, or {@code null} if there
 * is no such key. The returned entry does <em>not</em> support
 * the {@code Entry.setValue} method.
 *
 * @param key the key
 * @throws ClassCastException {@inheritDoc}
 * @throws NullPointerException if the specified key is null
 */
public Map.Entry<K,V> higherEntry(K key) {
  return getNear(key, GT);
}

代码示例来源:origin: ibinti/bugvm

/**
 * Returns a key-value mapping associated with the least key
 * greater than or equal to the given key, or {@code null} if
 * there is no such entry. The returned entry does <em>not</em>
 * support the {@code Entry.setValue} method.
 *
 * @throws ClassCastException {@inheritDoc}
 * @throws NullPointerException if the specified key is null
 */
public Map.Entry<K,V> ceilingEntry(K key) {
  return getNear(key, GT|EQ);
}

代码示例来源:origin: org.apidesign.bck2brwsr/emul

/**
 * Returns a key-value mapping associated with the greatest key
 * strictly less than the given key, or <tt>null</tt> if there is
 * no such key. The returned entry does <em>not</em> support the
 * <tt>Entry.setValue</tt> method.
 *
 * @throws ClassCastException {@inheritDoc}
 * @throws NullPointerException if the specified key is null
 */
public Map.Entry<K,V> lowerEntry(K key) {
  return getNear(key, LT);
}

代码示例来源:origin: org.apidesign.bck2brwsr/emul

/**
 * Returns a key-value mapping associated with the least key
 * greater than or equal to the given key, or <tt>null</tt> if
 * there is no such entry. The returned entry does <em>not</em>
 * support the <tt>Entry.setValue</tt> method.
 *
 * @throws ClassCastException {@inheritDoc}
 * @throws NullPointerException if the specified key is null
 */
public Map.Entry<K,V> ceilingEntry(K key) {
  return getNear(key, GT|EQ);
}

代码示例来源:origin: org.codehaus.jsr166-mirror/jsr166

/**
 * Returns a key-value mapping associated with the greatest key
 * strictly less than the given key, or <tt>null</tt> if there is
 * no such key. The returned entry does <em>not</em> support the
 * <tt>Entry.setValue</tt> method.
 *
 * @throws ClassCastException {@inheritDoc}
 * @throws NullPointerException if the specified key is null
 */
public Map.Entry<K,V> lowerEntry(K key) {
  return getNear(key, LT);
}

相关文章

微信公众号

最新文章

更多

ConcurrentSkipListMap类方法