com.vladsch.flexmark.util.sequence.builder.PlainSegmentBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of driver-cql-shaded Show documentation
Show all versions of driver-cql-shaded Show documentation
A Shaded CQL ActivityType driver for http://nosqlbench.io/
package com.vladsch.flexmark.util.sequence.builder;
import org.jetbrains.annotations.NotNull;
public class PlainSegmentBuilder extends SegmentBuilderBase {
public PlainSegmentBuilder() {
}
public PlainSegmentBuilder(int options) {
super(options);
}
@NotNull
public static PlainSegmentBuilder emptyBuilder() {
return new PlainSegmentBuilder();
}
@NotNull
public static PlainSegmentBuilder emptyBuilder(int options) {
return new PlainSegmentBuilder(options);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy