Searched defs:Value (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/reflect/
H A DWeakCache.java261 private interface Value<V> extends Supplier<V> {} interface in class:WeakCache
264 * An optimized {@link Value} used to look-up the value in
268 private static final class LookupValue<V> implements Value<V> {
288 obj instanceof Value &&
289 this.value == ((Value<?>) obj).get(); // compare by identity
294 * A {@link Value} that weakly references the referent.
297 extends WeakReference<V> implements Value<V>
315 obj instanceof Value &&
318 value == ((Value<?>) obj).get(); // compare by identity
/libcore/ojluni/src/main/java/java/lang/
H A DProcessEnvironment.java40 * Internally, we define the types Variable and Value that exhibit
42 * environment then looks like a Map<Variable,Value>. But we don't
63 private static final HashMap<Variable,Value> theEnvironment;
76 Value.valueOf(environ[i]));
97 ((Map<Variable,Value>)(theEnvironment.clone()));
102 return new StringEnvironment(new HashMap<Variable,Value>(capacity));
187 private static class Value class in class:ProcessEnvironment
188 extends ExternalData implements Comparable<Value>
190 protected Value(String str, byte[] bytes) { method in class:ProcessEnvironment.Value
194 public static Value valueOfQueryOnl
[all...]

Completed in 166 milliseconds