本文整理汇总了Java中com.google.common.collect.Iterables.indexOf方法的典型用法代码示例。如果您正苦于以下问题:Java Iterables.indexOf方法的具体用法?Java Iterables.indexOf怎么用?Java Iterables.indexOf使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.common.collect.Iterables
的用法示例。
在下文中一共展示了Iterables.indexOf方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: ModelMapBasedRule
import com.google.common.collect.Iterables; //导入方法依赖的package包/类
public ModelMapBasedRule(ModelReference<C> subject, final ModelType<? extends T> baseType, MethodRuleDefinition<?, ?> ruleDefinition, ModelReference<?>... additionalInputs) {
super(subject, ruleDefinition.getDescriptor());
this.inputs = calculateInputs(
baseType,
ruleDefinition.getReferences().subList(1, ruleDefinition.getReferences().size()),
Arrays.asList(additionalInputs)
);
this.baseTypeParameterIndex = 1 + Iterables.indexOf(ruleDefinition.getReferences().subList(1, ruleDefinition.getReferences().size()), new Predicate<ModelReference<?>>() {
@Override
public boolean apply(ModelReference<?> element) {
return element.getType().equals(baseType);
}
});
}
示例2: findPosition
import com.google.common.collect.Iterables; //导入方法依赖的package包/类
protected int findPosition(final long tweetId) {
return Iterables.indexOf(mTweets, new Predicate<Tweet>() {
@Override
public boolean apply(Tweet input) {
return tweetId == input.tweetId();
}
});
}
示例3: split
import com.google.common.collect.Iterables; //导入方法依赖的package包/类
@Auxiliary
public Pair<Path, Path> split(Predicate<Part> matcher) {
int idx=Iterables.indexOf(parts(), p -> matcher.test(p));
if (idx!=-1) {
return Pair.of(Path.of(parts().subList(0, idx+1)), Path.of(parts().subList(idx+1, parts().size())));
}
return Pair.of(this, Path.emtpy());
}