RegionCode.java revision ca1e43d6e1fac07c7fc29c66c7da1fa9d7cf50f2
1/*
2 * Copyright (C) 2011 The Libphonenumber 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
17package com.android.i18n.phonenumbers;
18
19/**
20 * Class containing string constants of region codes for easier testing.
21 */
22final class RegionCode {
23  static final String AD = "AD";
24  static final String AO = "AO";
25  static final String AR = "AR";
26  static final String AU = "AU";
27  static final String BR = "BR";
28  static final String BS = "BS";
29  static final String CA = "CA";
30  static final String CN = "CN";
31  static final String CS = "CS";
32  static final String DE = "DE";
33  static final String GB = "GB";
34  static final String IT = "IT";
35  static final String JP = "JP";
36  static final String KR = "KR";
37  static final String MX = "MX";
38  static final String NZ = "NZ";
39  static final String PL = "PL";
40  static final String RE = "RE";
41  static final String SG = "SG";
42  static final String US = "US";
43  static final String YT = "YT";
44  // Official code for the unknown region.
45  static final String ZZ = "ZZ";
46}
47