Example usage for org.springframework.util MimeTypeUtils IMAGE_GIF

List of usage examples for org.springframework.util MimeTypeUtils IMAGE_GIF

Introduction

In this page you can find the example usage for org.springframework.util MimeTypeUtils IMAGE_GIF.

Prototype

MimeType IMAGE_GIF

To view the source code for org.springframework.util MimeTypeUtils IMAGE_GIF.

Click Source Link

Document

Public constant mime type for image/gif .

Usage

From source file:net.pkhsolutions.pecsapp.boundary.PictureServiceBean.java

@Override
public boolean isSupportedMimeType(@NotNull MimeType mimeType) {
    return mimeType.equals(MimeTypeUtils.IMAGE_JPEG) || mimeType.equals(MimeTypeUtils.IMAGE_PNG)
            || mimeType.equals(MimeTypeUtils.IMAGE_GIF);
}