![JAR search and dependency download from the Maven repository](/logo.png)
org.nlab.json.stream.jsonpath.path.PathArrayIndex Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-stream Show documentation
Show all versions of json-stream Show documentation
Json Streaming / JsonPath Matcher
package org.nlab.json.stream.jsonpath.path;
/**
* Created by nlabrot on 13/04/16.
*/
public class PathArrayIndex extends PathNode {
private int index;
public PathArrayIndex(String index) {
super(null);
if ("*".equals(index)){
this.index = -1;
}else{
this.index = Integer.parseInt(index);
}
}
public int getIndex() {
return index;
}
public boolean matchIndex(int toMatchIndex){
return index == -1 || toMatchIndex == index;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy