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

spinjar.com.minidev.asm.BasicFiledFilter Maven / Gradle / Ivy

There is a newer version: 7.22.0-alpha1
Show newest version
package net.minidev.asm;

import java.lang.reflect.Field;
import java.lang.reflect.Method;

public class BasicFiledFilter implements FieldFilter {
	public final static BasicFiledFilter SINGLETON = new BasicFiledFilter();

	@Override
	public boolean canUse(Field field) {
		return true;
	}

	@Override
	public boolean canUse(Field field, Method method) {
		return true;
	}

	@Override
	public boolean canRead(Field field) {
		return true;
	}

	@Override
	public boolean canWrite(Field field) {
		return true;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy