コード例 #1
0
 public boolean isBitmap() {
   return MimeTypes.isBitmapFormat(getFormat());
 }
コード例 #2
0
 public boolean isSVG() {
   return MimeTypes.MIME_SVG.equals(MimeTypes.expandFormat(getFormat()))
       || (getFormat() == null)
       || (getFormat().length() == 0);
 }