Interface Resolvable
-
- All Known Implementing Classes:
ModelSpecImpl,ZPathImpl
public interface Resolvable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default java.lang.Objectresolved(java.lang.Object... parameters)When creating paths, any node in the path can be set toZPath.parameter().java.lang.Objectresolved(java.util.List<java.lang.Object> parameters)When creating paths, any node in the path can be set toZPath.parameter().
-
-
-
Method Detail
-
resolved
default java.lang.Object resolved(java.lang.Object... parameters)
When creating paths, any node in the path can be set toZPath.parameter(). At runtime, the ZPath can be "resolved" by replacing these nodes with values.- Parameters:
parameters- list of replacements. Must have be the same length as the number of parameter nodes in the path- Returns:
- new resolved ZPath
-
resolved
java.lang.Object resolved(java.util.List<java.lang.Object> parameters)
When creating paths, any node in the path can be set toZPath.parameter(). At runtime, the ZPath can be "resolved" by replacing these nodes with values.- Parameters:
parameters- list of replacements. Must have be the same length as the number of parameter nodes in the path- Returns:
- new resolved ZPath
-
-