Examples of ITikaToXMPConverter


Examples of org.apache.tika.xmp.convert.ITikaToXMPConverter

        assertFalse( TikaToXMP.isConverterAvailable( null ) );
    }

    @Test
    public void getConverter_ConverterAvailable_class() throws TikaException {
        ITikaToXMPConverter converter = TikaToXMP.getConverter( OOXML_MIMETYPE );
        assertNotNull( converter );
        assertTrue( converter instanceof MSOfficeXMLConverter );
    }
View Full Code Here

Examples of org.apache.tika.xmp.convert.ITikaToXMPConverter

        assertTrue( converter instanceof MSOfficeXMLConverter );
    }

    @Test
    public void getConverter_noConverterAvailable_null() throws TikaException {
        ITikaToXMPConverter converter = TikaToXMP.getConverter( GENERIC_MIMETYPE );
        assertNull( converter );
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.