com.vladsch.flexmark.ast.WhiteSpace 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.ast;
import com.vladsch.flexmark.util.ast.Node;
import com.vladsch.flexmark.util.sequence.BasedSequence;
import org.jetbrains.annotations.NotNull;
/**
* Only generated for CharacterNodeFactory custom parsing
*/
public class WhiteSpace extends Node {
public WhiteSpace() {
}
public WhiteSpace(BasedSequence chars) {
super(chars);
}
@NotNull
@Override
public BasedSequence[] getSegments() {
return EMPTY_SEGMENTS;
}
@Override
public void getAstExtra(@NotNull StringBuilder out) {
astExtraChars(out);
}
@NotNull
@Override
protected String toStringAttributes() {
return "text=" + getChars();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy