Enum DockerContainer.OutputMode
- java.lang.Object
-
- java.lang.Enum<DockerContainer.OutputMode>
-
- io.prestosql.tests.product.launcher.env.DockerContainer.OutputMode
-
- All Implemented Interfaces:
Serializable,Comparable<DockerContainer.OutputMode>
- Enclosing class:
- DockerContainer
public static enum DockerContainer.OutputMode extends Enum<DockerContainer.OutputMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISCARDPRINTPRINT_WRITEWRITE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DockerContainer.OutputModevalueOf(String name)Returns the enum constant of this type with the specified name.static DockerContainer.OutputMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PRINT
public static final DockerContainer.OutputMode PRINT
-
DISCARD
public static final DockerContainer.OutputMode DISCARD
-
WRITE
public static final DockerContainer.OutputMode WRITE
-
PRINT_WRITE
public static final DockerContainer.OutputMode PRINT_WRITE
-
-
Method Detail
-
values
public static DockerContainer.OutputMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DockerContainer.OutputMode c : DockerContainer.OutputMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DockerContainer.OutputMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-