summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKai2018-07-23 17:13:21 -0500
committerKai2018-07-23 17:25:43 -0500
commit2a5ef4e031e78f5414e110b505874f034ad01177 (patch)
tree0f20e479ce750a03ac4132099a0bdb56554b8ca8
parentf26773ed52ce972b3abf0b46b5ff1c7c3e23e29f (diff)
downloadplatform-packages-services-car-2a5ef4e031e78f5414e110b505874f034ad01177.tar.gz
platform-packages-services-car-2a5ef4e031e78f5414e110b505874f034ad01177.tar.xz
platform-packages-services-car-2a5ef4e031e78f5414e110b505874f034ad01177.zip
Expose PortLocationType in car-lib
Expose PortLocationType in car-lib Bug: 111659213 Test: make and flash Change-Id: If5265fe05b9b8a15fbab8bb69f3ca60cec2bdc23
-rw-r--r--car-lib/src/android/car/PortLocationType.java35
1 files changed, 35 insertions, 0 deletions
diff --git a/car-lib/src/android/car/PortLocationType.java b/car-lib/src/android/car/PortLocationType.java
new file mode 100644
index 00000000..3006a296
--- /dev/null
+++ b/car-lib/src/android/car/PortLocationType.java
@@ -0,0 +1,35 @@
1/*
2 * Copyright (C) 2018 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 */
16package android.car;
17
18/**
19 * Used by INFO_FUEL_DOOR_LOCATION/INFO_CHARGE_PORT_LOCATION to enumerate fuel door or
20 * ev port location.
21 * Use getProperty and setProperty in {@link android.car.hardware.property.CarPropertyManager} to
22 * set and get this VHAL property.
23 * @hide
24 */
25public final class PortLocationType {
26 public static final int UNKNOWN = 0;
27 public static final int FRONT_LEFT = 1;
28 public static final int FRONT_RIGHT = 2;
29 public static final int REAR_RIGHT = 3;
30 public static final int REAR_LEFT = 4;
31 public static final int FRONT = 5;
32 public static final int REAR = 6;
33
34 private PortLocationType() {}
35}