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.shared.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.shared.ldap.model.exception.LdapInvalidDnException;
031import javax.naming.NameParser;
032import org.apache.directory.shared.ldap.model.entry.StringValue;
033import org.apache.directory.shared.ldap.model.entry.BinaryValue;
034import org.apache.directory.shared.ldap.model.schema.parsers.ParserMonitor;
035import org.apache.directory.shared.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 DQUOTE = 8;
046        int SEMI = 9;
047        int LANGLE = 10;
048        int RANGLE = 11;
049        int SPACE = 12;
050        int NUMERICOID_OR_ALPHA_OR_DIGIT = 13;
051        int NUMERICOID = 14;
052        int DOT = 15;
053        int NUMBER = 16;
054        int LDIGIT = 17;
055        int DIGIT = 18;
056        int ALPHA = 19;
057        int HEXPAIR_OR_ESCESC_ESCSHARP_OR_ESC = 20;
058        int HEXPAIR = 21;
059        int ESC = 22;
060        int ESCESC = 23;
061        int ESCSHARP = 24;
062        int HEX = 25;
063        int HEXVALUE_OR_SHARP = 26;
064        int HEXVALUE = 27;
065        int SHARP = 28;
066        int UTFMB = 29;
067        int LUTF1_REST = 30;
068}