This matcher only handles numeric nodes. For other primitive types, + * add {@link StrictPrimitivePartialMatcher} to your {@link CompositeJsonMatcher}.
+ * + *Example usage:
+ *+ * new CompositeJsonMatcher( + * new LenientJsonArrayPartialMatcher(), + * new LenientJsonObjectPartialMatcher(), + * new LenientNumberPrimitivePartialMatcher(), + * new StrictPrimitivePartialMatcher() + * ); + *+ */ public class LenientNumberPrimitivePartialMatcher implements PartialJsonMatcher