
protected static enum MemoryUnitCache.UnitOrigin extends Enum<MemoryUnitCache.UnitOrigin>
PersistentUnitCache for
consolidating old cache files.| Enum Constant and Description |
|---|
ARCHIVE
Unit was loaded from an archive.
|
PERSISTENT
Unit was loaded from persistent store.
|
RUN_TIME
Unit was introduced by an add due to a run-time compile.
|
| Modifier and Type | Method and Description |
|---|---|
static MemoryUnitCache.UnitOrigin |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MemoryUnitCache.UnitOrigin[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MemoryUnitCache.UnitOrigin ARCHIVE
public static final MemoryUnitCache.UnitOrigin PERSISTENT
public static final MemoryUnitCache.UnitOrigin RUN_TIME
public static MemoryUnitCache.UnitOrigin[] values()
for (MemoryUnitCache.UnitOrigin c : MemoryUnitCache.UnitOrigin.values()) System.out.println(c);
public static MemoryUnitCache.UnitOrigin 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 © 2018. All rights reserved.