com.lyncode.jtwig.render.stream.RenderIndex Maven / Gradle / Ivy
The newest version!
/**
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.lyncode.jtwig.render.stream;
import org.apache.commons.lang3.ArrayUtils;
import java.util.Arrays;
public class RenderIndex {
private final int[] mIndex;
public static RenderIndex newIndex() {
return new RenderIndex(ArrayUtils.add(new int[0], 0));
}
public boolean isRoot() {
return mIndex.length == 1 && mIndex[0] == 0;
}
public boolean isLeft() {
return mIndex[mIndex.length - 1] == 0;
}
public boolean isRight() {
return !isLeft();
}
public boolean isMostLeft() {
for (int i = 0; i < mIndex.length; i++) {
if (mIndex[i] != 0) {
return false;
}
}
return true;
}
public RenderIndex clone() {
return new RenderIndex(getIndex());
}
public RenderIndex right() {
int[] newIndex = ArrayUtils.clone(mIndex);
newIndex[newIndex.length - 1]++;
return new RenderIndex(newIndex);
}
public RenderIndex left() {
return new RenderIndex(ArrayUtils.add(getIndex(), 0));
}
public RenderIndex previous() {
int[] newIndex = ArrayUtils.clone(mIndex);
if (isLeft()) {
newIndex = ArrayUtils.remove(mIndex, mIndex.length - 1);
} else {
newIndex[newIndex.length - 1]--;
newIndex = ArrayUtils.add(newIndex, 0);
}
return new RenderIndex(newIndex);
}
private RenderIndex(int[] index) {
mIndex = index;
}
private int[] getIndex() {
return mIndex;
}
@Override
public int hashCode() {
return Arrays.toString(mIndex).hashCode();
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RenderIndex that = (RenderIndex) o;
if (!Arrays.equals(mIndex, that.mIndex)) {
return false;
}
return true;
}
}