View Javadoc
1   // $ANTLR 2.7.7 (20060906): "distinguishedName.g" -> "AntlrDnParser.java"$
2   
3   /*
4    *  Licensed to the Apache Software Foundation (ASF) under one
5    *  or more contributor license agreements.  See the NOTICE file
6    *  distributed with this work for additional information
7    *  regarding copyright ownership.  The ASF licenses this file
8    *  to you under the Apache License, Version 2.0 (the
9    *  "License"); you may not use this file except in compliance
10   *  with the License.  You may obtain a copy of the License at
11   *  
12   *    http://www.apache.org/licenses/LICENSE-2.0
13   *  
14   *  Unless required by applicable law or agreed to in writing,
15   *  software distributed under the License is distributed on an
16   *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   *  KIND, either express or implied.  See the License for the
18   *  specific language governing permissions and limitations
19   *  under the License. 
20   *  
21   */
22  package org.apache.directory.api.ldap.model.name;
23  
24  import java.io.StringReader;
25  import java.util.ArrayList;
26  import java.util.HashMap;
27  import java.util.List;
28  import java.util.Map;
29  
30  import org.apache.directory.api.ldap.model.exception.LdapInvalidDnException;
31  import javax.naming.NameParser;
32  import org.apache.directory.api.ldap.model.entry.StringValue;
33  import org.apache.directory.api.ldap.model.entry.BinaryValue;
34  import org.apache.directory.api.ldap.model.schema.parsers.ParserMonitor;
35  import org.apache.directory.api.util.Strings;
36  
37  
38  public interface AntlrDnTokenTypes {
39  	int EOF = 1;
40  	int NULL_TREE_LOOKAHEAD = 3;
41  	int COMMA = 4;
42  	int EQUALS = 5;
43  	int PLUS = 6;
44  	int HYPHEN = 7;
45  	int UNDERSCORE = 8;
46  	int DQUOTE = 9;
47  	int SEMI = 10;
48  	int LANGLE = 11;
49  	int RANGLE = 12;
50  	int SPACE = 13;
51  	int NUMERICOID_OR_ALPHA_OR_DIGIT = 14;
52  	int NUMERICOID = 15;
53  	int DOT = 16;
54  	int NUMBER = 17;
55  	int LDIGIT = 18;
56  	int DIGIT = 19;
57  	int ALPHA = 20;
58  	int HEXPAIR_OR_ESCESC_ESCSHARP_OR_ESC = 21;
59  	int HEXPAIR = 22;
60  	int ESC = 23;
61  	int ESCESC = 24;
62  	int ESCSHARP = 25;
63  	int HEX = 26;
64  	int HEXVALUE_OR_SHARP = 27;
65  	int HEXVALUE = 28;
66  	int SHARP = 29;
67  	int UTFMB = 30;
68  	int LUTF1_REST = 31;
69  }