|
Java example source code file (KObjectMap.template)
The KObjectMap.template Java example source code/* * Copyright 2014 The Netty Project * * The Netty Project licenses this file to you under the Apache License, version 2.0 (the * "License"); you may not use this file except in compliance with the License. You may obtain a * copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express * or implied. See the License for the specific language governing permissions and limitations under * the License. */ package io.netty.util.collection; import java.util.Map; /** * Interface for a primitive map that uses {@code @k@}s as keys. * * @param <V> the value type stored in the map. */ public interface @K@ObjectMap<V> extends Map<@O@, V> { /** * A primitive entry in the map, provided by the iterator from {@link #entries()} * * @param <V> the value type stored in the map. */ interface PrimitiveEntry<V> { /** * Gets the key for this entry. */ @k@ key(); /** * Gets the value for this entry. */ V value(); /** * Sets the value for this entry. */ void setValue(V value); } /** * Gets the value in the map with the specified key. * * @param key the key whose associated value is to be returned. * @return the value or {@code null} if the key was not found in the map. */ V get(@k@ key); /** * Puts the given entry into the map. * * @param key the key of the entry. * @param value the value of the entry. * @return the previous value for this key or {@code null} if there was no previous mapping. */ V put(@k@ key, V value); /** * Removes the entry with the specified key. * * @param key the key for the entry to be removed from this map. * @return the previous value for the key, or {@code null} if there was no mapping. */ V remove(@k@ key); /** * Gets an iterable to traverse over the primitive entries contained in this map. As an optimization, * the {@link PrimitiveEntry}s returned by the {@link Iterator} may change as the {@link Iterator} * progresses. The caller should not rely on {@link PrimitiveEntry} key/value stability. */ Iterable<PrimitiveEntry Other Java examples (source code examples)Here is a short list of links related to this Java KObjectMap.template source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.