public static enum StorageImageConfiguration.ContainerType extends Enum<StorageImageConfiguration.ContainerType>
TAR
. This is just a container and transmission format, not a runtime format.Enum Constant and Description |
---|
TAR |
Modifier and Type | Method and Description |
---|---|
static StorageImageConfiguration.ContainerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StorageImageConfiguration.ContainerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StorageImageConfiguration.ContainerType TAR
public static StorageImageConfiguration.ContainerType[] values()
for (StorageImageConfiguration.ContainerType c : StorageImageConfiguration.ContainerType.values()) System.out.println(c);
public static StorageImageConfiguration.ContainerType 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 © 2019 Google LLC. All rights reserved.