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