HomeSort by relevance Sort by last modified time
    Searched refs:StrongValue (Results 1 - 2 of 2) sorted by null

  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CacheValue.java 78 return strength == Strength.STRONG ? new StrongValue<V>(value) : new SoftValue<V>(value);
119 private static final class StrongValue<V> extends CacheValue<V> {
122 StrongValue(V value) { this.value = value; }
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CacheValue.java 76 return strength == Strength.STRONG ? new StrongValue<V>(value) : new SoftValue<V>(value);
117 private static final class StrongValue<V> extends CacheValue<V> {
120 StrongValue(V value) { this.value = value; }

Completed in 171 milliseconds