public interface IContainer<E>
| Modifier and Type | Method and Description |
|---|---|
void |
add(String key,
E e)
add element to this container.
|
E |
find(String key)
find a element from this container.
|
Collection<E> |
values()
get collection of this container's value.
|
E find(String key)
void add(String key, E e)
key - a key.e - element will be puted to container.Collection<E> values()
Copyright © 2015. All rights reserved.