All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.protostream.impl.parser.AnnotationTokens Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.protostream.impl.parser;

/**
 * The tokens used by the annotation grammar.
 *
 * @author [email protected]
 * @since 2.0
 */
enum AnnotationTokens {
   AT("'@'"),
   LPAREN("'('"),
   RPAREN("')'"),
   LBRACE("'{'"),
   RBRACE("'}'"),
   COMMA("','"),
   DOT("'.'"),
   EQ("'='"),
   TRUE("true"),
   FALSE("false"),
   IDENTIFIER(""),
   CHARACTER_LITERAL(""),
   STRING_LITERAL(""),
   INT_LITERAL(""),
   LONG_LITERAL(""),
   FLOAT_LITERAL(""),
   DOUBLE_LITERAL(""),
   EOF("");

   final String text;

   AnnotationTokens(String text) {
      this.text = text;
   }

   static AnnotationTokens byName(String name) {
      if (name.length() == 1) {
         switch (name.charAt(0)) {
            case '@':
               return AT;
            case '(':
               return LPAREN;
            case ')':
               return RPAREN;
            case '{':
               return LBRACE;
            case '}':
               return RBRACE;
            case ',':
               return COMMA;
            case '.':
               return DOT;
            case '=':
               return EQ;
            default:
               return null;
         }
      }
      if ("true".equals(name)) {
         return TRUE;
      }
      if ("false".equals(name)) {
         return FALSE;
      }
      return null;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy