public enum ArtifactCacheMode extends Enum<ArtifactCacheMode>
Modifier and Type | Class and Description |
---|---|
static class |
ArtifactCacheMode.CacheType |
Enum Constant and Description |
---|
dir |
http |
hybrid_thrift_grpc |
sqlite |
thrift_over_http |
unknown |
Modifier and Type | Method and Description |
---|---|
ArtifactCacheMode.CacheType |
getCacheType() |
String |
getCacheTypeName() |
static ArtifactCacheMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArtifactCacheMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArtifactCacheMode unknown
public static final ArtifactCacheMode dir
public static final ArtifactCacheMode http
public static final ArtifactCacheMode sqlite
public static final ArtifactCacheMode thrift_over_http
public static final ArtifactCacheMode hybrid_thrift_grpc
public static ArtifactCacheMode[] values()
for (ArtifactCacheMode c : ArtifactCacheMode.values()) System.out.println(c);
public static ArtifactCacheMode 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 nullpublic String getCacheTypeName()
public ArtifactCacheMode.CacheType getCacheType()