blob: e69fe855424c46a2939e994b4b58859eb3a7d650 [file] [log] [blame]
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.car;
import android.os.Bundle;
/** @hide */
interface ICarInfo {
/**
* Even if it returns array, it will always be single element array. Array used to allow
* returning null if not supported.
*/
int[] getInt(String key) = 0;
/**
* Even if it returns array, it will always be single element array. Array used to allow
* returning null if not supported.
*/
float[] getFloat(String key) = 1;
/**
* Even if it returns array, it will always be single element array. Array used to allow
* returning null if not supported.
*/
long[] getLong(String key) = 2;
String getString(String key) = 3;
Bundle getBundle(String key) = 4;
}