Example usage for org.springframework.util MimeTypeUtils IMAGE_PNG

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

Introduction

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

Prototype

MimeType IMAGE_PNG

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

Click Source Link

Document

Public constant mime type for image/png .

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);
}