/* * Copyright 2007 ZXing authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ // package com::google::zxing::qrcode::decoder; /** *
See ISO 18004:2006, 6.4.1, Tables 2 and 3. This enum encapsulates the various modes in which * data can be encoded to bits in the QR code standard.
* * @author Sean Owen */ pub enum Mode { // Not really a mode... TERMINATOR( : vec![i32; 3] = vec![0, 0, 0, ] , 0x00), NUMERIC( : vec![i32; 3] = vec![10, 12, 14, ] , 0x01), ALPHANUMERIC( : vec![i32; 3] = vec![9, 11, 13, ] , 0x02), // Not supported STRUCTURED_APPEND( : vec![i32; 3] = vec![0, 0, 0, ] , 0x03), BYTE( : vec![i32; 3] = vec![8, 16, 16, ] , 0x04), // character counts don't apply ECI( : vec![i32; 3] = vec![0, 0, 0, ] , 0x07), KANJI( : vec![i32; 3] = vec![8, 10, 12, ] , 0x08), FNC1_FIRST_POSITION( : vec![i32; 3] = vec![0, 0, 0, ] , 0x05), FNC1_SECOND_POSITION( : vec![i32; 3] = vec![0, 0, 0, ] , 0x09), /** See GBT 18284-2000; "Hanzi" is a transliteration of this mode name. */ HANZI( : vec![i32; 3] = vec![8, 10, 12, ] , 0x0D); let character_count_bits_for_versions: Vec