Package org.jboss.as.model.test
Enum ModelTestControllerVersion
- java.lang.Object
-
- java.lang.Enum<ModelTestControllerVersion>
-
- org.jboss.as.model.test.ModelTestControllerVersion
-
- All Implemented Interfaces:
Serializable,Comparable<ModelTestControllerVersion>
public enum ModelTestControllerVersion extends Enum<ModelTestControllerVersion>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceModelTestControllerVersion.CurrentVersion
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetArtifactIdPrefix()StringgetCoreMavenGroupId()StringgetCoreVersion()StringgetHostControllerMavenArtifactId()StringgetMavenGav(String artifactIdPart, boolean coreArtifact)StringgetMavenGavVersion()StringgetMavenGroupId()StringgetRealVersionName()StringgetServerMavenArtifactId()org.jboss.as.controller.ModelVersiongetSubsystemModelVersion(String subsystemName)Map<String,org.jboss.as.controller.ModelVersion>getSubsystemModelVersions()StringgetTestControllerVersion()booleanhasValidLegacyController()booleanisEap()static ModelTestControllerVersionvalueOf(String name)Returns the enum constant of this type with the specified name.static ModelTestControllerVersion[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MASTER
public static final ModelTestControllerVersion MASTER
-
EAP_7_4_0
public static final ModelTestControllerVersion EAP_7_4_0
-
EAP_8_0_0
public static final ModelTestControllerVersion EAP_8_0_0
-
EAP_XP_4
public static final ModelTestControllerVersion EAP_XP_4
-
EAP_XP_5
public static final ModelTestControllerVersion EAP_XP_5
-
-
Method Detail
-
values
public static ModelTestControllerVersion[] 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 (ModelTestControllerVersion c : ModelTestControllerVersion.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ModelTestControllerVersion 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
-
getMavenGavVersion
public String getMavenGavVersion()
-
getTestControllerVersion
public String getTestControllerVersion()
-
isEap
public boolean isEap()
-
hasValidLegacyController
public boolean hasValidLegacyController()
-
getCoreVersion
public String getCoreVersion()
-
getMavenGroupId
public String getMavenGroupId()
-
getCoreMavenGroupId
public String getCoreMavenGroupId()
-
getServerMavenArtifactId
public String getServerMavenArtifactId()
-
getHostControllerMavenArtifactId
public String getHostControllerMavenArtifactId()
-
getRealVersionName
public String getRealVersionName()
-
getArtifactIdPrefix
public String getArtifactIdPrefix()
-
getSubsystemModelVersion
public org.jboss.as.controller.ModelVersion getSubsystemModelVersion(String subsystemName)
-
getSubsystemModelVersions
public Map<String,org.jboss.as.controller.ModelVersion> getSubsystemModelVersions()
-
-