datahub.protobuf.visitors.dataset.DescriptionVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datahub-protobuf Show documentation
Show all versions of datahub-protobuf Show documentation
DataHub integration with Protobuf schemas for metadata
package datahub.protobuf.visitors.dataset;
import datahub.protobuf.visitors.ProtobufModelVisitor;
import datahub.protobuf.visitors.VisitContext;
import java.util.stream.Stream;
public class DescriptionVisitor implements ProtobufModelVisitor {
@Override
public Stream visitGraph(VisitContext context) {
return Stream.of(context.root().comment());
}
}