Container.java (133B) download
1package osm.common;
2
3public interface Container<T, A> {
4 void accumulate(A value);
5
6 void fold(T other);
7
8 void finish();
9}
misc/persolijnosm-protobuf/src/main/java/osm/common/Container.java in master | |
Repositories | Summary | Log | Files |
Container.java (133B) download
1package osm.common;
2
3public interface Container<T, A> {
4 void accumulate(A value);
5
6 void fold(T other);
7
8 void finish();
9}