246 lines
13 KiB
Java
246 lines
13 KiB
Java
package com.sistemasolton.itranvias.home.presentation.freetransfer;
|
|
|
|
import java.util.List;
|
|
import kotlin.Metadata;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* JADX INFO: compiled from: FreeTranferScreen.kt */
|
|
/* JADX INFO: loaded from: classes2.dex */
|
|
@Metadata(d1 = {"\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\b7\u0018\u00002\u00020\u0001:\u0003\u0004\u0005\u0006B\t\b\u0004¢\u0006\u0004\b\u0002\u0010\u0003\u0082\u0001\u0003\u0007\b\t¨\u0006\n"}, d2 = {"Lcom/sistemasolton/itranvias/home/presentation/freetransfer/TransferResult;", "", "<init>", "()V", "NoFree", "Free", "AllFree", "Lcom/sistemasolton/itranvias/home/presentation/freetransfer/TransferResult$AllFree;", "Lcom/sistemasolton/itranvias/home/presentation/freetransfer/TransferResult$Free;", "Lcom/sistemasolton/itranvias/home/presentation/freetransfer/TransferResult$NoFree;", "composeApp_release"}, k = 1, mv = {2, 1, 0}, xi = 48)
|
|
public abstract class TransferResult {
|
|
public static final int $stable = 0;
|
|
|
|
public /* synthetic */ TransferResult(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
/* JADX INFO: compiled from: FreeTranferScreen.kt */
|
|
@Metadata(d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0002\b\r\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\b\u0087\b\u0018\u00002\u00020\u0001B\u001f\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u0012\u0006\u0010\u0005\u001a\u00020\u0003¢\u0006\u0004\b\u0006\u0010\u0007J\t\u0010\f\u001a\u00020\u0003HÆ\u0003J\t\u0010\r\u001a\u00020\u0003HÆ\u0003J\t\u0010\u000e\u001a\u00020\u0003HÆ\u0003J'\u0010\u000f\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00032\b\b\u0002\u0010\u0005\u001a\u00020\u0003HÆ\u0001J\u0013\u0010\u0010\u001a\u00020\u00112\b\u0010\u0012\u001a\u0004\u0018\u00010\u0013HÖ\u0003J\t\u0010\u0014\u001a\u00020\u0003HÖ\u0001J\t\u0010\u0015\u001a\u00020\u0016HÖ\u0001R\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\b\u0010\tR\u0011\u0010\u0004\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\n\u0010\tR\u0011\u0010\u0005\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u000b\u0010\t¨\u0006\u0017"}, d2 = {"Lcom/sistemasolton/itranvias/home/presentation/freetransfer/TransferResult$NoFree;", "Lcom/sistemasolton/itranvias/home/presentation/freetransfer/TransferResult;", "origen", "", "destino", "sentido", "<init>", "(III)V", "getOrigen", "()I", "getDestino", "getSentido", "component1", "component2", "component3", "copy", "equals", "", "other", "", "hashCode", "toString", "", "composeApp_release"}, k = 1, mv = {2, 1, 0}, xi = 48)
|
|
public static final /* data */ class NoFree extends TransferResult {
|
|
public static final int $stable = 0;
|
|
private final int destino;
|
|
private final int origen;
|
|
private final int sentido;
|
|
|
|
public static /* synthetic */ NoFree copy$default(NoFree noFree, int i, int i2, int i3, int i4, Object obj) {
|
|
if ((i4 & 1) != 0) {
|
|
i = noFree.origen;
|
|
}
|
|
if ((i4 & 2) != 0) {
|
|
i2 = noFree.destino;
|
|
}
|
|
if ((i4 & 4) != 0) {
|
|
i3 = noFree.sentido;
|
|
}
|
|
return noFree.copy(i, i2, i3);
|
|
}
|
|
|
|
/* JADX INFO: renamed from: component1, reason: from getter */
|
|
public final int getOrigen() {
|
|
return this.origen;
|
|
}
|
|
|
|
/* JADX INFO: renamed from: component2, reason: from getter */
|
|
public final int getDestino() {
|
|
return this.destino;
|
|
}
|
|
|
|
/* JADX INFO: renamed from: component3, reason: from getter */
|
|
public final int getSentido() {
|
|
return this.sentido;
|
|
}
|
|
|
|
public final NoFree copy(int origen, int destino, int sentido) {
|
|
return new NoFree(origen, destino, sentido);
|
|
}
|
|
|
|
public boolean equals(Object other) {
|
|
if (this == other) {
|
|
return true;
|
|
}
|
|
if (!(other instanceof NoFree)) {
|
|
return false;
|
|
}
|
|
NoFree noFree = (NoFree) other;
|
|
return this.origen == noFree.origen && this.destino == noFree.destino && this.sentido == noFree.sentido;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return (((Integer.hashCode(this.origen) * 31) + Integer.hashCode(this.destino)) * 31) + Integer.hashCode(this.sentido);
|
|
}
|
|
|
|
public String toString() {
|
|
return "NoFree(origen=" + this.origen + ", destino=" + this.destino + ", sentido=" + this.sentido + ")";
|
|
}
|
|
|
|
public NoFree(int i, int i2, int i3) {
|
|
super(null);
|
|
this.origen = i;
|
|
this.destino = i2;
|
|
this.sentido = i3;
|
|
}
|
|
|
|
public final int getDestino() {
|
|
return this.destino;
|
|
}
|
|
|
|
public final int getOrigen() {
|
|
return this.origen;
|
|
}
|
|
|
|
public final int getSentido() {
|
|
return this.sentido;
|
|
}
|
|
}
|
|
|
|
private TransferResult() {
|
|
}
|
|
|
|
/* JADX INFO: compiled from: FreeTranferScreen.kt */
|
|
@Metadata(d1 = {"\u0000.\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0002\b\u0002\n\u0002\u0010 \n\u0002\b\f\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\b\u0087\b\u0018\u00002\u00020\u0001B%\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u0012\f\u0010\u0005\u001a\b\u0012\u0004\u0012\u00020\u00030\u0006¢\u0006\u0004\b\u0007\u0010\bJ\t\u0010\u000e\u001a\u00020\u0003HÆ\u0003J\t\u0010\u000f\u001a\u00020\u0003HÆ\u0003J\u000f\u0010\u0010\u001a\b\u0012\u0004\u0012\u00020\u00030\u0006HÆ\u0003J-\u0010\u0011\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00032\u000e\b\u0002\u0010\u0005\u001a\b\u0012\u0004\u0012\u00020\u00030\u0006HÆ\u0001J\u0013\u0010\u0012\u001a\u00020\u00132\b\u0010\u0014\u001a\u0004\u0018\u00010\u0015HÖ\u0003J\t\u0010\u0016\u001a\u00020\u0003HÖ\u0001J\t\u0010\u0017\u001a\u00020\u0018HÖ\u0001R\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\t\u0010\nR\u0011\u0010\u0004\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u000b\u0010\nR\u0017\u0010\u0005\u001a\b\u0012\u0004\u0012\u00020\u00030\u0006¢\u0006\b\n\u0000\u001a\u0004\b\f\u0010\r¨\u0006\u0019"}, d2 = {"Lcom/sistemasolton/itranvias/home/presentation/freetransfer/TransferResult$Free;", "Lcom/sistemasolton/itranvias/home/presentation/freetransfer/TransferResult;", "origen", "", "destino", "faltantes", "", "<init>", "(IILjava/util/List;)V", "getOrigen", "()I", "getDestino", "getFaltantes", "()Ljava/util/List;", "component1", "component2", "component3", "copy", "equals", "", "other", "", "hashCode", "toString", "", "composeApp_release"}, k = 1, mv = {2, 1, 0}, xi = 48)
|
|
public static final /* data */ class Free extends TransferResult {
|
|
public static final int $stable = 8;
|
|
private final int destino;
|
|
private final List<Integer> faltantes;
|
|
private final int origen;
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
public static /* synthetic */ Free copy$default(Free free, int i, int i2, List list, int i3, Object obj) {
|
|
if ((i3 & 1) != 0) {
|
|
i = free.origen;
|
|
}
|
|
if ((i3 & 2) != 0) {
|
|
i2 = free.destino;
|
|
}
|
|
if ((i3 & 4) != 0) {
|
|
list = free.faltantes;
|
|
}
|
|
return free.copy(i, i2, list);
|
|
}
|
|
|
|
/* JADX INFO: renamed from: component1, reason: from getter */
|
|
public final int getOrigen() {
|
|
return this.origen;
|
|
}
|
|
|
|
/* JADX INFO: renamed from: component2, reason: from getter */
|
|
public final int getDestino() {
|
|
return this.destino;
|
|
}
|
|
|
|
public final List<Integer> component3() {
|
|
return this.faltantes;
|
|
}
|
|
|
|
public final Free copy(int origen, int destino, List<Integer> faltantes) {
|
|
Intrinsics.checkNotNullParameter(faltantes, "faltantes");
|
|
return new Free(origen, destino, faltantes);
|
|
}
|
|
|
|
public boolean equals(Object other) {
|
|
if (this == other) {
|
|
return true;
|
|
}
|
|
if (!(other instanceof Free)) {
|
|
return false;
|
|
}
|
|
Free free = (Free) other;
|
|
return this.origen == free.origen && this.destino == free.destino && Intrinsics.areEqual(this.faltantes, free.faltantes);
|
|
}
|
|
|
|
public int hashCode() {
|
|
return (((Integer.hashCode(this.origen) * 31) + Integer.hashCode(this.destino)) * 31) + this.faltantes.hashCode();
|
|
}
|
|
|
|
public String toString() {
|
|
return "Free(origen=" + this.origen + ", destino=" + this.destino + ", faltantes=" + this.faltantes + ")";
|
|
}
|
|
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
public Free(int i, int i2, List<Integer> faltantes) {
|
|
super(null);
|
|
Intrinsics.checkNotNullParameter(faltantes, "faltantes");
|
|
this.origen = i;
|
|
this.destino = i2;
|
|
this.faltantes = faltantes;
|
|
}
|
|
|
|
public final int getDestino() {
|
|
return this.destino;
|
|
}
|
|
|
|
public final List<Integer> getFaltantes() {
|
|
return this.faltantes;
|
|
}
|
|
|
|
public final int getOrigen() {
|
|
return this.origen;
|
|
}
|
|
}
|
|
|
|
/* JADX INFO: compiled from: FreeTranferScreen.kt */
|
|
@Metadata(d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0002\b\n\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\b\u0087\b\u0018\u00002\u00020\u0001B\u0017\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003¢\u0006\u0004\b\u0005\u0010\u0006J\t\u0010\n\u001a\u00020\u0003HÆ\u0003J\t\u0010\u000b\u001a\u00020\u0003HÆ\u0003J\u001d\u0010\f\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u0003HÆ\u0001J\u0013\u0010\r\u001a\u00020\u000e2\b\u0010\u000f\u001a\u0004\u0018\u00010\u0010HÖ\u0003J\t\u0010\u0011\u001a\u00020\u0003HÖ\u0001J\t\u0010\u0012\u001a\u00020\u0013HÖ\u0001R\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0007\u0010\bR\u0011\u0010\u0004\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\t\u0010\b¨\u0006\u0014"}, d2 = {"Lcom/sistemasolton/itranvias/home/presentation/freetransfer/TransferResult$AllFree;", "Lcom/sistemasolton/itranvias/home/presentation/freetransfer/TransferResult;", "origen", "", "destino", "<init>", "(II)V", "getOrigen", "()I", "getDestino", "component1", "component2", "copy", "equals", "", "other", "", "hashCode", "toString", "", "composeApp_release"}, k = 1, mv = {2, 1, 0}, xi = 48)
|
|
public static final /* data */ class AllFree extends TransferResult {
|
|
public static final int $stable = 0;
|
|
private final int destino;
|
|
private final int origen;
|
|
|
|
public static /* synthetic */ AllFree copy$default(AllFree allFree, int i, int i2, int i3, Object obj) {
|
|
if ((i3 & 1) != 0) {
|
|
i = allFree.origen;
|
|
}
|
|
if ((i3 & 2) != 0) {
|
|
i2 = allFree.destino;
|
|
}
|
|
return allFree.copy(i, i2);
|
|
}
|
|
|
|
/* JADX INFO: renamed from: component1, reason: from getter */
|
|
public final int getOrigen() {
|
|
return this.origen;
|
|
}
|
|
|
|
/* JADX INFO: renamed from: component2, reason: from getter */
|
|
public final int getDestino() {
|
|
return this.destino;
|
|
}
|
|
|
|
public final AllFree copy(int origen, int destino) {
|
|
return new AllFree(origen, destino);
|
|
}
|
|
|
|
public boolean equals(Object other) {
|
|
if (this == other) {
|
|
return true;
|
|
}
|
|
if (!(other instanceof AllFree)) {
|
|
return false;
|
|
}
|
|
AllFree allFree = (AllFree) other;
|
|
return this.origen == allFree.origen && this.destino == allFree.destino;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return (Integer.hashCode(this.origen) * 31) + Integer.hashCode(this.destino);
|
|
}
|
|
|
|
public String toString() {
|
|
return "AllFree(origen=" + this.origen + ", destino=" + this.destino + ")";
|
|
}
|
|
|
|
public AllFree(int i, int i2) {
|
|
super(null);
|
|
this.origen = i;
|
|
this.destino = i2;
|
|
}
|
|
|
|
public final int getDestino() {
|
|
return this.destino;
|
|
}
|
|
|
|
public final int getOrigen() {
|
|
return this.origen;
|
|
}
|
|
}
|
|
} |