public enum Kind extends Enum<Kind>
| Enum Constant and Description |
|---|
DEPLOYMENT |
DEPLOYMENT_CONFIG |
POD_TEMPLATE |
REPLICA_SET |
REPLICATION_CONTROLLER |
SERVICE |
| Modifier and Type | Method and Description |
|---|---|
static Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Kind SERVICE
public static final Kind REPLICA_SET
public static final Kind REPLICATION_CONTROLLER
public static final Kind DEPLOYMENT
public static final Kind DEPLOYMENT_CONFIG
public static final Kind POD_TEMPLATE
public static Kind[] values()
for (Kind c : Kind.values()) System.out.println(c);
public static Kind 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.