]> gitweb.fperrin.net Git - Dictionary.git/blob - src/com/hughes/android/dictionary/engine/EntryTypeName.java
333ee2052a54d26d445c88b5f10cbc7322896407
[Dictionary.git] / src / com / hughes / android / dictionary / engine / EntryTypeName.java
1 // Copyright 2011 Google Inc. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //     http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 package com.hughes.android.dictionary.engine;
16
17
18 public enum EntryTypeName {
19
20   WIKTIONARY_TITLE_SINGLE_DETAIL(true, true, null),
21   WIKTIONARY_TITLE_SINGLE(true, true, null),
22   WIKTIONARY_INFLECTD_FORM_SINGLE(false, true, null),
23
24
25   ONE_WORD(true, true, null),
26   MULTIROW_HEAD_ONE_WORD(true, true, null),
27   MULTIROW_TAIL_ONE_WORD(false, true, null),
28
29   WIKTIONARY_TITLE_MULTI_DETAIL(false, true, WIKTIONARY_TITLE_SINGLE_DETAIL),
30   WIKTIONARY_TITLE_MULTI(false, true, WIKTIONARY_TITLE_SINGLE),
31   WIKTIONARY_TRANSLITERATION(),
32   // How we file "casa {f}, case {pl}" under "case"
33   WIKTIONARY_INFLECTED_FORM_MULTI(false, true, WIKTIONARY_INFLECTD_FORM_SINGLE),
34   WIKTIONARY_ENGLISH_DEF_WIKI_LINK(),
35   WIKTIONARY_ENGLISH_DEF_OTHER_LANG(),
36   WIKTIONARY_ENGLISH_DEF(),
37
38   TWO_WORDS(),
39   THREE_WORDS(),
40   FOUR_WORDS(),
41   FIVE_OR_MORE_WORDS(),
42   WIKTIONARY_TRANSLATION_WIKI_TEXT(),
43   WIKTIONARY_TRANSLATION_OTHER_TEXT(),
44
45   // How we file entries like: "sono: {form of|essere}" under "sono.".
46   WIKTIONARY_IS_FORM_OF_SOMETHING_ELSE(false, true, null),
47
48   MULTIROW_HEAD_MANY_WORDS(),
49   MULTIROW_TAIL_MANY_WORDS(),
50   WIKTIONARY_EXAMPLE(),
51   // The next two are how we file entries like: "sono: {form of|essere}" under "essere".
52   WIKTIONARY_BASE_FORM_SINGLE(),  // These two should be eligible for removal if the links are otherwise present.
53   WIKTIONARY_BASE_FORM_MULTI(false, false, WIKTIONARY_BASE_FORM_SINGLE),
54   PART_OF_HYPHENATED(),
55   BRACKETED(),
56   PARENTHESIZED(),
57   WIKTIONARY_TRANSLATION_SENSE(),
58   SEE_ALSO(), 
59   ;
60
61   final boolean mainWord;
62   final boolean overridesStopList;
63   final EntryTypeName singleWordInstance;
64   
65   private EntryTypeName() {
66     this(false, false, null);
67   }
68
69   private EntryTypeName(final boolean mainWord, final boolean overridesStopList, final EntryTypeName singleWordInstance) {
70     this.mainWord = mainWord;
71     this.overridesStopList = overridesStopList;
72     this.singleWordInstance = singleWordInstance == null ? this : singleWordInstance;
73   }
74
75 }