/* Generated By:JavaCC: Do not edit this line. ParserConstants.java */
package com.micronova.util.cc.mime;

public interface ParserConstants {

  int EOF = 0;
  int WHITESPACE = 1;
  int TYPESEPARATOR = 2;
  int SEMICOLON = 3;
  int EQUAL = 4;
  int QUOTED = 5;
  int MIMETOKEN = 6;

  int DEFAULT = 0;

  String[] tokenImage = {
    "<EOF>",
    "<WHITESPACE>",
    "<TYPESEPARATOR>",
    "<SEMICOLON>",
    "<EQUAL>",
    "<QUOTED>",
    "<MIMETOKEN>",
  };

}
