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