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

org.fisco.bcos.web3j.abi.EventValues Maven / Gradle / Ivy

There is a newer version: 2.6.6
Show newest version
package org.fisco.bcos.web3j.abi;

import java.util.List;

import org.fisco.bcos.web3j.abi.datatypes.Type;

/**
 * Persisted solidity event parameters.
 */
public class EventValues {
    private final List indexedValues;
    private final List nonIndexedValues;

    public EventValues(List indexedValues, List nonIndexedValues) {
        this.indexedValues = indexedValues;
        this.nonIndexedValues = nonIndexedValues;
    }

    public List getIndexedValues() {
        return indexedValues;
    }

    public List getNonIndexedValues() {
        return nonIndexedValues;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy