Lines Matching refs:formatName
583 String formatName;
586 String formatName) {
588 this.formatName = formatName;
593 return Arrays.asList(spi.getFormatNames()).contains(formatName) &&
688 * @param formatName a <code>String</code> containing the informal
694 * @exception IllegalArgumentException if <code>formatName</code>
700 getImageReadersByFormatName(String formatName)
702 if (formatName == null) {
703 throw new IllegalArgumentException("formatName == null!");
710 formatName),
871 * @param formatName a <code>String</code> containing the informal
877 * @exception IllegalArgumentException if <code>formatName</code> is
883 getImageWritersByFormatName(String formatName)
885 if (formatName == null) {
886 throw new IllegalArgumentException("formatName == null!");
893 formatName),
1144 * @param formatName the informal name of the <code>format</code>.
1154 getImageWriters(ImageTypeSpecifier type, String formatName)
1159 if (formatName == null) {
1160 throw new IllegalArgumentException("formatName == null!");
1168 formatName),
1469 * @param formatName a <code>String</code> containg the informal
1480 String formatName,
1485 if (formatName == null) {
1486 throw new IllegalArgumentException("formatName == null!");
1492 return doWrite(im, getWriter(im, formatName), output);
1502 * @param formatName a <code>String</code> containg the informal
1513 String formatName,
1520 ImageWriter writer = getWriter(im, formatName);
1554 * @param formatName a <code>String</code> containg the informal
1565 String formatName,
1578 return doWrite(im, getWriter(im, formatName), stream);
1590 String formatName) {
1593 Iterator<ImageWriter> iter = getImageWriters(type, formatName);