本文整理汇总了Java中com.google.common.collect.ImmutableSortedSet.orderedBy方法的典型用法代码示例。如果您正苦于以下问题:Java ImmutableSortedSet.orderedBy方法的具体用法?Java ImmutableSortedSet.orderedBy怎么用?Java ImmutableSortedSet.orderedBy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.common.collect.ImmutableSortedSet
的用法示例。
在下文中一共展示了ImmutableSortedSet.orderedBy方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getSupportedTypes
import com.google.common.collect.ImmutableSortedSet; //导入方法依赖的package包/类
@Override
public Set<ModelType<? extends PUBLIC>> getSupportedTypes() {
ImmutableSortedSet.Builder<ModelType<? extends PUBLIC>> supportedTypes = ImmutableSortedSet.orderedBy(ModelTypes.<PUBLIC>displayOrder());
for (TypeRegistration<?> registration : registrations.values()) {
if (registration.isConstructible()) {
supportedTypes.add(registration.publicType);
}
}
return supportedTypes.build();
}
示例2: canNotConstructTypeException
import com.google.common.collect.ImmutableSortedSet; //导入方法依赖的package包/类
private ModelTypeInitializationException canNotConstructTypeException(NodeInitializerContext<?> context) {
ImmutableSortedSet.Builder<ModelType<?>> constructibleTypes = ImmutableSortedSet.orderedBy(ModelTypes.displayOrder());
for (NodeInitializerExtractionStrategy extractor : additionalStrategies) {
for (ModelType<?> constructibleType : extractor.supportedTypes()) {
if (context.getConstraints().isSatisfiedBy(constructibleType)) {
constructibleTypes.add(constructibleType);
}
}
}
return new ModelTypeInitializationException(context, schemaStore, ScalarTypes.TYPES, constructibleTypes.build());
}
示例3: create
import com.google.common.collect.ImmutableSortedSet; //导入方法依赖的package包/类
@Override
protected List<String> create(String[] elements) {
Comparator<String> comparator = createExplicitComparator(elements);
ImmutableSortedSet.Builder<String> builder = ImmutableSortedSet.orderedBy(comparator);
builder.add(BEFORE_FIRST);
builder.add(elements);
builder.add(AFTER_LAST);
return builder.build().subSet(BEFORE_FIRST_2, AFTER_LAST).asList();
}
示例4: ColumnRegistrar
import com.google.common.collect.ImmutableSortedSet; //导入方法依赖的package包/类
public ColumnRegistrar(TableIdent tableIdent, RowGranularity rowGranularity) {
this.tableIdent = tableIdent;
this.rowGranularity = rowGranularity;
this.infosBuilder = ImmutableSortedMap.naturalOrder();
this.columnsBuilder = ImmutableSortedSet.orderedBy(ReferenceInfo.COMPARE_BY_COLUMN_IDENT);
}