/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.camel.component.fop; public enum FopOutputType { pdf("application/pdf"), ps("application/postscript"), pcl("application/x-pcl"), png("image/png"), jpeg("image/jpeg"), svg("image/svg+xml"), xml("application/X-fop-areatree"), mif("application/mif"), rtf("application/rtf"), txt("text/plain"); private final String outputFormatExtended; FopOutputType(String outputFormatExtended) { this.outputFormatExtended = outputFormatExtended; } public String getFormatExtended() { return outputFormatExtended; } public static FopOutputType asFooOutputType(String outputFormatExtended) { if ("application/pdf".equalsIgnoreCase(outputFormatExtended)) { return pdf; } else if ("application/postscript".equalsIgnoreCase(outputFormatExtended)) { return ps; } else if ("application/x-pcl".equalsIgnoreCase(outputFormatExtended)) { return pcl; } else if ("image/png".equalsIgnoreCase(outputFormatExtended)) { return png; } else if ("image/jpeg".equalsIgnoreCase(outputFormatExtended)) { return jpeg; } else if ("image/svg+xml".equalsIgnoreCase(outputFormatExtended)) { return svg; } else if ("application/X-fop-areatree".equalsIgnoreCase(outputFormatExtended)) { return xml; } else if ("application/mif".equalsIgnoreCase(outputFormatExtended)) { return mif; } else if ("application/rtf".equalsIgnoreCase(outputFormatExtended)) { return rtf; } else if ("text/plain".equalsIgnoreCase(outputFormatExtended)) { return txt; } return null; } }