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


Java ContainerUtil.canonicalStrategy方法代碼示例

本文整理匯總了Java中com.intellij.util.containers.ContainerUtil.canonicalStrategy方法的典型用法代碼示例。如果您正苦於以下問題:Java ContainerUtil.canonicalStrategy方法的具體用法?Java ContainerUtil.canonicalStrategy怎麽用?Java ContainerUtil.canonicalStrategy使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.intellij.util.containers.ContainerUtil的用法示例。


在下文中一共展示了ContainerUtil.canonicalStrategy方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: createWeakMap

import com.intellij.util.containers.ContainerUtil; //導入方法依賴的package包/類
@NotNull
private static <K,V> ConcurrentMap<K, V> createWeakMap() {
  return new ConcurrentWeakKeySoftValueHashMap<K, V>(100, 0.75f, Runtime.getRuntime().availableProcessors(), ContainerUtil.<K>canonicalStrategy()){
    @NotNull
    @Override
    protected ValueReference<K, V> createValueReference(@NotNull final V value,
                                                        @NotNull ReferenceQueue<V> queue) {
      ValueReference<K, V> result;
      if (value == NULL_RESULT || value instanceof Object[] && ((Object[])value).length == 0) {
        // no use in creating SoftReference to null
        result = createStrongReference(value);
      }
      else {
        result = super.createValueReference(value, queue);
      }
      return result;
    }

    @Override
    public V get(@NotNull Object key) {
      V v = super.get(key);
      return v == NULL_RESULT ? null : v;
    }
  };
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:26,代碼來源:ResolveCache.java

示例2: uniqueResults

import com.intellij.util.containers.ContainerUtil; //導入方法依賴的package包/類
private static UniqueResultsQuery<PsiReference, ReferenceDescriptor> uniqueResults(@NotNull Query<PsiReference> composite) {
  return new UniqueResultsQuery<PsiReference, ReferenceDescriptor>(composite, ContainerUtil.<ReferenceDescriptor>canonicalStrategy(), ReferenceDescriptor.MAPPER);
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:4,代碼來源:MethodReferencesSearch.java

示例3: MyTHashMap

import com.intellij.util.containers.ContainerUtil; //導入方法依賴的package包/類
public MyTHashMap() {
  super(SystemInfo.isWindows ? CaseInsensitiveStringHashingStrategy.INSTANCE : ContainerUtil.<String>canonicalStrategy());
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:4,代碼來源:GeneralCommandLine.java

示例4: UniqueResultsQuery

import com.intellij.util.containers.ContainerUtil; //導入方法依賴的package包/類
public UniqueResultsQuery(@NotNull Query<T> original) {
  this(original, ContainerUtil.<M>canonicalStrategy(), (Function<T, M>)FunctionUtil.<M>id());
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:4,代碼來源:UniqueResultsQuery.java

示例5: UniqueProcessor

import com.intellij.util.containers.ContainerUtil; //導入方法依賴的package包/類
public UniqueProcessor(@NotNull Processor<T> delegate) {
  this(delegate, ContainerUtil.<T>canonicalStrategy());
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:4,代碼來源:CommonProcessors.java

示例6: create

import com.intellij.util.containers.ContainerUtil; //導入方法依賴的package包/類
@NotNull
public static TObjectHashingStrategy<String> create(boolean caseSensitive) {
  return caseSensitive ? ContainerUtil.<String>canonicalStrategy() : CaseInsensitiveStringHashingStrategy.INSTANCE;
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:5,代碼來源:FilePathHashingStrategy.java

示例7: uniqueResults

import com.intellij.util.containers.ContainerUtil; //導入方法依賴的package包/類
@NotNull
private static Query<PsiReference> uniqueResults(@NotNull Query<PsiReference> composite) {
  return new UniqueResultsQuery<PsiReference, ReferenceDescriptor>(composite, ContainerUtil.<ReferenceDescriptor>canonicalStrategy(), ReferenceDescriptor.MAPPER);
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:5,代碼來源:ReferencesSearch.java


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