com.android.sdklib.repository.descriptors.IdDisplay Maven / Gradle / Ivy
/*
* Copyright (C) 2014 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.sdklib.repository.descriptors;
import com.android.annotations.NonNull;
/**
* Immutable structure that represents a tuple (id-string + display-string.)
*/
public final class IdDisplay implements Comparable {
private final String mId;
private final String mDisplay;
/**
* Creates a new immutable tuple (id-string + display-string.)
*
* @param id The non-null id string.
* @param display The non-null display string.
*/
public IdDisplay(@NonNull String id, @NonNull String display) {
mId = id;
mDisplay = display;
}
@NonNull
public String getId() {
return mId;
}
@NonNull
public String getDisplay() {
return mDisplay;
}
/**
* {@link IdDisplay} instances are the same if they have the same id.
* The display value is not used for comparison or ordering.
*/
@Override
public int compareTo(IdDisplay tag) {
return mId.compareTo(tag.mId);
}
/**
* Hash code of {@link IdDisplay} instances only rely on the id hash code.
*/
@Override
public int hashCode() {
return mId.hashCode();
}
/**
* Equality of {@link IdDisplay} instances only rely on the id equality.
* The display value is not used for comparison or ordering.
*/
@Override
public boolean equals(Object obj) {
return (obj instanceof IdDisplay) && mId.equals(((IdDisplay)obj).mId);
}
/**
* Returns a string representation for *debug* purposes only, not for UI display.
*/
@Override
public String toString() {
return String.format("%1$s [%2$s]", mId, mDisplay);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy