public enum K8sImagePullPolicies extends java.lang.Enum<K8sImagePullPolicies>
| Enum Constant and Description |
|---|
Always |
IfNotPresent |
Never |
| Modifier and Type | Method and Description |
|---|---|
static K8sImagePullPolicies |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static K8sImagePullPolicies[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final K8sImagePullPolicies IfNotPresent
public static final K8sImagePullPolicies Always
public static final K8sImagePullPolicies Never
public static K8sImagePullPolicies[] values()
for (K8sImagePullPolicies c : K8sImagePullPolicies.values()) System.out.println(c);
public static K8sImagePullPolicies valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null