Files
iTartanas/itranvias_code/com/sistemasolton.itranvias/home/data/local/entity/BusEntity.java
T

59 lines
2.4 KiB
Java

package com.sistemasolton.itranvias.home.data.local.entity;
import kotlin.Metadata;
import kotlin.jvm.internal.DefaultConstructorMarker;
/* JADX INFO: compiled from: BusEntity.kt */
/* JADX INFO: loaded from: classes2.dex */
@Metadata(d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0002\b\u0007\n\u0002\u0010\u000b\n\u0002\b\u0003\n\u0002\u0010\u000e\n\u0000\b\u0087\b\u0018\u00002\u00020\u0001B\u0011\u0012\b\b\u0002\u0010\u0002\u001a\u00020\u0003¢\u0006\u0004\b\u0004\u0010\u0005J\t\u0010\b\u001a\u00020\u0003HÆ\u0003J\u0013\u0010\t\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u0003HÆ\u0001J\u0013\u0010\n\u001a\u00020\u000b2\b\u0010\f\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\r\u001a\u00020\u0003HÖ\u0001J\t\u0010\u000e\u001a\u00020\u000fHÖ\u0001R\u0016\u0010\u0002\u001a\u00020\u00038\u0006X\u0087\u0004¢\u0006\b\n\u0000\u001a\u0004\b\u0006\u0010\u0007¨\u0006\u0010"}, d2 = {"Lcom/sistemasolton/itranvias/home/data/local/entity/BusEntity;", "", "_id", "", "<init>", "(I)V", "get_id", "()I", "component1", "copy", "equals", "", "other", "hashCode", "toString", "", "composeApp_release"}, k = 1, mv = {2, 1, 0}, xi = 48)
public final /* data */ class BusEntity {
public static final int $stable = 0;
private final int _id;
public BusEntity() {
this(0, 1, null);
}
public static /* synthetic */ BusEntity copy$default(BusEntity busEntity, int i, int i2, Object obj) {
if ((i2 & 1) != 0) {
i = busEntity._id;
}
return busEntity.copy(i);
}
/* JADX INFO: renamed from: component1, reason: from getter */
public final int get_id() {
return this._id;
}
public final BusEntity copy(int _id) {
return new BusEntity(_id);
}
public boolean equals(Object other) {
if (this == other) {
return true;
}
return (other instanceof BusEntity) && this._id == ((BusEntity) other)._id;
}
public int hashCode() {
return Integer.hashCode(this._id);
}
public String toString() {
return "BusEntity(_id=" + this._id + ")";
}
public BusEntity(int i) {
this._id = i;
}
public /* synthetic */ BusEntity(int i, int i2, DefaultConstructorMarker defaultConstructorMarker) {
this((i2 & 1) != 0 ? 0 : i);
}
public final int get_id() {
return this._id;
}
}