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

org.leo.aws.ddb.utils.ITuple Maven / Gradle / Ivy

There is a newer version: 1.0.21
Show newest version
package org.leo.aws.ddb.utils;

import java.io.Serializable;

public interface ITuple extends Serializable {
    default  ITuple append(final A a) {
        throw new UnsupportedOperationException();
    }

    Iterable toIterable();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy