com.github.thomasridd.flatsy.query.matchers.IsFolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Flatsy Show documentation
Show all versions of Flatsy Show documentation
A library for handling flat file json databases
package com.github.thomasridd.flatsy.query.matchers;
import com.github.thomasridd.flatsy.FlatsyObject;
import com.github.thomasridd.flatsy.FlatsyObjectType;
/**
* Created by Tom.Ridd on 15/08/15.
*/
public class IsFolder implements FlatsyMatcher {
@Override
public boolean matches(FlatsyObject object) {
return object.getType() == FlatsyObjectType.Folder;
}
}