Class MatrixCombinationsParameterValue
- java.lang.Object
-
- hudson.model.ParameterValue
-
- hudson.plugins.matrix_configuration_parameter.MatrixCombinationsParameterValue
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DefaultMatrixCombinationsParameterValue
public class MatrixCombinationsParameterValue extends ParameterValue
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class hudson.model.ParameterValue
name
-
-
Constructor Summary
Constructors Constructor Description MatrixCombinationsParameterValue(String name, Boolean[] values, String[] confs)
Deprecated.MatrixCombinationsParameterValue(String name, Boolean[] values, String[] confs, String description)
Deprecated.MatrixCombinationsParameterValue(String name, String description, List<String> combinations)
ctor
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
combinationExists(hudson.matrix.AxisList axes, hudson.matrix.Combination c)
boolean
combinationExists(hudson.matrix.Combination c)
Deprecated.VariableResolver<String>
createVariableResolver(AbstractBuild<?,?> build)
boolean
equals(Object obj)
List<String>
getCombinations()
String[]
getConfs()
Deprecated.String
getFormattedDescription()
return parameter description, applying the configuredMarkupFormatter
for jenkins instance.Boolean[]
getValues()
Deprecated.int
hashCode()
protected Object
readResolve()
String
toString()
-
Methods inherited from class hudson.model.ParameterValue
buildEnvironment, buildEnvVars, buildEnvVars, createBuildWrapper, getAssignedLabel, getDefinition, getDescription, getName, getShortDescription, getValue, isSensitive, setDescription
-
-
-
-
Constructor Detail
-
MatrixCombinationsParameterValue
@DataBoundConstructor public MatrixCombinationsParameterValue(String name, String description, List<String> combinations)
ctor- Parameters:
name
- name of parametercombinations
- combinations to build- Since:
- 1.1.0
-
MatrixCombinationsParameterValue
@Deprecated public MatrixCombinationsParameterValue(String name, Boolean[] values, String[] confs)
Deprecated.
-
MatrixCombinationsParameterValue
@Deprecated public MatrixCombinationsParameterValue(String name, Boolean[] values, String[] confs, String description)
Deprecated.
-
-
Method Detail
-
getValues
@Deprecated public Boolean[] getValues()
Deprecated.
-
getConfs
@Deprecated public String[] getConfs()
Deprecated.
-
getCombinations
@Nonnull public List<String> getCombinations()
- Returns:
- combinations to build
- Since:
- 1.1.0
-
readResolve
protected Object readResolve()
-
createVariableResolver
public VariableResolver<String> createVariableResolver(AbstractBuild<?,?> build)
- Overrides:
createVariableResolver
in classParameterValue
-
combinationExists
public boolean combinationExists(hudson.matrix.AxisList axes, hudson.matrix.Combination c)
-
combinationExists
@Deprecated public boolean combinationExists(hudson.matrix.Combination c)
Deprecated.
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classParameterValue
-
equals
public boolean equals(Object obj)
- Overrides:
equals
in classParameterValue
-
getFormattedDescription
public String getFormattedDescription()
return parameter description, applying the configuredMarkupFormatter
for jenkins instance. This is a backport from Jenkins-2.44 or Jenkins-2.32.2.- Overrides:
getFormattedDescription
in classParameterValue
- Since:
- 1.2.0
-
-