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

com.googlecode.objectify.condition.Always Maven / Gradle / Ivy

There is a newer version: 6.1.2
Show newest version
package com.googlecode.objectify.condition;


/**
 * 

Simple If condition that always returns true for any value.

* * @author Jeff Schnitzer */ public class Always implements If { @Override public boolean matchesValue(Object value) { return true; } @Override public boolean matchesPojo(Object pojo) { return true; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy