Files
rr3-apk/decompiled/sources/org/apache/http/message/BasicTokenIterator.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

77 lines
2.1 KiB
Java

package org.apache.http.message;
import java.util.NoSuchElementException;
import org.apache.http.HeaderIterator;
import org.apache.http.ParseException;
import org.apache.http.TokenIterator;
@Deprecated
/* loaded from: classes5.dex */
public class BasicTokenIterator implements TokenIterator {
public static final String HTTP_SEPARATORS = " ,;=()<>@:\\\"/[]?{}\t";
protected String currentHeader;
protected String currentToken;
protected final HeaderIterator headerIt;
protected int searchPos;
public BasicTokenIterator(HeaderIterator headerIterator) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.TokenIterator, java.util.Iterator
public boolean hasNext() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.TokenIterator
public String nextToken() throws NoSuchElementException, ParseException {
throw new RuntimeException("Stub!");
}
@Override // java.util.Iterator
public final Object next() throws NoSuchElementException, ParseException {
throw new RuntimeException("Stub!");
}
@Override // java.util.Iterator
public final void remove() throws UnsupportedOperationException {
throw new RuntimeException("Stub!");
}
public int findNext(int i) throws ParseException {
throw new RuntimeException("Stub!");
}
public String createToken(String str, int i, int i2) {
throw new RuntimeException("Stub!");
}
public int findTokenStart(int i) {
throw new RuntimeException("Stub!");
}
public int findTokenSeparator(int i) {
throw new RuntimeException("Stub!");
}
public int findTokenEnd(int i) {
throw new RuntimeException("Stub!");
}
public boolean isTokenSeparator(char c) {
throw new RuntimeException("Stub!");
}
public boolean isWhitespace(char c) {
throw new RuntimeException("Stub!");
}
public boolean isTokenChar(char c) {
throw new RuntimeException("Stub!");
}
public boolean isHttpSeparator(char c) {
throw new RuntimeException("Stub!");
}
}