#1892 Add support for :of-type Token Modifier (#1893)

This commit is contained in:
Alexander Lukyanchikov 2020-07-06 05:50:44 -04:00 committed by GitHub
parent 9813c6915c
commit df133d10f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -55,8 +55,13 @@ public enum TokenParamModifier {
/**
* :text
*/
TEXT(":text");
TEXT(":text"),
/**
* :of-type
*/
OF_TYPE(":of-type");
private static final Map<String, TokenParamModifier> VALUE_TO_ENUM;
static {