summaryrefslogtreecommitdiff
path: root/java/test/com/android/i18n/phonenumbers/RegionCode.java
blob: 74ac8bb811dc5896c832e8c52a689324b9327bbe (plain)
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
/*
 * Copyright (C) 2011 The Libphonenumber 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.android.i18n.phonenumbers;

/**
 * Class containing string constants of region codes for easier testing.
 */
final class RegionCode {
  static final String AD = "AD";
  static final String AO = "AO";
  static final String AR = "AR";
  static final String AU = "AU";
  static final String BR = "BR";
  static final String BS = "BS";
  static final String CA = "CA";
  static final String CN = "CN";
  static final String CS = "CS";
  static final String DE = "DE";
  static final String GB = "GB";
  static final String IT = "IT";
  static final String JP = "JP";
  static final String KR = "KR";
  static final String MX = "MX";
  static final String NZ = "NZ";
  static final String PL = "PL";
  static final String RE = "RE";
  static final String SG = "SG";
  static final String US = "US";
  static final String YT = "YT";
  // Official code for the unknown region.
  static final String ZZ = "ZZ";
}