public interface

CarZoneAreaIdConverter

 androidx.car.app.hardware.common.CarZoneAreaIdConverter

Subclasses:

SeatCarZoneAreaIdConverter, GlobalCarZoneAreaIdConverter

Gradle dependencies

compile group: 'androidx.car.app', name: 'app-automotive', version: '1.7.0-beta01'

  • groupId: androidx.car.app
  • artifactId: app-automotive
  • version: 1.7.0-beta01

Artifact androidx.car.app:app-automotive:1.7.0-beta01 it located at Google repository (https://maven.google.com/)

Overview

Interface for zone to area mapping functionality

Summary

Methods
public <any>convertAreaIdToCarZones(int areaId)

Converts areaId into a list of Car zones.

Methods

public <any> convertAreaIdToCarZones(int areaId)

Converts areaId into a list of Car zones.

Source

/*
 * Copyright 2022 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 androidx.car.app.hardware.common;

import androidx.annotation.NonNull;
import androidx.car.app.annotations.ExperimentalCarApi;

import com.google.common.collect.ImmutableSet;

/** Interface for zone to area mapping functionality */
@ExperimentalCarApi
public interface CarZoneAreaIdConverter {
    /** Converts {@code areaId} into a list of Car zones. */
    @NonNull
    ImmutableSet<CarZone> convertAreaIdToCarZones(int areaId);
}