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