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

org.meeuw.json.grep.matching.Wildcard Maven / Gradle / Ivy

package org.meeuw.json.grep.matching;

import org.meeuw.json.PathEntry;

/**
 * A wild card matches always.
 */
public class Wildcard extends AbstractKeyPattern {

    @Override
    public boolean matches(PathEntry key) {
        return true;
    }

    @Override
    public String toString() {
        return "*";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy