Interface ParameterResolutionResult
-
public interface ParameterResolutionResult
- Since:
- 6.0
- Author:
- Eugene Petrenko
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,String>
getAllParameters()
Map<String,String>
getFullyResolvedParameters()
Map<String,String>
getNotFullyResolvedParameters()
-
-
-
Method Detail
-
getFullyResolvedParameters
@NotNull Map<String,String> getFullyResolvedParameters()
- Returns:
- map of parameters with values that does not contain any references
-
getNotFullyResolvedParameters
@NotNull Map<String,String> getNotFullyResolvedParameters()
- Returns:
- map of parameters that was not included onto
getFullyResolvedParameters()
-
getAllParameters
@NotNull Map<String,String> getAllParameters()
- Returns:
- all parameters map with resolved values. This is a map that contains
both
getFullyResolvedParameters()
andgetNotFullyResolvedParameters()
-
-