public enum LifecycleType extends Enum<LifecycleType>
| Modifier and Type | Method and Description |
|---|---|
static LifecycleType |
from(String s) |
String |
getValue() |
String |
toString() |
static LifecycleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LifecycleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LifecycleType BUILDPACK
public static final LifecycleType DOCKER
public static LifecycleType[] values()
for (LifecycleType c : LifecycleType.values()) System.out.println(c);
public static LifecycleType 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 nullpublic static LifecycleType from(String s)
public String getValue()
public String toString()
toString in class Enum<LifecycleType>Copyright © 2020. All rights reserved.