Standardize and update all copyright statements to name "ZXing authors" as suggested...
[zxing.git] / core / src / com / google / zxing / client / result / optional / MobileTagTelParsedResult.java
1 /*
2  * Copyright 2008 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.optional;
18
19 import com.google.zxing.BarcodeFormat;
20 import com.google.zxing.Result;
21 import com.google.zxing.client.result.ParsedReaderResultType;
22
23 /**
24  * <p>Represents a "TEL" result encoded according to section 4.4 of the
25  * MobileTag Reader International Specification.</p>
26  * 
27  * @author srowen@google.com (Sean Owen)
28  */
29 public final class MobileTagTelParsedResult extends AbstractMobileTagParsedResult {
30
31   public static final String SERVICE_TYPE = "01";
32
33   private final String number;
34   private final String title;
35
36   private MobileTagTelParsedResult(String number, String title) {
37     super(ParsedReaderResultType.MOBILETAG_TEL);
38     this.number = number;
39     this.title = title;
40   }
41
42   public static MobileTagTelParsedResult parse(Result result) {
43     if (!result.getBarcodeFormat().equals(BarcodeFormat.DATAMATRIX)) {
44       return null;
45     }
46     String rawText = result.getText();
47     if (!rawText.startsWith(SERVICE_TYPE)) {
48       return null;
49     }
50
51     String[] matches = matchDelimitedFields(rawText.substring(2), 2);
52     if (matches == null) {
53       return null;
54     }
55     String number = matches[0];
56     String title = matches[1];
57
58     return new MobileTagTelParsedResult(number, title);
59   }
60
61   public String getNumber() {
62     return number;
63   }
64
65   public String getTitle() {
66     return title;
67   }
68
69   public String getDisplayResult() {
70     if (title == null) {
71       return number;
72     } else {
73       return title + '\n' + number;
74     }
75   }
76
77 }