Ejemplo n.º 1
0
  /**
   * 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));
  }
Ejemplo n.º 2
0
  /**
   * Adds fields which will be excluded from select and update statements.
   *
   * @param excludedFields
   */
  public void addExcludedFields(List<Field> fields) {

    excludedFields = CollectionUtils.addAndInstantiateIfNeeded(excludedFields, fields);
  }
Ejemplo n.º 3
0
  /**
   * Adds a field which will be excluded from select and update statements.
   *
   * @param excludedFields
   */
  public void addExcludedField(Field field) {

    excludedFields = CollectionUtils.addAndInstantiateIfNeeded(excludedFields, field);
  }