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

com.amazon.ion.impl.SymbolTableAsStruct Maven / Gradle / Ivy

The newest version!
package com.amazon.ion.impl;

import com.amazon.ion.IonStruct;
import com.amazon.ion.SymbolTable;
import com.amazon.ion.ValueFactory;

/**
 * Identifies {@link SymbolTable} implementations capable of producing IonStruct representations of themselves.
 */
interface SymbolTableAsStruct {

    /**
     * Provides an IonStruct representation of the SymbolTable.
     * @param valueFactory the {@link ValueFactory} from which to construct the IonStruct.
     * @return an IonStruct representing the SymbolTable.
     */
    IonStruct getIonRepresentation(ValueFactory valueFactory);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy