Package com._1c.g5.v8.dt.ql.resource
Class QlParametersFinder.QlParametersInfo
- java.lang.Object
-
- com._1c.g5.v8.dt.ql.resource.QlParametersFinder.QlParametersInfo
-
- Enclosing class:
- QlParametersFinder
public static class QlParametersFinder.QlParametersInfo extends Object
Special container ofParameterExpression
found in Ql query Instances ofQlParametersFinder.QlParametersInfo
are stateful and are not safe for use by multiple threads.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<CaseInsensitiveString,List<ParameterExpression>>
getParametersAsExpression()
Gets allParameterExpression
which is contained in expression in Ql modelMap<CaseInsensitiveString,List<ParameterExpression>>
getParametersAsExpressionAndTable()
Gets allParameterExpression
which is contained in table and expression in Ql modelMap<CaseInsensitiveString,List<org.eclipse.xtext.util.Pair<ParameterExpression,TypeDescriptionSource>>>
getParametersAsExpressionWithTypes()
Gets allParameterExpression
with expected types which is contained in expression in Ql modelMap<CaseInsensitiveString,List<ParameterExpression>>
getParametersAsTable()
Gets allParameterExpression
which is contained in table in Ql model
-
-
-
Method Detail
-
getParametersAsExpression
public Map<CaseInsensitiveString,List<ParameterExpression>> getParametersAsExpression()
Gets allParameterExpression
which is contained in expression in Ql model- Returns:
- all conformity between name of the
ParameterExpression
and list of Ql model objectsParameterExpression
, nevernull
-
getParametersAsTable
public Map<CaseInsensitiveString,List<ParameterExpression>> getParametersAsTable()
Gets allParameterExpression
which is contained in table in Ql model- Returns:
- all conformity between name of the
ParameterExpression
and list of Ql model objectsParameterExpression
, nevernull
-
getParametersAsExpressionAndTable
public Map<CaseInsensitiveString,List<ParameterExpression>> getParametersAsExpressionAndTable()
Gets allParameterExpression
which is contained in table and expression in Ql model- Returns:
- all conformity between name of the
ParameterExpression
and list of Ql model objectsParameterExpression
, nevernull
-
getParametersAsExpressionWithTypes
public Map<CaseInsensitiveString,List<org.eclipse.xtext.util.Pair<ParameterExpression,TypeDescriptionSource>>> getParametersAsExpressionWithTypes()
Gets allParameterExpression
with expected types which is contained in expression in Ql model- Returns:
- all conformity between name of the
ParameterExpression
and list of pairs (Ql model objectsParameterExpression
; its expected types), nevernull
-
-