com.dooapp.gaedo.finders.collections.AnythingEvaluator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gaedo-collections Show documentation
Show all versions of gaedo-collections Show documentation
Contains the collections implementation, and only depend upon gaedo-definition
package com.dooapp.gaedo.finders.collections;
import com.dooapp.gaedo.properties.Property;
public class AnythingEvaluator extends AbstractBasicEvaluator {
public AnythingEvaluator(Property field) {
super(field);
}
@Override
public boolean matches(DataType element) {
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy