blob: bc5e9b7c0b2c121096a1ddfd9de33cf1a3a3b66d [file] [log] [blame]
/*
* Copyright (C) 2019 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 com.android.car.settings.units;
import android.annotation.StringRes;
import android.car.VehicleUnit;
/**
* Contains properties and methods associated with each unit defined in {@link
* android.car.VehicleUnit}.
*/
public class Unit {
private final int mId;
private final int mAbbreviationResId;
private final int mNameResId;
Unit(@VehicleUnit.Enum int unitId, @StringRes int unitAbbreviationResId,
@StringRes int unitNameResId) {
mId = unitId;
mAbbreviationResId = unitAbbreviationResId;
mNameResId = unitNameResId;
}
public int getId() {
return mId;
}
public int getAbbreviationResId() {
return mAbbreviationResId;
}
public int getNameResId() {
return mNameResId;
}
}