global.namespace.archive.io.api.ArchiveEntrySink Maven / Gradle / Ivy
The newest version!
/*
* Copyright (C) 2013-2018 Schlichtherle IT Services.
* All rights reserved. Use is subject to license terms.
*/
package global.namespace.archive.io.api;
import global.namespace.fun.io.api.Sink;
/**
* An abstraction for writing the content of an underlying archive entry.
*
* @author Christian Schlichtherle
*/
public abstract class ArchiveEntrySink extends ArchiveEntry implements Sink {
@Override
public boolean canEqual(Object that) { return that instanceof ArchiveEntrySink; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy