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

com.cognitect.transit.impl.Parser Maven / Gradle / Ivy

// Copyright (c) Cognitect, Inc.
// All rights reserved.

package com.cognitect.transit.impl;

import com.cognitect.transit.ArrayReadHandler;
import com.cognitect.transit.MapReadHandler;

import java.io.IOException;

public interface Parser {
    Object parse(ReadCache cache) throws IOException;
    Object parseVal(boolean asMapKey, ReadCache cache) throws IOException;
    Object parseMap(boolean asMapKey, ReadCache cache, MapReadHandler handler) throws IOException;
    Object parseArray(boolean asMapKey, ReadCache cache, ArrayReadHandler handler) throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy