本文整理匯總了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());
}