001// $ANTLR 2.7.7 (20060906): "distinguishedName.g" -> "AntlrDnParser.java"$
002
003/*
004 *  Licensed to the Apache Software Foundation (ASF) under one
005 *  or more contributor license agreements.  See the NOTICE file
006 *  distributed with this work for additional information
007 *  regarding copyright ownership.  The ASF licenses this file
008 *  to you under the Apache License, Version 2.0 (the
009 *  "License"); you may not use this file except in compliance
010 *  with the License.  You may obtain a copy of the License at
011 *  
012 *    http://www.apache.org/licenses/LICENSE-2.0
013 *  
014 *  Unless required by applicable law or agreed to in writing,
015 *  software distributed under the License is distributed on an
016 *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
017 *  KIND, either express or implied.  See the License for the
018 *  specific language governing permissions and limitations
019 *  under the License. 
020 *  
021 */
022package org.apache.directory.api.ldap.model.name;
023
024import java.io.StringReader;
025import java.util.ArrayList;
026import java.util.HashMap;
027import java.util.List;
028import java.util.Map;
029
030import org.apache.directory.api.ldap.model.exception.LdapInvalidDnException;
031import javax.naming.NameParser;
032import org.apache.directory.api.ldap.model.entry.StringValue;
033import org.apache.directory.api.ldap.model.entry.BinaryValue;
034import org.apache.directory.api.ldap.model.schema.parsers.ParserMonitor;
035import org.apache.directory.api.util.Strings;
036
037
038public interface AntlrDnTokenTypes {
039        int EOF = 1;
040        int NULL_TREE_LOOKAHEAD = 3;
041        int COMMA = 4;
042        int EQUALS = 5;
043        int PLUS = 6;
044        int HYPHEN = 7;
045        int UNDERSCORE = 8;
046        int DQUOTE = 9;
047        int SEMI = 10;
048        int LANGLE = 11;
049        int RANGLE = 12;
050        int SPACE = 13;
051        int NUMERICOID_OR_ALPHA_OR_DIGIT = 14;
052        int NUMERICOID = 15;
053        int DOT = 16;
054        int NUMBER = 17;
055        int LDIGIT = 18;
056        int DIGIT = 19;
057        int ALPHA = 20;
058        int HEXPAIR_OR_ESCESC_ESCSHARP_OR_ESC = 21;
059        int HEXPAIR = 22;
060        int ESC = 23;
061        int ESCESC = 24;
062        int ESCSHARP = 25;
063        int HEX = 26;
064        int HEXVALUE_OR_SHARP = 27;
065        int HEXVALUE = 28;
066        int SHARP = 29;
067        int UTFMB = 30;
068        int LUTF1_REST = 31;
069}