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 * OilLevel in the engine 25 * 26 * @hide 27 * @deprecated This API is deprecated in favor of {@link 28 * android.car.hardware.property.VehicleOilLevel}. This API will be marked as {@code @removed} in 29 * the next API release and then fully removed in two API releases. 30 */ 31 @Deprecated 32 public final class VehicleOilLevel { 33 /** 34 * List of Oil Levels from VHAL 35 */ 36 public static final int CRITICALLY_LOW = 0; 37 public static final int LOW = 1; 38 public static final int NORMAL = 2; 39 public static final int HIGH = 3; 40 public static final int ERROR = 4; 41 42 /** @hide */ 43 @Retention(RetentionPolicy.SOURCE) 44 @IntDef({ 45 CRITICALLY_LOW, 46 LOW, 47 NORMAL, 48 HIGH, 49 ERROR, 50 }) 51 public @interface Enum {} 52 VehicleOilLevel()53 private VehicleOilLevel() {} 54 } 55