Searched refs:priorityIndices (Results 1 – 1 of 1) sorted by relevance
37 private final ImmutableList<Integer> priorityIndices; field in OptionPriority42 PriorityCategory priorityCategory, ImmutableList<Integer> priorityIndices) { in OptionPriority() argument44 this.priorityIndices = priorityIndices; in OptionPriority()58 int lastElementPosition = priority.priorityIndices.size() - 1; in nextOptionPriority()62 .addAll(priority.priorityIndices.subList(0, lastElementPosition)) in nextOptionPriority()63 .add(priority.priorityIndices.get(lastElementPosition) + 1) in nextOptionPriority()85 ImmutableList.<Integer>builder().addAll(parentPriority.priorityIndices).add(0).build()); in getChildPriority()95 for (int i = 0; i < priorityIndices.size() && i < o.priorityIndices.size(); ++i) { in compareTo()96 if (!priorityIndices.get(i).equals(o.priorityIndices.get(i))) { in compareTo()97 return priorityIndices.get(i).compareTo(o.priorityIndices.get(i)); in compareTo()[all …]