nextIndex static method
Implementation
static int nextIndex(List<RelateEdge> list, int i) {
if (i >= list.length - 1) {
return 0;
}
return i + 1;
}
static int nextIndex(List<RelateEdge> list, int i) {
if (i >= list.length - 1) {
return 0;
}
return i + 1;
}