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

com.vladsch.flexmark.util.sequence.builder.IBasedSegmentBuilder Maven / Gradle / Ivy

There is a newer version: 0.64.8
Show newest version
package com.vladsch.flexmark.util.sequence.builder;

import com.vladsch.flexmark.util.sequence.BasedSequence;
import org.jetbrains.annotations.NotNull;

public interface IBasedSegmentBuilder> extends ISegmentBuilder {
    @NotNull BasedSequence getBaseSequence();
    @NotNull String toStringWithRangesVisibleWhitespace();
    @NotNull String toStringWithRanges();
    @NotNull String toStringChars();
}