File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
jbbp/src/main/java/com/igormaznitsa/jbbp/mapper Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1919import java .lang .reflect .Field ;
2020
2121/**
22- * Filter to check allowed marked fields during mapping.
22+ * Filter allows cheeking Bin annotation and fields during mapping or writing operations .
2323 *
2424 * @see com.igormaznitsa.jbbp.io.JBBPOut
25- * @see JBBPMapper
26- * @since 2.0.4
25+ * @see JBBPMapper#map
26+ * @see com.igormaznitsa.jbbp.io.JBBPOut#Bin
2727 * @since 2.0.4
2828 */
2929public interface BinFieldFilter {
3030 /**
3131 * Check annotation and field that they allowed.
3232 *
3333 * @param annotation bin annotation, must not be null
34- * @param field marked field, can be null if checked class
35- * @return true if allowed, false otherwise
34+ * @param field marked field, can be null
35+ * @return true if field allowed, false otherwise
3636 */
3737 boolean isAllowed (Bin annotation , Field field );
3838}
You can’t perform that action at this time.
0 commit comments