Top Description Inners Fields Constructors Methods
io.netty.util.collection

public final Class ByteCollections

extends Object
Class Inheritance
Imports
java.util.Collection, .Collections, .Iterator, .Map, .NoSuchElementException, .Set

Utilities for byte-based primitive collections.

Nested and Inner Type Summary

Modifier and TypeClass and Description
private static class
private static class
ByteCollections.UnmodifiableMap<
the value type stored in the map.
V
>

An unmodifiable wrapper around a ByteObjectMap.

Field Summary

Modifier and TypeField and Description
private static final ByteObjectMap<Object>

Constructor Summary

AccessConstructor and Description
private

Method Summary

Modifier and TypeMethod and Description
public static <V> ByteObjectMap<V>
emptyMap()

Returns an unmodifiable empty ByteObjectMap.

public static <V> ByteObjectMap<V>
unmodifiableMap(final ByteObjectMap<V> map)

Creates an unmodifiable wrapper around the given map.

Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

EMPTY_MAPback to summary
private static final ByteObjectMap<Object> EMPTY_MAP

Constructor Detail

ByteCollectionsback to summary
private ByteCollections()

Method Detail

emptyMapback to summary
public static <V> ByteObjectMap<V> emptyMap()

Returns an unmodifiable empty ByteObjectMap.

Annotations
@SuppressWarnings:unchecked
unmodifiableMapback to summary
public static <V> ByteObjectMap<V> unmodifiableMap(final ByteObjectMap<V> map)

Creates an unmodifiable wrapper around the given map.

io.netty.util.collection back to summary

private final Class ByteCollections.EmptyMap

extends Object
implements ByteObjectMap<Object>
Class Inheritance
All Implemented Interfaces
io.netty.util.collection.ByteObjectMap, java.util.Map

An empty map. All operations that attempt to modify the map are unsupported.

Constructor Summary

AccessConstructor and Description
private

Method Summary

Modifier and TypeMethod and Description
public void
clear()

Implements java.util.Map.clear.

Removes all of the mappings from this map (optional operation).
public boolean
containsKey(Object
key whose presence in this map is to be tested
key
)

Implements java.util.Map.containsKey.

Returns true if this map contains a mapping for the specified key.
public boolean
containsKey(byte key)

Implements io.netty.util.collection.ByteObjectMap.containsKey.

Indicates whether or not this map contains a value for the specified key.
public boolean
containsValue(Object
value whose presence in this map is to be tested
value
)

Implements java.util.Map.containsValue.

Returns true if this map maps one or more keys to the specified value.
public Iterable<ByteObjectMap.PrimitiveEntry<Object>>
entries()

Implements io.netty.util.collection.ByteObjectMap.entries.

Gets an iterable to traverse over the primitive entries contained in this map.
public Set<Map.Entry<Byte, Object>>
entrySet()

Implements java.util.Map.entrySet.

Returns a Set view of the mappings contained in this map.
public Object
get(byte
the key whose associated value is to be returned.
key
)

Implements io.netty.util.collection.ByteObjectMap.get.

Gets the value in the map with the specified key.
public Object
get(Object
the key whose associated value is to be returned
key
)

Implements java.util.Map.get.

Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
public boolean
isEmpty()

Implements java.util.Map.isEmpty.

Returns true if this map contains no key-value mappings.
public Set<Byte>
keySet()

Implements java.util.Map.keySet.

Returns a Set view of the keys contained in this map.
public Object
put(byte
the key of the entry.
key
,
Object
the value of the entry.
value
)

Implements io.netty.util.collection.ByteObjectMap.put.

Puts the given entry into the map.
public Object
put(Byte
key with which the specified value is to be associated
key
,
Object
value to be associated with the specified key
value
)

Implements java.util.Map.put.

Associates the specified value with the specified key in this map (optional operation).
public void
putAll(Map<? extends Byte, ?>
mappings to be stored in this map
m
)

Implements java.util.Map.putAll.

Copies all of the mappings from the specified map to this map (optional operation).
public Object
remove(byte
the key for the entry to be removed from this map.
key
)

Implements io.netty.util.collection.ByteObjectMap.remove.

Removes the entry with the specified key.
public Object
remove(Object
key whose mapping is to be removed from the map
key
)

Implements java.util.Map.remove.

Removes the mapping for a key from this map if it is present (optional operation).
public int
size()

Implements java.util.Map.size.

Returns the number of key-value mappings in this map.
public Collection<Object>
values()

Implements java.util.Map.values.

Returns a Collection view of the values contained in this map.
Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Constructor Detail

EmptyMapback to summary
private EmptyMap()

Method Detail

clearback to summary
public void clear()

Implements java.util.Map.clear.

Doc from java.util.Map.clear.

Removes all of the mappings from this map (optional operation). The map will be empty after this call returns.

Annotations
@Override
containsKeyback to summary
public boolean containsKey(Object key)

Implements java.util.Map.containsKey.

Doc from java.util.Map.containsKey.

Returns true if this map contains a mapping for the specified key. More formally, returns true if and only if this map contains a mapping for a key k such that Objects.equals(key, k). (There can be at most one such mapping.)

Parameters
key:Object

key whose presence in this map is to be tested

Returns:boolean

true if this map contains a mapping for the specified key

Annotations
@Override
containsKeyback to summary
public boolean containsKey(byte key)

Implements io.netty.util.collection.ByteObjectMap.containsKey.

Doc from io.netty.util.collection.ByteObjectMap.containsKey.

Indicates whether or not this map contains a value for the specified key.

Annotations
@Override
containsValueback to summary
public boolean containsValue(Object value)

Implements java.util.Map.containsValue.

Doc from java.util.Map.containsValue.

Returns true if this map maps one or more keys to the specified value. More formally, returns true if and only if this map contains at least one mapping to a value v such that Objects.equals(value, v). This operation will probably require time linear in the map size for most implementations of the Map interface.

Parameters
value:Object

value whose presence in this map is to be tested

Returns:boolean

true if this map maps one or more keys to the specified value

Annotations
@Override
entriesback to summary
public Iterable<ByteObjectMap.PrimitiveEntry<Object>> entries()

Implements io.netty.util.collection.ByteObjectMap.entries.

Doc from io.netty.util.collection.ByteObjectMap.entries.

Gets an iterable to traverse over the primitive entries contained in this map. As an optimization, the PrimitiveEntrys returned by the Iterator may change as the Iterator progresses. The caller should not rely on PrimitiveEntry key/value stability.

Annotations
@Override
entrySetback to summary
public Set<Map.Entry<Byte, Object>> entrySet()

Implements java.util.Map.entrySet.

Doc from java.util.Map.entrySet.

Returns a Set view of the mappings contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. If the map is modified while an iteration over the set is in progress (except through the iterator's own remove operation, or through the setValue operation on a map entry returned by the iterator) the results of the iteration are undefined. The set supports element removal, which removes the corresponding mapping from the map, via the Iterator.remove, Set.remove, removeAll, retainAll and clear operations. It does not support the add or addAll operations.

Returns:Set<Map.Entry<Byte, Object>>

a set view of the mappings contained in this map

Annotations
@Override
getback to summary
public Object get(byte key)

Implements io.netty.util.collection.ByteObjectMap.get.

Doc from io.netty.util.collection.ByteObjectMap.get.

Gets the value in the map with the specified key.

Parameters
key:byte

the key whose associated value is to be returned.

Returns:Object

the value or null if the key was not found in the map.

Annotations
@Override
getback to summary
public Object get(Object key)

Implements java.util.Map.get.

Doc from java.util.Map.get.

Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.

More formally, if this map contains a mapping from a key k to a value v such that Objects.equals(key, k), then this method returns v; otherwise it returns null. (There can be at most one such mapping.)

If this map permits null values, then a return value of null does not necessarily indicate that the map contains no mapping for the key; it's also possible that the map explicitly maps the key to null. The containsKey operation may be used to distinguish these two cases.

Parameters
key:Object

the key whose associated value is to be returned

Returns:Object

the value to which the specified key is mapped, or null if this map contains no mapping for the key

Annotations
@Override
isEmptyback to summary
public boolean isEmpty()

Implements java.util.Map.isEmpty.

Doc from java.util.Map.isEmpty.

Returns true if this map contains no key-value mappings.

Returns:boolean

true if this map contains no key-value mappings

Annotations
@Override
keySetback to summary
public Set<Byte> keySet()

Implements java.util.Map.keySet.

Doc from java.util.Map.keySet.

Returns a Set view of the keys contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. If the map is modified while an iteration over the set is in progress (except through the iterator's own remove operation), the results of the iteration are undefined. The set supports element removal, which removes the corresponding mapping from the map, via the Iterator.remove, Set.remove, removeAll, retainAll, and clear operations. It does not support the add or addAll operations.

Returns:Set<Byte>

a set view of the keys contained in this map

Annotations
@Override
putback to summary
public Object put(byte key, Object value)

Implements io.netty.util.collection.ByteObjectMap.put.

Doc from io.netty.util.collection.ByteObjectMap.put.

Puts the given entry into the map.

Parameters
key:byte

the key of the entry.

value:Object

the value of the entry.

Returns:Object

the previous value for this key or null if there was no previous mapping.

Annotations
@Override
putback to summary
public Object put(Byte key, Object value)

Implements java.util.Map.put.

Doc from java.util.Map.put.

Associates the specified value with the specified key in this map (optional operation). If the map previously contained a mapping for the key, the old value is replaced by the specified value. (A map m is said to contain a mapping for a key k if and only if m.containsKey(k) would return true.)

Parameters
key:Byte

key with which the specified value is to be associated

value:Object

value to be associated with the specified key

Returns:Object

the previous value associated with key, or null if there was no mapping for key. (A null return can also indicate that the map previously associated null with key, if the implementation supports null values.)

Annotations
@Override
putAllback to summary
public void putAll(Map<? extends Byte, ?> m)

Implements java.util.Map.putAll.

Doc from java.util.Map.putAll.

Copies all of the mappings from the specified map to this map (optional operation). The effect of this call is equivalent to that of calling put(k, v) on this map once for each mapping from key k to value v in the specified map. The behavior of this operation is undefined if the specified map is modified while the operation is in progress. If the specified map has a defined encounter order, processing of its mappings generally occurs in that order.

Parameters
m:Map<? extends Byte, ?>

mappings to be stored in this map

Annotations
@Override
removeback to summary
public Object remove(byte key)

Implements io.netty.util.collection.ByteObjectMap.remove.

Doc from io.netty.util.collection.ByteObjectMap.remove.

Removes the entry with the specified key.

Parameters
key:byte

the key for the entry to be removed from this map.

Returns:Object

the previous value for the key, or null if there was no mapping.

Annotations
@Override
removeback to summary
public Object remove(Object key)

Implements java.util.Map.remove.

Doc from java.util.Map.remove.

Removes the mapping for a key from this map if it is present (optional operation). More formally, if this map contains a mapping from key k to value v such that Objects.equals(key, k), that mapping is removed. (The map can contain at most one such mapping.)

Returns the value to which this map previously associated the key, or null if the map contained no mapping for the key.

If this map permits null values, then a return value of null does not necessarily indicate that the map contained no mapping for the key; it's also possible that the map explicitly mapped the key to null.

The map will not contain a mapping for the specified key once the call returns.

Parameters
key:Object

key whose mapping is to be removed from the map

Returns:Object

the previous value associated with key, or null if there was no mapping for key.

Annotations
@Override
sizeback to summary
public int size()

Implements java.util.Map.size.

Doc from java.util.Map.size.

Returns the number of key-value mappings in this map. If the map contains more than Integer.MAX_VALUE elements, returns Integer.MAX_VALUE.

Returns:int

the number of key-value mappings in this map

Annotations
@Override
valuesback to summary
public Collection<Object> values()

Implements java.util.Map.values.

Doc from java.util.Map.values.

Returns a Collection view of the values contained in this map. The collection is backed by the map, so changes to the map are reflected in the collection, and vice-versa. If the map is modified while an iteration over the collection is in progress (except through the iterator's own remove operation), the results of the iteration are undefined. The collection supports element removal, which removes the corresponding mapping from the map, via the Iterator.remove, Collection.remove, removeAll, retainAll and clear operations. It does not support the add or addAll operations.

Returns:Collection<Object>

a collection view of the values contained in this map

Annotations
@Override
io.netty.util.collection back to summary

private final Class ByteCollections.UnmodifiableMap<V>

extends Object
implements ByteObjectMap<V>
Class Inheritance
All Implemented Interfaces
io.netty.util.collection.ByteObjectMap, java.util.Map
Type Parameters
<V>
the value type stored in the map.

An unmodifiable wrapper around a ByteObjectMap.

Nested and Inner Type Summary

Modifier and TypeClass and Description
private class
ByteCollections.UnmodifiableMap.EntryImpl

Unmodifiable wrapper for an entry.

private class
ByteCollections.UnmodifiableMap.IteratorImpl

Unmodifiable wrapper for an iterator.

Field Summary

Modifier and TypeField and Description
private Iterable<ByteObjectMap.PrimitiveEntry<V>>
private Set<Map.Entry<Byte, V>>
private Set<Byte>
private final ByteObjectMap<V>
private Collection<V>

Constructor Summary

AccessConstructor and Description
pack-priv

Method Summary

Modifier and TypeMethod and Description
public void
clear()

Implements java.util.Map.clear.

Removes all of the mappings from this map (optional operation).
public boolean
containsKey(byte key)

Implements io.netty.util.collection.ByteObjectMap.containsKey.

Indicates whether or not this map contains a value for the specified key.
public boolean
containsKey(Object
key whose presence in this map is to be tested
key
)

Implements java.util.Map.containsKey.

Returns true if this map contains a mapping for the specified key.
public boolean
containsValue(Object
value whose presence in this map is to be tested
value
)

Implements java.util.Map.containsValue.

Returns true if this map maps one or more keys to the specified value.
public Iterable<ByteObjectMap.PrimitiveEntry<V>>
entries()

Implements io.netty.util.collection.ByteObjectMap.entries.

Gets an iterable to traverse over the primitive entries contained in this map.
public Set<Map.Entry<Byte, V>>
entrySet()

Implements java.util.Map.entrySet.

Returns a Set view of the mappings contained in this map.
public V
get(byte
the key whose associated value is to be returned.
key
)

Implements io.netty.util.collection.ByteObjectMap.get.

Gets the value in the map with the specified key.
public V
get(Object
the key whose associated value is to be returned
key
)

Implements java.util.Map.get.

Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
public boolean
isEmpty()

Implements java.util.Map.isEmpty.

Returns true if this map contains no key-value mappings.
public Set<Byte>
keySet()

Implements java.util.Map.keySet.

Returns a Set view of the keys contained in this map.
public V
put(byte
the key of the entry.
key
,
V
the value of the entry.
value
)

Implements io.netty.util.collection.ByteObjectMap.put.

Puts the given entry into the map.
public V
put(Byte
key with which the specified value is to be associated
key
,
V
value to be associated with the specified key
value
)

Implements java.util.Map.put.

Associates the specified value with the specified key in this map (optional operation).
public void
putAll(Map<? extends Byte, ? extends V>
mappings to be stored in this map
m
)

Implements java.util.Map.putAll.

Copies all of the mappings from the specified map to this map (optional operation).
public V
remove(byte
the key for the entry to be removed from this map.
key
)

Implements io.netty.util.collection.ByteObjectMap.remove.

Removes the entry with the specified key.
public V
remove(Object
key whose mapping is to be removed from the map
key
)

Implements java.util.Map.remove.

Removes the mapping for a key from this map if it is present (optional operation).
public int
size()

Implements java.util.Map.size.

Returns the number of key-value mappings in this map.
public Collection<V>
values()

Implements java.util.Map.values.

Returns a Collection view of the values contained in this map.
Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

entriesback to summary
private Iterable<ByteObjectMap.PrimitiveEntry<V>> entries
entrySetback to summary
private Set<Map.Entry<Byte, V>> entrySet
keySetback to summary
private Set<Byte> keySet
mapback to summary
private final ByteObjectMap<V> map
valuesback to summary
private Collection<V> values

Constructor Detail

UnmodifiableMapback to summary
pack-priv UnmodifiableMap(ByteObjectMap<V> map)

Method Detail

clearback to summary
public void clear()

Implements java.util.Map.clear.

Doc from java.util.Map.clear.

Removes all of the mappings from this map (optional operation). The map will be empty after this call returns.

Annotations
@Override
containsKeyback to summary
public boolean containsKey(byte key)

Implements io.netty.util.collection.ByteObjectMap.containsKey.

Doc from io.netty.util.collection.ByteObjectMap.containsKey.

Indicates whether or not this map contains a value for the specified key.

Annotations
@Override
containsKeyback to summary
public boolean containsKey(Object key)

Implements java.util.Map.containsKey.

Doc from java.util.Map.containsKey.

Returns true if this map contains a mapping for the specified key. More formally, returns true if and only if this map contains a mapping for a key k such that Objects.equals(key, k). (There can be at most one such mapping.)

Parameters
key:Object

key whose presence in this map is to be tested

Returns:boolean

true if this map contains a mapping for the specified key

Annotations
@Override
containsValueback to summary
public boolean containsValue(Object value)

Implements java.util.Map.containsValue.

Doc from java.util.Map.containsValue.

Returns true if this map maps one or more keys to the specified value. More formally, returns true if and only if this map contains at least one mapping to a value v such that Objects.equals(value, v). This operation will probably require time linear in the map size for most implementations of the Map interface.

Parameters
value:Object

value whose presence in this map is to be tested

Returns:boolean

true if this map maps one or more keys to the specified value

Annotations
@Override
entriesback to summary
public Iterable<ByteObjectMap.PrimitiveEntry<V>> entries()

Implements io.netty.util.collection.ByteObjectMap.entries.

Doc from io.netty.util.collection.ByteObjectMap.entries.

Gets an iterable to traverse over the primitive entries contained in this map. As an optimization, the PrimitiveEntrys returned by the Iterator may change as the Iterator progresses. The caller should not rely on PrimitiveEntry key/value stability.

Annotations
@Override
entrySetback to summary
public Set<Map.Entry<Byte, V>> entrySet()

Implements java.util.Map.entrySet.

Doc from java.util.Map.entrySet.

Returns a Set view of the mappings contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. If the map is modified while an iteration over the set is in progress (except through the iterator's own remove operation, or through the setValue operation on a map entry returned by the iterator) the results of the iteration are undefined. The set supports element removal, which removes the corresponding mapping from the map, via the Iterator.remove, Set.remove, removeAll, retainAll and clear operations. It does not support the add or addAll operations.

Returns:Set<Map.Entry<Byte, V>>

a set view of the mappings contained in this map

Annotations
@Override
getback to summary
public V get(byte key)

Implements io.netty.util.collection.ByteObjectMap.get.

Doc from io.netty.util.collection.ByteObjectMap.get.

Gets the value in the map with the specified key.

Parameters
key:byte

the key whose associated value is to be returned.

Returns:V

the value or null if the key was not found in the map.

Annotations
@Override
getback to summary
public V get(Object key)

Implements java.util.Map.get.

Doc from java.util.Map.get.

Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.

More formally, if this map contains a mapping from a key k to a value v such that Objects.equals(key, k), then this method returns v; otherwise it returns null. (There can be at most one such mapping.)

If this map permits null values, then a return value of null does not necessarily indicate that the map contains no mapping for the key; it's also possible that the map explicitly maps the key to null. The containsKey operation may be used to distinguish these two cases.

Parameters
key:Object

the key whose associated value is to be returned

Returns:V

the value to which the specified key is mapped, or null if this map contains no mapping for the key

Annotations
@Override
isEmptyback to summary
public boolean isEmpty()

Implements java.util.Map.isEmpty.

Doc from java.util.Map.isEmpty.

Returns true if this map contains no key-value mappings.

Returns:boolean

true if this map contains no key-value mappings

Annotations
@Override
keySetback to summary
public Set<Byte> keySet()

Implements java.util.Map.keySet.

Doc from java.util.Map.keySet.

Returns a Set view of the keys contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. If the map is modified while an iteration over the set is in progress (except through the iterator's own remove operation), the results of the iteration are undefined. The set supports element removal, which removes the corresponding mapping from the map, via the Iterator.remove, Set.remove, removeAll, retainAll, and clear operations. It does not support the add or addAll operations.

Returns:Set<Byte>

a set view of the keys contained in this map

Annotations
@Override
putback to summary
public V put(byte key, V value)

Implements io.netty.util.collection.ByteObjectMap.put.

Doc from io.netty.util.collection.ByteObjectMap.put.

Puts the given entry into the map.

Parameters
key:byte

the key of the entry.

value:V

the value of the entry.

Returns:V

the previous value for this key or null if there was no previous mapping.

Annotations
@Override
putback to summary
public V put(Byte key, V value)

Implements java.util.Map.put.

Doc from java.util.Map.put.

Associates the specified value with the specified key in this map (optional operation). If the map previously contained a mapping for the key, the old value is replaced by the specified value. (A map m is said to contain a mapping for a key k if and only if m.containsKey(k) would return true.)

Parameters
key:Byte

key with which the specified value is to be associated

value:V

value to be associated with the specified key

Returns:V

the previous value associated with key, or null if there was no mapping for key. (A null return can also indicate that the map previously associated null with key, if the implementation supports null values.)

Annotations
@Override
putAllback to summary
public void putAll(Map<? extends Byte, ? extends V> m)

Implements java.util.Map.putAll.

Doc from java.util.Map.putAll.

Copies all of the mappings from the specified map to this map (optional operation). The effect of this call is equivalent to that of calling put(k, v) on this map once for each mapping from key k to value v in the specified map. The behavior of this operation is undefined if the specified map is modified while the operation is in progress. If the specified map has a defined encounter order, processing of its mappings generally occurs in that order.

Parameters
m:Map<? extends Byte, ? extends V>

mappings to be stored in this map

Annotations
@Override
removeback to summary
public V remove(byte key)

Implements io.netty.util.collection.ByteObjectMap.remove.

Doc from io.netty.util.collection.ByteObjectMap.remove.

Removes the entry with the specified key.

Parameters
key:byte

the key for the entry to be removed from this map.

Returns:V

the previous value for the key, or null if there was no mapping.

Annotations
@Override
removeback to summary
public V remove(Object key)

Implements java.util.Map.remove.

Doc from java.util.Map.remove.

Removes the mapping for a key from this map if it is present (optional operation). More formally, if this map contains a mapping from key k to value v such that Objects.equals(key, k), that mapping is removed. (The map can contain at most one such mapping.)

Returns the value to which this map previously associated the key, or null if the map contained no mapping for the key.

If this map permits null values, then a return value of null does not necessarily indicate that the map contained no mapping for the key; it's also possible that the map explicitly mapped the key to null.

The map will not contain a mapping for the specified key once the call returns.

Parameters
key:Object

key whose mapping is to be removed from the map

Returns:V

the previous value associated with key, or null if there was no mapping for key.

Annotations
@Override
sizeback to summary
public int size()

Implements java.util.Map.size.

Doc from java.util.Map.size.

Returns the number of key-value mappings in this map. If the map contains more than Integer.MAX_VALUE elements, returns Integer.MAX_VALUE.

Returns:int

the number of key-value mappings in this map

Annotations
@Override
valuesback to summary
public Collection<V> values()

Implements java.util.Map.values.

Doc from java.util.Map.values.

Returns a Collection view of the values contained in this map. The collection is backed by the map, so changes to the map are reflected in the collection, and vice-versa. If the map is modified while an iteration over the collection is in progress (except through the iterator's own remove operation), the results of the iteration are undefined. The collection supports element removal, which removes the corresponding mapping from the map, via the Iterator.remove, Collection.remove, removeAll, retainAll and clear operations. It does not support the add or addAll operations.

Returns:Collection<V>

a collection view of the values contained in this map

Annotations
@Override
io.netty.util.collection back to summary

private Class ByteCollections.UnmodifiableMap.EntryImpl

extends Object
implements ByteObjectMap.PrimitiveEntry<V>
Class Inheritance
  • java.lang.Object
  • io.netty.util.collection.ByteCollections.UnmodifiableMap.EntryImpl
All Implemented Interfaces
io.netty.util.collection.ByteObjectMap.PrimitiveEntry

Unmodifiable wrapper for an entry.

Field Summary

Modifier and TypeField and Description
private final ByteObjectMap.PrimitiveEntry<V>

Constructor Summary

AccessConstructor and Description
pack-priv

Method Summary

Modifier and TypeMethod and Description
public byte
key()

Implements io.netty.util.collection.ByteObjectMap.PrimitiveEntry.key.

Gets the key for this entry.
public void
setValue(V value)

Implements io.netty.util.collection.ByteObjectMap.PrimitiveEntry.setValue.

Sets the value for this entry.
public V
value()

Implements io.netty.util.collection.ByteObjectMap.PrimitiveEntry.value.

Gets the value for this entry.
Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

entryback to summary
private final ByteObjectMap.PrimitiveEntry<V> entry

Constructor Detail

EntryImplback to summary
pack-priv EntryImpl(ByteObjectMap.PrimitiveEntry<V> entry)

Method Detail

keyback to summary
public byte key()

Implements io.netty.util.collection.ByteObjectMap.PrimitiveEntry.key.

Doc from io.netty.util.collection.ByteObjectMap.PrimitiveEntry.key.

Gets the key for this entry.

Annotations
@Override
setValueback to summary
public void setValue(V value)

Implements io.netty.util.collection.ByteObjectMap.PrimitiveEntry.setValue.

Doc from io.netty.util.collection.ByteObjectMap.PrimitiveEntry.setValue.

Sets the value for this entry.

Annotations
@Override
valueback to summary
public V value()

Implements io.netty.util.collection.ByteObjectMap.PrimitiveEntry.value.

Doc from io.netty.util.collection.ByteObjectMap.PrimitiveEntry.value.

Gets the value for this entry.

Annotations
@Override
io.netty.util.collection back to summary

private Class ByteCollections.UnmodifiableMap.IteratorImpl

extends Object
implements Iterator<ByteObjectMap.PrimitiveEntry<V>>
Class Inheritance
  • java.lang.Object
  • io.netty.util.collection.ByteCollections.UnmodifiableMap.IteratorImpl
All Implemented Interfaces
java.util.Iterator

Unmodifiable wrapper for an iterator.

Field Summary

Modifier and TypeField and Description
pack-priv final Iterator<ByteObjectMap.PrimitiveEntry<V>>

Constructor Summary

AccessConstructor and Description
pack-priv

Method Summary

Modifier and TypeMethod and Description
public boolean
hasNext()

Implements java.util.Iterator.hasNext.

Returns true if the iteration has more elements.
public ByteObjectMap.PrimitiveEntry<V>
next()

Implements java.util.Iterator.next.

Returns the next element in the iteration.
public void
remove()

Overrides default java.util.Iterator.remove.

Removes from the underlying collection the last element returned by this iterator (optional operation).
Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

iterback to summary
pack-priv final Iterator<ByteObjectMap.PrimitiveEntry<V>> iter

Constructor Detail

IteratorImplback to summary
pack-priv IteratorImpl(Iterator<ByteObjectMap.PrimitiveEntry<V>> iter)

Method Detail

hasNextback to summary
public boolean hasNext()

Implements java.util.Iterator.hasNext.

Doc from java.util.Iterator.hasNext.

Returns true if the iteration has more elements. (In other words, returns true if next would return an element rather than throwing an exception.)

Returns:boolean

true if the iteration has more elements

Annotations
@Override
nextback to summary
public ByteObjectMap.PrimitiveEntry<V> next()

Implements java.util.Iterator.next.

Doc from java.util.Iterator.next.

Returns the next element in the iteration.

Returns:ByteObjectMap.PrimitiveEntry<V>

the next element in the iteration

Annotations
@Override
removeback to summary
public void remove()

Overrides default java.util.Iterator.remove.

Doc from java.util.Iterator.remove.

Removes from the underlying collection the last element returned by this iterator (optional operation). This method can be called only once per call to next.

The behavior of an iterator is unspecified if the underlying collection is modified while the iteration is in progress in any way other than by calling this method, unless an overriding class has specified a concurrent modification policy.

The behavior of an iterator is unspecified if this method is called after a call to the forEachRemaining method.

Annotations
@Override