setValues method

void setValues(
  1. List<T> values
)

Sets the array of entries that this DataSet represents, and calls notifyDataSetChanged()

@return

Implementation

void setValues(List<T> values) {
  _values = values;
  notifyDataSetChanged();
}