org.jboss.msc.value
Class CachedValue<T>
java.lang.Object
org.jboss.msc.value.CachedValue<T>
- Type Parameters:
T
- the value type
- All Implemented Interfaces:
- Value<T>
public final class CachedValue<T>
- extends Object
- implements Value<T>
A value which is calculated once only. After the initial calculation, the result is cached and returned.
- Author:
- David M. Lloyd
Method Summary |
T |
getValue()
Get the actual value. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CachedValue
public CachedValue(Value<? extends T> value)
- Construct a new instance.
- Parameters:
value
- the value from which this value is calculated
getValue
public T getValue()
throws IllegalStateException
- Get the actual value.
- Specified by:
getValue
in interface Value<T>
- Returns:
- the actual value
- Throws:
IllegalStateException
- if the value is time-sensitive and the current state does not allow retrieval.
Copyright © 2011 JBoss, a division of Red Hat, Inc.