All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.prism.Parser Maven / Gradle / Ivy

The newest version!
package org.prism;

public abstract class Parser {

    public static void loadLibrary(String path) {
        System.load(path);
    }

    public static native byte[] parseAndSerialize(byte[] source, byte[] options);

    public static byte[] parseAndSerialize(byte[] source) {
        return parseAndSerialize(source, null);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy