(final Resource resource)
| 234 | } |
| 235 | |
| 236 | public static RequestMatcher startsWith(final Resource resource) { |
| 237 | return ApiUtils.startsWith(extractor(resource.id()), checkNotNull(resource, "Resource should not be null")); |
| 238 | } |
| 239 | |
| 240 | public static <T> RequestMatcher startsWith(final RequestExtractor<T> extractor, final String expected) { |
| 241 | return ApiUtils.startsWith(checkNotNull(extractor, "Extractor should not be null"), |