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

me.excel.tools.setter.FieldValueSetterAdapter Maven / Gradle / Ivy

The newest version!
package me.excel.tools.setter;


import me.excel.tools.model.excel.ExcelCell;

/**
 * field value setter adapter, easy implements customer value setter extends this.
 * 

* Created by hanwen on 15-12-16. */ public abstract class FieldValueSetterAdapter implements FieldValueSetter { private String matchField; public FieldValueSetterAdapter(String matchField) { this.matchField = matchField; } protected final String getMatchField() { return matchField; } @Override public abstract void set(Object data, ExcelCell excelCell); @Override public boolean matches(String field) { return matchField.equals(field); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy