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

com.github.thomasridd.flatsy.query.matchers.All Maven / Gradle / Ivy

There is a newer version: 0.0.6
Show newest version
package com.github.thomasridd.flatsy.query.matchers;

import com.github.thomasridd.flatsy.FlatsyObject;

/**
 * Created by Tom.Ridd on 15/08/15.
 */
public class All implements FlatsyMatcher {
    
    @Override
    public boolean matches(FlatsyObject object) {
        return true;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy