32 lines
606 B
Java
32 lines
606 B
Java
package org.simpleframework.xml.stream;
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface InputNode extends Node {
|
|
InputNode getAttribute(String str);
|
|
|
|
NodeMap<InputNode> getAttributes();
|
|
|
|
InputNode getNext() throws Exception;
|
|
|
|
InputNode getNext(String str) throws Exception;
|
|
|
|
@Override // org.simpleframework.xml.stream.Node
|
|
InputNode getParent();
|
|
|
|
Position getPosition();
|
|
|
|
String getPrefix();
|
|
|
|
String getReference();
|
|
|
|
Object getSource();
|
|
|
|
boolean isElement();
|
|
|
|
boolean isEmpty() throws Exception;
|
|
|
|
boolean isRoot();
|
|
|
|
void skip() throws Exception;
|
|
}
|