public enum LeaseResourceType extends Enum<LeaseResourceType>
| Enum Constant and Description |
|---|
ConfigMap
A Kubernetes ConfigMap.
|
Lease
A Kubernetes Lease (coordination.k8s.io).
|
| Modifier and Type | Method and Description |
|---|---|
static LeaseResourceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LeaseResourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LeaseResourceType ConfigMap
public static final LeaseResourceType Lease
public static LeaseResourceType[] values()
for (LeaseResourceType c : LeaseResourceType.values()) System.out.println(c);
public static LeaseResourceType 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 nullApache Camel