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

com.almondtools.testrecorder.profile.ExcludeStatic Maven / Gradle / Ivy

There is a newer version: 0.1.6
Show newest version
package com.almondtools.testrecorder.profile;

import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
import java.util.function.Predicate;

public class ExcludeStatic implements Predicate {

	@Override
	public boolean test(Field field) {
		return (field.getModifiers() & Modifier.STATIC) == Modifier.STATIC;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy