public static enum KubernetesConfigOptions.ImagePullPolicy extends Enum<KubernetesConfigOptions.ImagePullPolicy>
Enum Constant and Description |
---|
Always |
IfNotPresent |
Never |
Modifier and Type | Method and Description |
---|---|
static KubernetesConfigOptions.ImagePullPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KubernetesConfigOptions.ImagePullPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KubernetesConfigOptions.ImagePullPolicy IfNotPresent
public static final KubernetesConfigOptions.ImagePullPolicy Always
public static final KubernetesConfigOptions.ImagePullPolicy Never
public static KubernetesConfigOptions.ImagePullPolicy[] values()
for (KubernetesConfigOptions.ImagePullPolicy c : KubernetesConfigOptions.ImagePullPolicy.values()) System.out.println(c);
public static KubernetesConfigOptions.ImagePullPolicy 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 © 2014–2024 The Apache Software Foundation. All rights reserved.