All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.noenv.wiremongo.mapping.MatchAll Maven / Gradle / Ivy

There is a newer version: 4.5.11
Show newest version
package com.noenv.wiremongo.mapping;

import com.noenv.wiremongo.command.Command;

public class MatchAll extends MappingBase {

  public MatchAll() {
    super("matchAll");
  }

  @Override
  protected Object parseResponse(Object jsonValue) {
    throw new UnsupportedOperationException();
  }

  @Override
  public boolean matches(Command c) {
    return true;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy