mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 00:52:31 -06:00
77 lines
2.5 KiB
Java
77 lines
2.5 KiB
Java
package com.google.common.base;
|
|
|
|
import com.google.errorprone.annotations.DoNotMock;
|
|
import java.io.Serializable;
|
|
import java.util.Iterator;
|
|
import java.util.Set;
|
|
import javax.annotation.CheckForNull;
|
|
|
|
@DoNotMock("Use Optional.of(value) or Optional.absent()")
|
|
@ElementTypesAreNonnullByDefault
|
|
/* loaded from: classes2.dex */
|
|
public abstract class Optional<T> implements Serializable {
|
|
private static final long serialVersionUID = 0;
|
|
|
|
public abstract Set<T> asSet();
|
|
|
|
public abstract boolean equals(@CheckForNull Object obj);
|
|
|
|
public abstract T get();
|
|
|
|
public abstract int hashCode();
|
|
|
|
public abstract boolean isPresent();
|
|
|
|
public abstract Optional<T> or(Optional<? extends T> optional);
|
|
|
|
public abstract T or(Supplier<? extends T> supplier);
|
|
|
|
public abstract T or(T t);
|
|
|
|
@CheckForNull
|
|
public abstract T orNull();
|
|
|
|
public abstract String toString();
|
|
|
|
public abstract <V> Optional<V> transform(Function<? super T, V> function);
|
|
|
|
public static <T> Optional<T> absent() {
|
|
return Absent.withType();
|
|
}
|
|
|
|
public static <T> Optional<T> of(T t) {
|
|
return new Present(Preconditions.checkNotNull(t));
|
|
}
|
|
|
|
public static <T> Optional<T> fromNullable(@CheckForNull T t) {
|
|
return t == null ? absent() : new Present(t);
|
|
}
|
|
|
|
public static <T> Iterable<T> presentInstances(final Iterable<? extends Optional<? extends T>> iterable) {
|
|
Preconditions.checkNotNull(iterable);
|
|
return new Iterable<T>() { // from class: com.google.common.base.Optional.1
|
|
@Override // java.lang.Iterable
|
|
public Iterator<T> iterator() {
|
|
return new AbstractIterator<T>() { // from class: com.google.common.base.Optional.1.1
|
|
private final Iterator<? extends Optional<? extends T>> iterator;
|
|
|
|
{
|
|
this.iterator = (Iterator) Preconditions.checkNotNull(iterable.iterator());
|
|
}
|
|
|
|
@Override // com.google.common.base.AbstractIterator
|
|
@CheckForNull
|
|
protected T computeNext() {
|
|
while (this.iterator.hasNext()) {
|
|
Optional<? extends T> next = this.iterator.next();
|
|
if (next.isPresent()) {
|
|
return next.get();
|
|
}
|
|
}
|
|
return endOfData();
|
|
}
|
|
};
|
|
}
|
|
};
|
|
}
|
|
}
|