Lines Matching defs:values

86      * Returns the number of <tt>CompositeData</tt> values (ie the
90 * @return the number of values contained.
96 * values (ie the number of rows) contained in this
198 * Add all the elements in <var>values</var> to this <tt>TabularData</tt> instance.
199 * If any element in <var>values</var> does not satisfy the constraints defined in {@link #put(CompositeData) <tt>put</tt>},
200 * or if any two elements in <var>values</var> have the same index calculated according to this <tt>TabularData</tt>
202 * and no element of <var>values</var> is added, thus leaving this <tt>TabularData</tt> instance unchanged.
204 * @param values the array of composite data values to be added as new rows to this <tt>TabularData</tt> instance;
205 * if <var>values</var> is <tt>null</tt> or empty, this method returns without doing anything.
207 * @throws NullPointerException if an element of <var>values</var> is <tt>null</tt>
208 * @throws InvalidOpenTypeException if an element of <var>values</var> does not conform to
210 * @throws KeyAlreadyExistsException if the index for an element of <var>values</var>, calculated according to
213 * or two elements of <var>values</var> have the same index.
215 public void putAll(CompositeData[] values) ;
218 * Removes all <tt>CompositeData</tt> values (ie rows) from this <tt>TabularData</tt> instance.
225 /* *** Collection views of the keys and values *** */
229 * Returns a set view of the keys (ie the index values) of the
230 * {@code CompositeData} values (ie the rows) contained in this
236 * @return a set view ({@code Set<List<?>>}) of the index values
242 * Returns a collection view of the {@code CompositeData} values
246 * The returned collection can be used to iterate over the values.
251 public Collection<?> values();