Package io.fabric8.maven.docker.config
Enum RunImageConfiguration.NamingStrategy
- java.lang.Object
-
- java.lang.Enum<RunImageConfiguration.NamingStrategy>
-
- io.fabric8.maven.docker.config.RunImageConfiguration.NamingStrategy
-
- All Implemented Interfaces:
Serializable,Comparable<RunImageConfiguration.NamingStrategy>
- Enclosing class:
- RunImageConfiguration
@Deprecated public static enum RunImageConfiguration.NamingStrategy extends Enum<RunImageConfiguration.NamingStrategy>
Deprecated.
-
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static RunImageConfiguration.NamingStrategyvalueOf(String name)Deprecated.Returns the enum constant of this type with the specified name.static RunImageConfiguration.NamingStrategy[]values()Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
none
public static final RunImageConfiguration.NamingStrategy none
Deprecated.No extra naming
-
alias
public static final RunImageConfiguration.NamingStrategy alias
Deprecated.Use the alias as defined in the configuration
-
-
Method Detail
-
values
public static RunImageConfiguration.NamingStrategy[] values()
Deprecated.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 (RunImageConfiguration.NamingStrategy c : RunImageConfiguration.NamingStrategy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RunImageConfiguration.NamingStrategy valueOf(String name)
Deprecated.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
-
-