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

com.mitchellbosecke.pebble.extension.core.NullTest Maven / Gradle / Ivy

package com.mitchellbosecke.pebble.extension.core;

import java.util.List;
import java.util.Map;

import com.mitchellbosecke.pebble.extension.Test;

public class NullTest implements Test {

	@Override
	public List getArgumentNames() {
		return null;
	}

	@Override
	public boolean apply(Object input, Map args) {
		return input == null;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy