/** * Adds field(s) which will be excluded from select and update statements. * * @param excludedFields */ public void addExcludedFields(Field... fields) { excludedFields = CollectionUtils.addAndInstantiateIfNeeded(excludedFields, Arrays.asList(fields)); }
/** * Adds fields which will be excluded from select and update statements. * * @param excludedFields */ public void addExcludedFields(List<Field> fields) { excludedFields = CollectionUtils.addAndInstantiateIfNeeded(excludedFields, fields); }
/** * Adds a field which will be excluded from select and update statements. * * @param excludedFields */ public void addExcludedField(Field field) { excludedFields = CollectionUtils.addAndInstantiateIfNeeded(excludedFields, field); }