1/*
2 * Copyright (c) 2024 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16abstract class SettingType_1 {
17  private constructor() {}
18  static get INT(): SettingType_1 & {
19      get name_get_2(): "INT";
20      get orignal_get_2(): 0;
21  }{
22      return new Int_1;
23  }
24  static get DOUBLE(): SettingType_1 & {
25      get name_get_2(): "DOUBLE";
26      get orignal_get_2(): 1;
27  }{
28      return new DOUBLE_1;
29  }
30}
31
32class Int_1 {
33  get name_get_2(): "INT" {
34      return "INT"
35  }
36  get orignal_get_2():0 {
37      return 0
38  }
39}
40
41class DOUBLE_1 {
42  get name_get_2(): "DOUBLE" {
43      return "DOUBLE"
44  }
45  get orignal_get_2():1 {
46      return 1
47  }
48}