com.kero.security.lang.lexems.KeyWordLexem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kero-security Show documentation
Show all versions of kero-security Show documentation
Kero-Security is a library for statically controlling access to properties of objects / classes.
package com.kero.security.lang.lexems;
import java.util.regex.Pattern;
import com.kero.security.lang.tokens.KeyWordToken;
public enum KeyWordLexem implements KsdlLexem {
SCHEME("scheme", true, KeyWordToken.SCHEME),
METALINE("\\-", true, KeyWordToken.METALINE),
FORWARD_DIRECTION("\\->", false, KeyWordToken.FORWARD_DIRECTION),
OPEN_BLOCK("\\{", false, KeyWordToken.OPEN_BLOCK),
CLOSE_BLOCK("\\}", false, KeyWordToken.CLOSE_BLOCK),
OPEN_SHORT_BLOCK(":", false, KeyWordToken.OPEN_BLOCK),
CLOSE_SHORT_BLOCK("\\n", false, KeyWordToken.CLOSE_BLOCK); //Anonymous, not common work (detecting)
private String pattern;
private boolean requireSpace;
private KeyWordToken token;
private KeyWordLexem(String pattern, boolean requireSpace, KeyWordToken token) {
this.pattern = pattern;
this.requireSpace = requireSpace;
this.token = token;
}
@Override
public boolean isMatch(CharSequence data) {
return Pattern.matches(pattern, data);
}
public boolean isRequireSpace() {
return this.requireSpace;
}
@Override
public String getPattern() {
return this.pattern;
}
@Override
public KeyWordToken tokenize(String data) {
return this.token;
}
}