forked from makiuchi-d/gozxing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
result_metadata_type.go
104 lines (91 loc) · 3.15 KB
/
result_metadata_type.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package gozxing
type ResultMetadataType int
const (
/**
* Unspecified, application-specific metadata. Maps to an unspecified {@link Object}.
*/
ResultMetadataType_OTHER = ResultMetadataType(iota)
/**
* Denotes the likely approximate orientation of the barcode in the image. This value
* is given as degrees rotated clockwise from the normal, upright orientation.
* For example a 1D barcode which was found by reading top-to-bottom would be
* said to have orientation "90". This key maps to an {@link Integer} whose
* value is in the range [0,360).
*/
ResultMetadataType_ORIENTATION
/**
* <p>2D barcode formats typically encode text, but allow for a sort of 'byte mode'
* which is sometimes used to encode binary data. While {@link Result} makes available
* the complete raw bytes in the barcode for these formats, it does not offer the bytes
* from the byte segments alone.</p>
*
* <p>This maps to a {@link java.util.List} of byte arrays corresponding to the
* raw bytes in the byte segments in the barcode, in order.</p>
*/
ResultMetadataType_BYTE_SEGMENTS
/**
* Error correction level used, if applicable. The value type depends on the
* format, but is typically a String.
*/
ResultMetadataType_ERROR_CORRECTION_LEVEL
/**
* For some periodicals, indicates the issue number as an {@link Integer}.
*/
ResultMetadataType_ISSUE_NUMBER
/**
* For some products, indicates the suggested retail price in the barcode as a
* formatted {@link String}.
*/
ResultMetadataType_SUGGESTED_PRICE
/**
* For some products, the possible country of manufacture as a {@link String} denoting the
* ISO country code. Some map to multiple possible countries, like "US/CA".
*/
ResultMetadataType_POSSIBLE_COUNTRY
/**
* For some products, the extension text
*/
ResultMetadataType_UPC_EAN_EXTENSION
/**
* PDF417-specific metadata
*/
ResultMetadataType_PDF417_EXTRA_METADATA
/**
* If the code format supports structured append and the current scanned code is part of one then the
* sequence number is given with it.
*/
ResultMetadataType_STRUCTURED_APPEND_SEQUENCE
/**
* If the code format supports structured append and the current scanned code is part of one then the
* parity is given with it.
*/
ResultMetadataType_STRUCTURED_APPEND_PARITY
)
func (t ResultMetadataType) String() string {
switch t {
case ResultMetadataType_OTHER:
return "OTHER"
case ResultMetadataType_ORIENTATION:
return "ORIENTATION"
case ResultMetadataType_BYTE_SEGMENTS:
return "BYTE_SEGMENTS"
case ResultMetadataType_ERROR_CORRECTION_LEVEL:
return "ERROR_CORRECTION_LEVEL"
case ResultMetadataType_ISSUE_NUMBER:
return "ISSUE_NUMBER"
case ResultMetadataType_SUGGESTED_PRICE:
return "SUGGESTED_PRICE"
case ResultMetadataType_POSSIBLE_COUNTRY:
return "POSSIBLE_COUNTRY"
case ResultMetadataType_UPC_EAN_EXTENSION:
return "UPC_EAN_EXTENSION"
case ResultMetadataType_PDF417_EXTRA_METADATA:
return "PDF417_EXTRA_METADATA"
case ResultMetadataType_STRUCTURED_APPEND_SEQUENCE:
return "STRUCTURED_APPEND_SEQUENCE"
case ResultMetadataType_STRUCTURED_APPEND_PARITY:
return "STRUCTURED_APPEND_PARITY"
default:
return "unknown metadata type"
}
}