문서의 이전 판입니다!


Map<K,V>

public interface Map<K,V>

static Map.Entry<K,V>

  • static Map.Entry<K,V>.comparingByKey()Comparator<Map.Entry<K,V»
    static Map.Entry<K,V>.comparingByKey(cmp)Comparator<Map.Entry<K,V»
    • Comparator<? super K> cmp
  • static Map.Entry<K,V>.comparingByValue()Comparator<Map.Entry<K,V»
    static Map.Entry<K,V>.comparingByValue(cmp)Comparator<Map.Entry<K,V»
    • Comparator<? super K> cmp
  • Map.Entry<K,V>.equals(o)boolean
    • Object o
  • Map.Entry<K,V>.getKey()K
  • Map.Entry<K,V>.getValue()V
  • Map.Entry<K,V>.hashCode()int
  • Map.Entry<K,V>.setValue(value)V
    • V value
  • default Map<K,V>.compute(key, remappingFunction)V
    • K key
    • BiFunction<? super K,? super V,? extends V> remappingFunction
  • default Map<K,V>.computeIfAbsent(key, mappingFunction)V
    • K key
    • Function<? super K,? super V,? extends V> mappingFunction
  • default Map<K,V>.computeIfPresent(key, remappingFunction)V
    • K key
    • BiFunction<? super K,? super V,? extends V> remappingFunction
  • default Map<K,V>.forEach(action)void
    • BiConsumer<? super K,? super V> action
  • default Map<K,V>.getOrDefault(key, defaultValue)V
    • Object key
    • V defaultValue
  • default Map<K,V>.merge(key, value, remappingFunction)V
    • K key
    • V value
    • BiFunction<? super K,? super V,? extends V> remappingFunction
  • default Map<K,V>.putIfAbsent(key, value)V
    • K key
    • V value
  • default Map<K,V>.remove(key, value)V
    • Object key
    • Object value
  • default Map<K,V>.replace(key, value)V
    • K key
    • V value
  • default Map<K,V>.replace(key, oldValue, newValue)boolean
    • K key
    • V oldValue
    • V newValue
  • default Map<K,V>.replaceAll(function)void
    • BiFunction<? super K,? super V,? extends V> function
  • /home/u613600155/domains/cli.zerotymer.net/public_html/data/attic/java/util/map.1707176833.txt.gz
  • 마지막으로 수정됨: 2024/02/05 23:47
  • 저자 writer