Uses of Class
net.coobird.thumbnailator.name.Rename
-
Packages that use Rename Package Description net.coobird.thumbnailator This package contains classes which provide the core functionalities of Thumbnailator, includingThumbnails, the entry point for most use cases of Thumbnailator.net.coobird.thumbnailator.name This package contains classes used to generate file names when saving thumbnail images to files. -
-
Uses of Rename in net.coobird.thumbnailator
Methods in net.coobird.thumbnailator with parameters of type Rename Modifier and Type Method Description java.util.List<java.io.File>Thumbnails.Builder. asFiles(java.io.File destinationDir, Rename rename)Creates thumbnails and stores them to files in the directory specified by the givenFileobject, and using theRenamefunction to determine the filenames.java.util.List<java.io.File>Thumbnails.Builder. asFiles(Rename rename)Creates thumbnails and stores them to files using theRenamefunction to determine the filenames.static voidThumbnailator. createThumbnails(java.util.Collection<? extends java.io.File> files, Rename rename, int width, int height)Creates thumbnails from a specifiedCollectionofFiles.static java.util.Collection<java.io.File>Thumbnailator. createThumbnailsAsCollection(java.util.Collection<? extends java.io.File> files, Rename rename, int width, int height)Creates thumbnails from a specifiedCollectionofFiles.voidThumbnails.Builder. toFiles(java.io.File destinationDir, Rename rename)Creates thumbnails and stores them to files in the directory specified by the givenFileobject, and using theRenamefunction to determine the filenames.voidThumbnails.Builder. toFiles(Rename rename)Creates thumbnails and stores them to files using theRenamefunction to determine the filenames. -
Uses of Rename in net.coobird.thumbnailator.name
Fields in net.coobird.thumbnailator.name declared as Rename Modifier and Type Field Description static RenameRename. NO_CHANGEARenamewhich does not alter the given file name.static RenameRename. PREFIX_DOT_THUMBNAILAppendsthumbnail.to the beginning of the file name.static RenameRename. PREFIX_HYPHEN_THUMBNAILAppendsthumbnail-to the beginning of the file name.static RenameRename. PREFIX_HYPTHEN_THUMBNAILDeprecated.Please use the correctly spelledPREFIX_HYPHEN_THUMBNAIL.static RenameRename. SUFFIX_DOT_THUMBNAILAppends.thumbnailto the file name prior to the extension of the file.static RenameRename. SUFFIX_HYPHEN_THUMBNAILAppends-thumbnailto the file name prior to the extension of the file.static RenameRename. SUFFIX_HYPTHEN_THUMBNAILDeprecated.Please use the correctly spelledSUFFIX_HYPHEN_THUMBNAIL.
-