Uses of Class
net.coobird.thumbnailator.ThumbnailParameter
-
Packages that use ThumbnailParameter 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.builders This package provides classes which provides convenient builders for classes which are used by Thumbnailator.net.coobird.thumbnailator.name This package contains classes used to generate file names when saving thumbnail images to files.net.coobird.thumbnailator.tasks This package provides classes which perform image input and output operations, which can be used to aid in creating and writing thumbnails to and from external sources.net.coobird.thumbnailator.tasks.io This package provides classes which perform image input and output operations in conjunction with theSourceSinkThumbnailTaskclass. -
-
Uses of ThumbnailParameter in net.coobird.thumbnailator
Methods in net.coobird.thumbnailator that return ThumbnailParameter Modifier and Type Method Description private ThumbnailParameterThumbnails.Builder. makeParam()Returns aThumbnailParameterfrom the current builder state. -
Uses of ThumbnailParameter in net.coobird.thumbnailator.builders
Methods in net.coobird.thumbnailator.builders that return ThumbnailParameter Modifier and Type Method Description ThumbnailParameterThumbnailParameterBuilder. build()Returns aThumbnailParameterfrom the parameters which are currently set. -
Uses of ThumbnailParameter in net.coobird.thumbnailator.name
Methods in net.coobird.thumbnailator.name with parameters of type ThumbnailParameter Modifier and Type Method Description abstract java.lang.StringRename. apply(java.lang.String name, ThumbnailParameter param)Applies the function performed by thisRenameon the specified name and thumbnail creation parameters. -
Uses of ThumbnailParameter in net.coobird.thumbnailator.tasks
Fields in net.coobird.thumbnailator.tasks declared as ThumbnailParameter Modifier and Type Field Description protected ThumbnailParameterThumbnailTask. paramThe parameters to use when creating a thumbnail.Methods in net.coobird.thumbnailator.tasks that return ThumbnailParameter Modifier and Type Method Description ThumbnailParameterFileThumbnailTask. getParam()ThumbnailParameterStreamThumbnailTask. getParam()ThumbnailParameterThumbnailTask. getParam()Returns theThumbnailParameterfor thisThumbnailTask, used when performing a thumbnail generation operation.Constructors in net.coobird.thumbnailator.tasks with parameters of type ThumbnailParameter Constructor Description FileThumbnailTask(ThumbnailParameter param, java.io.File sourceFile, java.io.File destinationFile)Creates aThumbnailTaskin which image data is read from the specifiedFileand is output to a specifiedFile, using the parameters provided in the specifiedThumbnailParameter.SourceSinkThumbnailTask(ThumbnailParameter param, ImageSource<S> source, ImageSink<D> destination)Creates aThumbnailTaskin which an image is retrived from the specifiedImageSourceand written to the specifiedImageSink, using the parameters provided in the specifiedThumbnailParameter.StreamThumbnailTask(ThumbnailParameter param, java.io.InputStream is, java.io.OutputStream os)Creates aThumbnailTaskin which streamed image data from the specifiedInputStreamis output to a specifiedOutputStream, using the parameters provided in the specifiedThumbnailParameter.ThumbnailTask(ThumbnailParameter param)Instantiates aThumbnailTaskwith the parameters to use when creating thumbnails. -
Uses of ThumbnailParameter in net.coobird.thumbnailator.tasks.io
Fields in net.coobird.thumbnailator.tasks.io declared as ThumbnailParameter Modifier and Type Field Description protected ThumbnailParameterAbstractImageSink. paramThe parameters that should be used when storing the image.protected ThumbnailParameterAbstractImageSource. paramThe parameters that should be used when retrieving the image.private ThumbnailParameterFileImageSink. paramprivate ThumbnailParameterFileImageSource. paramAThumbnailParameterobject that is given byFileImageSource.setThumbnailParameter(ThumbnailParameter).Methods in net.coobird.thumbnailator.tasks.io with parameters of type ThumbnailParameter Modifier and Type Method Description voidAbstractImageSink. setThumbnailParameter(ThumbnailParameter param)voidAbstractImageSource. setThumbnailParameter(ThumbnailParameter param)voidFileImageSink. setThumbnailParameter(ThumbnailParameter param)voidFileImageSource. setThumbnailParameter(ThumbnailParameter param)voidImageSink. setThumbnailParameter(ThumbnailParameter param)Sets theThumbnailParameterfrom which to retrieve parameters to use when storing the image.voidImageSource. setThumbnailParameter(ThumbnailParameter param)Sets theThumbnailParameterfrom which to retrieve parameters to use when retrieving the image.voidInputStreamImageSource. setThumbnailParameter(ThumbnailParameter param)
-