Issue 508
[zxing.git] / core / src / com / google / zxing / common / DecoderResult.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.common;
18
19 import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
20
21 import java.util.Vector;
22
23 /**
24  * <p>Encapsulates the result of decoding a matrix of bits. This typically
25  * applies to 2D barcode formats. For now it contains the raw bytes obtained,
26  * as well as a String interpretation of those bytes, if applicable.</p>
27  *
28  * @author Sean Owen
29  */
30 public final class DecoderResult {
31
32   private final byte[] rawBytes;
33   private final String text;
34   private final Vector byteSegments;
35   private final ErrorCorrectionLevel ecLevel;
36
37   public DecoderResult(byte[] rawBytes, String text, Vector byteSegments, ErrorCorrectionLevel ecLevel) {
38     if (rawBytes == null && text == null) {
39       throw new IllegalArgumentException();
40     }
41     this.rawBytes = rawBytes;
42     this.text = text;
43     this.byteSegments = byteSegments;
44     this.ecLevel = ecLevel;
45   }
46
47   public byte[] getRawBytes() {
48     return rawBytes;
49   }
50
51   public String getText() {
52     return text;
53   }
54
55   public Vector getByteSegments() {
56     return byteSegments;
57   }
58
59   public ErrorCorrectionLevel getECLevel() {
60     return ecLevel;
61   }
62
63 }