public enum CacheOp extends Enum<CacheOp>
| Enum Constant and Description |
|---|
PREFETCH |
PREFETCH_MISS |
READ |
READ_MISS |
WRITE |
WRITE_MISS |
| Modifier and Type | Method and Description |
|---|---|
static CacheOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CacheOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CacheOp READ
public static final CacheOp WRITE
public static final CacheOp PREFETCH
public static final CacheOp READ_MISS
public static final CacheOp WRITE_MISS
public static final CacheOp PREFETCH_MISS
public static CacheOp[] values()
for (CacheOp c : CacheOp.values()) System.out.println(c);
public static CacheOp valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019. All rights reserved.