Add to result the raw, but parsed, bytes of byte segments in 2D barcodes
[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 java.util.Vector;
20
21 /**
22  * <p>Encapsulates the result of decoding a matrix of bits. This typically
23  * applies to 2D barcode formats. For now it contains the raw bytes obtained,
24  * as well as a String interpretation of those bytes, if applicable.</p>
25  *
26  * @author Sean Owen
27  */
28 public final class DecoderResult {
29
30   private final byte[] rawBytes;
31   private final String text;
32   private final Vector byteSegments;
33
34   public DecoderResult(byte[] rawBytes, String text, Vector byteSegments) {
35     if (rawBytes == null && text == null) {
36       throw new IllegalArgumentException();
37     }
38     this.rawBytes = rawBytes;
39     this.text = text;
40     this.byteSegments = byteSegments;
41   }
42
43   public byte[] getRawBytes() {
44     return rawBytes;
45   }
46
47   public String getText() {
48     return text;
49   }
50
51   public Vector getByteSegments() {
52     return byteSegments;
53   }
54
55 }