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

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

package org.meeuw.json.grep.matching;

import org.meeuw.json.ArrayEntry;
import org.meeuw.json.PathEntry;

/**
* @author Michiel Meeuwissen
* @since ...
*/
public class ArrayEntryMatch extends AbstractKeyPattern {
    @Override
    public boolean matches(PathEntry key) {
        return key instanceof ArrayEntry;
    }
    @Override
    public String toString() {
        return "[*]";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy