public enum CachedLayerType extends Enum<CachedLayerType>
| Enum Constant and Description |
|---|
BASE
Base image layer.
|
CLASSES
Layer of the application classes.
|
DEPENDENCIES
Layer of the application dependency JARs.
|
RESOURCES
Layer of the application resources.
|
| Modifier and Type | Method and Description |
|---|---|
static CachedLayerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CachedLayerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CachedLayerType BASE
public static final CachedLayerType DEPENDENCIES
public static final CachedLayerType RESOURCES
public static final CachedLayerType CLASSES
public static CachedLayerType[] values()
for (CachedLayerType c : CachedLayerType.values()) System.out.println(c);
public static CachedLayerType 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.