public enum DockerComposeCommand extends Enum<DockerComposeCommand>
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static DockerComposeCommand |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DockerComposeCommand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DockerComposeCommand START
public static final DockerComposeCommand STOP
public static final DockerComposeCommand UP
public static final DockerComposeCommand DOWN
public static final DockerComposeCommand BUILD
public static DockerComposeCommand[] values()
for (DockerComposeCommand c : DockerComposeCommand.values()) System.out.println(c);
public static DockerComposeCommand 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 String getValue()
Copyright © 2018. All Rights Reserved.