• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2024 The Android Open Source Project
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.android.car.internal.property;
18 
19 /**
20  * This is a custom parcelable that stores a property's actual value.
21  *
22  * It may contain the following type:
23  *
24  * <ul>
25  * <li>String for STRING type property.</li>
26  * <li>Boolean for BOOLEAN type property.</li>
27  * <li>Integer for INT32 type property.</li>
28  * <li>Integer[] for INT32_VEC type property.</li>
29  * <li>Long for INT64 type property.</li>
30  * <li>Long[] for INT64_VEC type property.</li>
31  * <li>Float for FLOAT type property.</li>
32  * <li>Float[] for FLOAT_VEC.</li>
33  * <li>byte[] for BTYES type property.</li>
34  * <li>Object[] for MIXED type property.</li>
35  * </ul>
36  */
37 parcelable RawPropertyValue;
38