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 */ 16 package android.car; 17 18 import android.annotation.IntDef; 19 20 import java.lang.annotation.Retention; 21 import java.lang.annotation.RetentionPolicy; 22 23 /** 24 * Used by INFO_FUEL_DOOR_LOCATION/INFO_CHARGE_PORT_LOCATION to enumerate fuel door or 25 * ev port location. 26 * Use getProperty and setProperty in {@link android.car.hardware.property.CarPropertyManager} to 27 * set and get this VHAL property. 28 */ 29 public final class PortLocationType { 30 /** 31 * List of port location types 32 */ 33 public static final int UNKNOWN = 0; 34 /** Port is on front left side of vehicle. */ 35 public static final int FRONT_LEFT = 1; 36 /** Port is on front right side of vehicle. */ 37 public static final int FRONT_RIGHT = 2; 38 /** Port is on rear right side of vehicle. */ 39 public static final int REAR_RIGHT = 3; 40 /** Port is on rear left side of vehicle. */ 41 public static final int REAR_LEFT = 4; 42 /** Port is on front of vehicle. */ 43 public static final int FRONT = 5; 44 /** Port is on rear of vehicle. */ 45 public static final int REAR = 6; 46 47 /** @hide */ 48 @IntDef({ 49 UNKNOWN, 50 FRONT_LEFT, 51 FRONT_RIGHT, 52 REAR_LEFT, 53 REAR_RIGHT, 54 FRONT, 55 REAR 56 }) 57 @Retention(RetentionPolicy.SOURCE) 58 59 public @interface Enum {} PortLocationType()60 private PortLocationType() {} 61 } 62