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

org.web3j.rlp.RlpList Maven / Gradle / Ivy

The newest version!
package org.web3j.rlp;

import java.util.Arrays;
import java.util.List;

/**
 * RLP list type.
 */
public class RlpList implements RlpType {
    private final List values;

    public RlpList(RlpType... values) {
        this.values = Arrays.asList(values);
    }

    public RlpList(List values) {
        this.values = values;
    }

    public List getValues() {
        return values;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy