Minor changes to support EAN-13.
[zxing.git] / core-ext / src / com / google / zxing / client / result / UPCParsedResult.java
1 /*
2  * Copyright 2007 Google Inc.
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 dswitkin@google.com (Daniel Switkin)
21  */
22 public final class UPCParsedResult extends ParsedReaderResult {
23
24   private final String upc;
25
26   public UPCParsedResult(String rawText) {
27     super(ParsedReaderResultType.UPC);
28     if (rawText.length() != 12 && rawText.length() != 13) {
29       throw new IllegalArgumentException("Wrong number of digits for UPC");
30     }
31     for (int x = 0; x < rawText.length(); x++) {
32       char c = rawText.charAt(x);
33       if (c < '0' || c > '9') {
34         throw new IllegalArgumentException("Invalid character found in UPC");
35       }
36     }
37     upc = rawText;
38   }
39
40   public String getUPC() {
41     return upc;
42   }
43
44   @Override
45   public String getDisplayResult() {
46     return upc;
47   }
48
49 }