public enum DockerServer extends Enum<DockerServer> implements Serializable
| Modifier and Type | Method and Description |
|---|---|
String |
getDisplayName() |
String |
getImage() |
String |
getMavenOptions() |
int |
getPort() |
int |
getSslPort() |
String[] |
getTags() |
String |
getVolume() |
boolean |
isSsl() |
static DockerServer |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DockerServer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DockerServer tomee
public static final DockerServer liberty
public static final DockerServer wildfly
public static DockerServer[] values()
for (DockerServer c : DockerServer.values()) System.out.println(c);
public static DockerServer 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 getDisplayName()
public String getVolume()
public int getPort()
public int getSslPort()
public String getImage()
public String[] getTags()
public boolean isSsl()
public String getMavenOptions()
Copyright © 2002–2019 The Apache Software Foundation. All rights reserved.