Class ParametersBean
- java.lang.Object
-
- jetbrains.buildServer.controllers.buildType.ParametersBean
-
- Direct Known Subclasses:
EditableUserDefinedParametersBean
public class ParametersBean extends Object
- Author:
- Pavel.Sher Date: 01.08.2006
-
-
Constructor Summary
Constructors Constructor Description ParametersBean(Collection<ParameterInfo> parameters, boolean recogniseDependencyParams)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ParameterInfofindParameter(String keyWithPrefix)List<ParameterInfo>getConfigurationParameters()List<ParameterInfo>getDependencyParameters()List<ParameterInfo>getEnvironmentVariables()intgetInheritedParamsNum()Collection<ParameterInfo>getParameters()List<ParameterInfo>getParametersByKind(ParameterInfo.Kind kind)List<ParameterInfo>getParametersExceptFor(ParameterInfo.Kind exceptForKind)intgetSectionNumber()List<ParameterInfo>getSystemProperties()booleanisParametersAvailable()
-
-
-
Constructor Detail
-
ParametersBean
public ParametersBean(@NotNull Collection<ParameterInfo> parameters, boolean recogniseDependencyParams)
-
-
Method Detail
-
getParametersByKind
@NotNull public List<ParameterInfo> getParametersByKind(ParameterInfo.Kind kind)
-
getParametersExceptFor
@NotNull public List<ParameterInfo> getParametersExceptFor(ParameterInfo.Kind exceptForKind)
-
getSystemProperties
@NotNull public List<ParameterInfo> getSystemProperties()
-
getEnvironmentVariables
@NotNull public List<ParameterInfo> getEnvironmentVariables()
-
getConfigurationParameters
@NotNull public List<ParameterInfo> getConfigurationParameters()
-
getDependencyParameters
@NotNull public List<ParameterInfo> getDependencyParameters()
-
isParametersAvailable
public boolean isParametersAvailable()
-
getParameters
@NotNull public Collection<ParameterInfo> getParameters()
-
findParameter
@Nullable public ParameterInfo findParameter(@NotNull String keyWithPrefix)
-
getInheritedParamsNum
public int getInheritedParamsNum()
-
getSectionNumber
public int getSectionNumber()
- Returns:
- number of non-empty sections
-
-