org.pkl.thirdparty.commonmark.parser.block.BlockContinue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pkl-tools Show documentation
Show all versions of pkl-tools Show documentation
Fat Jar containing pkl-cli, pkl-codegen-java, pkl-codegen-kotlin, pkl-config-java, pkl-core, pkl-doc, and their shaded third-party dependencies.
package org.pkl.thirdparty.commonmark.parser.block;
import org.pkl.thirdparty.commonmark.internal.BlockContinueImpl;
/**
* Result object for continuing parsing of a block, see static methods for constructors.
*/
public class BlockContinue {
protected BlockContinue() {
}
public static BlockContinue none() {
return null;
}
public static BlockContinue atIndex(int newIndex) {
return new BlockContinueImpl(newIndex, -1, false);
}
public static BlockContinue atColumn(int newColumn) {
return new BlockContinueImpl(-1, newColumn, false);
}
public static BlockContinue finished() {
return new BlockContinueImpl(-1, -1, true);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy