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