
io.github.robertograham.rleparser.helper.RleFileHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rle-parser-module Show documentation
Show all versions of rle-parser-module Show documentation
Jigsaw module to parse RLE files
The newest version!
package io.github.robertograham.rleparser.helper;
public class RleFileHelper {
private static final String COMMENT_STARTER = "#";
public static boolean isComment(String rleLine) {
return rleLine.startsWith(COMMENT_STARTER);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy