]> Pileus Git - ~andy/freeotp/blob - src/com/google/zxing/common/DecoderResult.java
Add native camera support
[~andy/freeotp] / 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.List;
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 List<byte[]> byteSegments;
33   private final String ecLevel;
34   private Integer errorsCorrected;
35   private Integer erasures;
36   private Object other;
37
38   public DecoderResult(byte[] rawBytes,
39                        String text,
40                        List<byte[]> byteSegments,
41                        String ecLevel) {
42     this.rawBytes = rawBytes;
43     this.text = text;
44     this.byteSegments = byteSegments;
45     this.ecLevel = ecLevel;
46   }
47
48   public byte[] getRawBytes() {
49     return rawBytes;
50   }
51
52   public String getText() {
53     return text;
54   }
55
56   public List<byte[]> getByteSegments() {
57     return byteSegments;
58   }
59
60   public String getECLevel() {
61     return ecLevel;
62   }
63
64   public Integer getErrorsCorrected() {
65     return errorsCorrected;
66   }
67
68   public void setErrorsCorrected(Integer errorsCorrected) {
69     this.errorsCorrected = errorsCorrected;
70   }
71
72   public Integer getErasures() {
73     return erasures;
74   }
75
76   public void setErasures(Integer erasures) {
77     this.erasures = erasures;
78   }
79   
80   public Object getOther() {
81     return other;
82   }
83
84   public void setOther(Object other) {
85     this.other = other;
86   }
87   
88 }