public static enum PreloadConfig.Phases extends java.lang.Enum<PreloadConfig.Phases>
Enum Constant and Description |
---|
PRELOAD
Preload is in progress and resulted in a fetch from disk.
|
Modifier and Type | Method and Description |
---|---|
static PreloadConfig.Phases |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PreloadConfig.Phases[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PreloadConfig.Phases PRELOAD
public static PreloadConfig.Phases[] values()
for (PreloadConfig.Phases c : PreloadConfig.Phases.values()) System.out.println(c);
public static PreloadConfig.Phases valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright (c) 2002, 2017 Oracle and/or its affiliates. All rights reserved.