public static enum ArtifactCacheBuckConfig.Executor extends Enum<ArtifactCacheBuckConfig.Executor>
Enum Constant and Description |
---|
DIRECT |
DISK_IO
an executor responsible for carrying out only disk-related operations
|
Modifier and Type | Method and Description |
---|---|
static ArtifactCacheBuckConfig.Executor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArtifactCacheBuckConfig.Executor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArtifactCacheBuckConfig.Executor DIRECT
MoreExecutors.directExecutor()
public static final ArtifactCacheBuckConfig.Executor DISK_IO
public static ArtifactCacheBuckConfig.Executor[] values()
for (ArtifactCacheBuckConfig.Executor c : ArtifactCacheBuckConfig.Executor.values()) System.out.println(c);
public static ArtifactCacheBuckConfig.Executor 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 null