Lines Matching refs:ComponentSampleModel

63  *  All samples of a given ComponentSampleModel
76 public class ComponentSampleModel extends SampleModel
86 * <code>ComponentSampleModel</code>.
92 * <code>ComponentSampleModel</code>.
98 * data described by this ComponentSampleModel.
103 * data described by this ComponentSampleModel.
114 * Constructs a ComponentSampleModel with the specified parameters.
141 public ComponentSampleModel(int dataType,
174 * Constructs a ComponentSampleModel with the specified parameters.
203 public ComponentSampleModel(int dataType,
251 * for a data buffer that matches this ComponentSampleModel.
291 * Creates a new <code>ComponentSampleModel</code> with the specified
297 * @return a new <code>ComponentSampleModel</code> with the specified size
365 return new ComponentSampleModel(dataType, w, h, pStride,
370 * Creates a new ComponentSampleModel with a subset of the bands
371 * of this ComponentSampleModel. The new ComponentSampleModel can be
372 * used with any DataBuffer that the existing ComponentSampleModel
373 * can be used with. The new ComponentSampleModel/DataBuffer
375 * of the original ComponentSampleModel/DataBuffer combination.
377 * <code>ComponentSampleModel</code>
378 * @return a <code>ComponentSampleModel</code> created with a subset
379 * of bands from this <code>ComponentSampleModel</code>.
394 return new ComponentSampleModel(this.dataType, width, height,
402 * <code>ComponentSampleModel</code>.
404 * and size are be consistent with this <code>ComponentSampleModel</code>.
407 * <code>ComponentSampleModel</code>.
441 * <code>data</code> with a <code>ComponentSampleModel</code>
458 * with a <code>ComponentSampleModel</code> <code>csm</code> as
509 /** Returns the scanline stride of this ComponentSampleModel.
510 * @return the scanline stride of this <code>ComponentSampleModel</code>.
516 /** Returns the pixel stride of this ComponentSampleModel.
517 * @return the pixel stride of this <code>ComponentSampleModel</code>.
529 * For a <code>ComponentSampleModel</code>, this is identical to the
543 * <code>TransferType</code>. For a <code>ComponentSampleModel</code>,
551 * described by <code>ComponentSampleModel</code> <code>csm1</code>,
553 * is described by <code>ComponentSampleModel</code> <code>csm2</code>.
557 * ComponentSampleModel csm1, csm2;
895 * <code>TransferType</code>. For a <code>ComponentSampleModel</code>,
901 * described by <code>ComponentSampleModel</code> <code>csm1</code>,
903 * is described by <code>ComponentSampleModel</code> <code>csm2</code>.
907 * ComponentSampleModel csm1, csm2;
1167 if ((o == null) || !(o instanceof ComponentSampleModel)) {
1171 ComponentSampleModel that = (ComponentSampleModel)o;