* @param position The position of the value to be evaluated
* @param matcher The matcher to use for evaluation
* @return The new matcher
*/
public static TypeSafeMatcher<JsonNode> withValueAt(int position, Matcher<?> matcher) {
return new WithValueAt(position, matcher);
}