private IsJsonNumber()

in jackson/src/main/java/com/spotify/hamcrest/jackson/IsJsonNumber.java [48:53]


  private IsJsonNumber(
      final Matcher<?> numberMatcher, final Function<NumericNode, Object> projection) {
    super(JsonNodeType.NUMBER);
    this.numberMatcher = Objects.requireNonNull(numberMatcher);
    this.projection = Objects.requireNonNull(projection);
  }