Prevented ISBN parsing from happening twice.
[zxing.git] / core / src / com / google / zxing / client / result / AddressBookParsedResult.java
1 /*
2  * Copyright 2007 ZXing authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.client.result;
18
19 /**
20  * @author srowen@google.com (Sean Owen)
21  */
22 public final class AddressBookParsedResult extends ParsedResult {
23
24   private final String[] names;
25   private final String[] phoneNumbers;
26   private final String[] emails;
27   private final String note;
28   private final String address;
29   private final String org;
30   private final String birthday;
31   private final String title;
32
33   public AddressBookParsedResult(String[] names,
34                                  String[] phoneNumbers,
35                                  String[] emails,
36                                  String note,
37                                  String address,
38                                  String org,
39                                  String birthday,
40                                  String title) {
41     super(ParsedResultType.ADDRESSBOOK);
42     this.names = names;
43     this.phoneNumbers = phoneNumbers;
44     this.emails = emails;
45     this.note = note;
46     this.address = address;
47     this.org = org;
48     this.birthday = birthday;
49     this.title = title;
50   }
51
52   public String[] getNames() {
53     return names;
54   }
55
56   public String[] getPhoneNumbers() {
57     return phoneNumbers;
58   }
59
60   public String[] getEmails() {
61     return emails;
62   }
63
64   public String getNote() {
65     return note;
66   }
67
68   public String getAddress() {
69     return address;
70   }
71
72   public String getTitle() {
73     return title;
74   }
75
76   public String getOrg() {
77     return org;
78   }
79
80   /**
81    * @return birthday formatted as yyyyMMdd (e.g. 19780917)
82    */
83   public String getBirthday() {
84     return birthday;
85   }
86
87   public String getDisplayResult() {
88     StringBuffer result = new StringBuffer();
89     maybeAppend(names, result);
90     maybeAppend(emails, result);
91     maybeAppend(address, result);
92     maybeAppend(phoneNumbers, result);
93     maybeAppend(note, result);
94     maybeAppend(org, result);
95     maybeAppend(birthday, result);
96     maybeAppend(title, result);
97     return result.toString();
98   }
99
100 }