| EMMA Coverage Report (generated Tue Oct 27 11:32:50 PDT 2009) |
|---|
| [all classes][net.spy.memcached.ops] |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| StoreType.java | 100% (1/1) | 75% (3/4) | 90% (43/48) | 97% (3.9/4) |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| class StoreType | 100% (1/1) | 75% (3/4) | 90% (43/48) | 97% (3.9/4) |
| valueOf (String): StoreType | 0% (0/1) | 0% (0/5) | 0% (0/1) | |
| <static initializer> | 100% (1/1) | 100% (34/34) | 100% (4/4) | |
| StoreType (String, int): void | 100% (1/1) | 100% (5/5) | 100% (1/1) | |
| values (): StoreType [] | 100% (1/1) | 100% (4/4) | 100% (1/1) |
| 1 | package net.spy.memcached.ops; |
| 2 | |
| 3 | /** |
| 4 | * The type of storage operation to perform. |
| 5 | */ |
| 6 | public enum StoreType { |
| 7 | /** |
| 8 | * Unconditionally store a value in the cache. |
| 9 | */ |
| 10 | set, |
| 11 | /** |
| 12 | * Store a value in the cache iff there is not already something stored |
| 13 | * for the given key. |
| 14 | */ |
| 15 | add, |
| 16 | /** |
| 17 | * Store a value in the cache iff there is already something stored for |
| 18 | * the given key. |
| 19 | */ |
| 20 | replace |
| 21 | } |
| [all classes][net.spy.memcached.ops] |
| EMMA 2.0.5312 (C) Vladimir Roubtsov |