private IsPojo where()

in pojo/src/main/java/com/spotify/hamcrest/pojo/IsPojo.java [84:92]


  private <T> IsPojo<A> where(
      final String methodName,
      final MethodReference<A, T> valueExtractor,
      final Matcher<T> matcher) {

    return toBuilder()
        .methodHandler(methodName, MethodHandler.create(valueExtractor, matcher))
        .build();
  }