public enum PruneType extends Enum<PruneType>
| Enum Constant and Description |
|---|
BUILD |
CONTAINERS |
IMAGES |
NETWORKS |
VOLUMES |
| Modifier and Type | Method and Description |
|---|---|
static PruneType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PruneType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PruneType BUILD
public static final PruneType CONTAINERS
public static final PruneType IMAGES
public static final PruneType NETWORKS
public static final PruneType VOLUMES
public static PruneType[] values()
for (PruneType c : PruneType.values()) System.out.println(c);
public static PruneType 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 © 2025. All rights reserved.