|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
StringKeyMap.java | - | - | - | - |
|
1 |
/*
|
|
2 |
* Joey and its relative products are published under the terms
|
|
3 |
* of the Apache Software License.
|
|
4 |
*/
|
|
5 |
/*
|
|
6 |
* Created on 2004/02/16
|
|
7 |
*/
|
|
8 |
package org.asyrinx.brownie.core.collection;
|
|
9 |
|
|
10 |
import java.util.Map;
|
|
11 |
|
|
12 |
/**
|
|
13 |
* 文字列ががキーとなるMapインタフェースです。 <br>
|
|
14 |
* Propertiesと違って、valueの値は文字列に限りません。
|
|
15 |
*
|
|
16 |
* @author akima
|
|
17 |
*/
|
|
18 |
public interface StringKeyMap extends Map { |
|
19 |
|
|
20 |
public void put(String key, Object value); |
|
21 |
|
|
22 |
public Object get(String key);
|
|
23 |
|
|
24 |
public Object remove(String key);
|
|
25 |
|
|
26 |
} |
|