
org.fife.tmm.HexLiteralFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tokenmakermaker Show documentation
Show all versions of tokenmakermaker Show documentation
An application to easily create syntax highlighting for custom languages in RSyntaxTextArea.
The newest version!
package org.fife.tmm;
/**
* Format for hex literals.
*/
public enum HexLiteralFormat implements NumberFormat {
FORMAT1("0x{HexDigit}+", "0x0af"),
FORMAT2("0x{HexDigit}+[lL]?", "0x0af, 0x0afL");
private String format;
private String sample;
/**
* Constructor.
*
* @param format The format.
* @param sample A sample of text that this format would match.
*/
HexLiteralFormat(String format, String sample) {
this.format = format;
this.sample = sample;
}
public static HexLiteralFormat getByFormat(String format) {
for (HexLiteralFormat hlf : values()) {
if (hlf.getFormat().equals(format)) {
return hlf;
}
}
return null;
}
public String getFormat() {
return format;
}
public String getSample() {
return sample;
}
@Override
public String toString() {
return format;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy