Small style stuff
[zxing.git] / core / src / com / google / zxing / common / ECI.java
1 /*
2  * Copyright 2008 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  * Superclass of classes encapsulating types ECIs, according to "Extended Channel Interpretations"
21  * 5.3 of ISO 18004.
22  *
23  * @author Sean Owen
24  */
25 public abstract class ECI {
26
27   private final int value;
28
29   ECI(int value) {
30     this.value = value;
31   }
32
33   public int getValue() {
34     return value;
35   }
36
37   /**
38    * @param value ECI value
39    * @return {@link ECI} representing ECI of given value, or null if it is legal but unsupported
40    * @throws IllegalArgumentException if ECI value is invalid
41    */
42   public static ECI getECIByValue(int value) {
43     if (value < 0 || value > 999999) {
44       throw new IllegalArgumentException("Bad ECI value: " + value);
45     }
46     if (value < 900) { // Character set ECIs use 000000 - 000899
47       return CharacterSetECI.getCharacterSetECIByValue(value);
48     }
49     return null;
50   }
51
52 }