public class

GlobalCarZoneAreaIdConverter

extends java.lang.Object

implements CarZoneAreaIdConverter

 java.lang.Object

↳androidx.car.app.hardware.common.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

CarZone to areaId converter for Global zones.

Summary

Constructors
publicGlobalCarZoneAreaIdConverter()

Methods
public <any>convertAreaIdToCarZones(int areaId)

from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructors

public GlobalCarZoneAreaIdConverter()

Methods

public <any> convertAreaIdToCarZones(int areaId)

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;

/** CarZone to areaId converter for Global zones. */
@ExperimentalCarApi
public class GlobalCarZoneAreaIdConverter implements CarZoneAreaIdConverter {
    @NonNull
    @Override
    public ImmutableSet<CarZone> convertAreaIdToCarZones(int areaId) {
        return ImmutableSet.of(CarZone.CAR_ZONE_GLOBAL);
    }
}