當前位置: 首頁>>代碼示例>>Java>>正文


Java ImmutableSortedSet.orderedBy方法代碼示例

本文整理匯總了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();
}
 
開發者ID:lxxlxx888,項目名稱:Reer,代碼行數:11,代碼來源:BaseInstanceFactory.java

示例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());
}
 
開發者ID:lxxlxx888,項目名稱:Reer,代碼行數:12,代碼來源:DefaultNodeInitializerRegistry.java

示例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();
}
 
開發者ID:zugzug90,項目名稱:guava-mock,代碼行數:10,代碼來源:SetGenerators.java

示例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);
}
 
開發者ID:baidu,項目名稱:Elasticsearch,代碼行數:7,代碼來源:ColumnRegistrar.java


注:本文中的com.google.common.collect.ImmutableSortedSet.orderedBy方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。