Uses of Interface
org.jboss.msc.value.Value
-
Packages that use Value Package Description org.jboss.msc.inject Classes which implement value injection.org.jboss.msc.service The service container implementation itself.org.jboss.msc.value Classes which implement various indirect value types. -
-
Uses of Value in org.jboss.msc.inject
Methods in org.jboss.msc.inject that return Value Modifier and Type Method Description protected Value<T>
RetainingInjector. getStoredValue()
Deprecated.Get the value object stored in this injector.protected Value<T>
RetainingInjector. setStoredValue(Value<T> value)
Deprecated.Set the value object stored in this injector (must not benull
).Methods in org.jboss.msc.inject with parameters of type Value Modifier and Type Method Description static <T> Injector<T>
SetMethodInjector. create(Value<?> target, Method method)
Deprecated.Construct a new instance.protected Value<T>
RetainingInjector. setStoredValue(Value<T> value)
Deprecated.Set the value object stored in this injector (must not benull
).Constructors in org.jboss.msc.inject with parameters of type Value Constructor Description AddMethodInjector(Value<?> target, Method addMethod, Method removeMethod)
Deprecated.Construct a new instance.AtomicReferenceFieldUpdaterInjector(AtomicReferenceFieldUpdater<C,? super T> updater, Value<C> target)
Deprecated.Construct a new instance.FieldInjector(Value<?> target, Field field)
Deprecated.Construct a new instance.MethodInjector(Method method, Value<?> targetValue, Value<?> injectedValue, List<? extends Value<?>> parameterList)
Deprecated.Construct a new instance.SetMethodInjector(Value<?> target, Method method)
Deprecated.Construct a new instance.Constructor parameters in org.jboss.msc.inject with type arguments of type Value Constructor Description MethodInjector(Method method, Value<?> targetValue, Value<?> injectedValue, List<? extends Value<?>> parameterList)
Deprecated.Construct a new instance. -
Uses of Value in org.jboss.msc.service
Subinterfaces of Value in org.jboss.msc.service Modifier and Type Interface Description interface
Service<T>
Deprecated.useService
instead.interface
ServiceController<S>
A controller for a single service instance.Classes in org.jboss.msc.service that implement Value Modifier and Type Class Description class
AbstractService<T>
Deprecated.useService
instead.class
DelegatingServiceController<S>
A service controller which delegates to another service controller.class
ValueInjectionService<T>
Deprecated.UseService.newInstance(Consumer<T>,T
instead.class
ValueService<T>
Deprecated.UseService.newInstance(Consumer<T>,T
instead.Fields in org.jboss.msc.service declared as Value Modifier and Type Field Description static Value<Service<Void>>
Service. NULL_VALUE
Deprecated.A value which resolves to thenull service
.Methods in org.jboss.msc.service that return Value Modifier and Type Method Description Value<? extends T>
ValueInjection. getSource()
Deprecated.Get the source value.Methods in org.jboss.msc.service with parameters of type Value Modifier and Type Method Description <I> ServiceBuilder<T>
DelegatingServiceBuilder. addInjectionValue(Injector<? super I> target, Value<I> value)
Deprecated.<I> ServiceBuilder<T>
ServiceBuilder. addInjectionValue(Injector<? super I> target, Value<I> value)
Deprecated.UseServiceBuilder.requires(ServiceName)
instead.<T> ServiceBuilder<T>
DelegatingServiceContainer. addServiceValue(ServiceName name, Value<? extends Service<T>> value)
Deprecated.<T> ServiceBuilder<T>
DelegatingServiceTarget. addServiceValue(ServiceName name, Value<? extends Service<T>> value)
Deprecated.<T> ServiceBuilder<T>
ServiceTarget. addServiceValue(ServiceName name, Value<? extends Service<T>> value)
Deprecated.UseServiceTarget.addService(ServiceName)
instead.Constructors in org.jboss.msc.service with parameters of type Value Constructor Description ValueInjection(Value<? extends T> source, Injector<? super T> target)
Deprecated.Construct a new instance.ValueService(Value<T> value)
Deprecated.Construct a new instance. -
Uses of Value in org.jboss.msc.value
Fields in org.jboss.msc.value with type parameters of type Value Modifier and Type Field Description static List<Value<?>>
Values. EMPTY_LIST
Deprecated.The empty value list.static List<? extends Value<Class<?>>>
Values. EMPTY_TYPE_LIST
Deprecated.The empty value type list.Methods in org.jboss.msc.value that return Value Modifier and Type Method Description static <T> Value<T>
Values. asSuperclass(Value<? extends T> value)
Deprecated.Safely re-cast a value as its superclass.static <T> Value<T>
Values. cached(Value<T> value)
Deprecated.Get a cached value for some opaque value.static <T> Value<List<T>>
Values. emptyListValue()
Deprecated.A value which yields the empty list.Value<? extends T>
ThreadLocalValue. getAndSetValue(Value<? extends T> newValue)
Deprecated.Get and set the value.static <T> Value<T>
Values. immediateValue(T value)
Deprecated.Get an immediate value.static <T> Value<T>
Values. nullValue()
Deprecated.Get the null value.static <K,V>
Value<MapEntry<K,V>>MapEntryValue. of(Value<K> key, Value<V> value)
Deprecated.Construct a new instance.Methods in org.jboss.msc.value that return types with arguments of type Value Modifier and Type Method Description static <T> List<Value<? extends T>>
Values. emptyList()
Deprecated.The empty value list.static <T> List<Value<? extends T>>
Values. immediateValues(List<T> values)
Deprecated.static <T> List<Value<? extends T>>
Values. immediateValues(T... values)
Deprecated.Methods in org.jboss.msc.value with parameters of type Value Modifier and Type Method Description static <T> Value<T>
Values. asSuperclass(Value<? extends T> value)
Deprecated.Safely re-cast a value as its superclass.static <T> Value<T>
Values. cached(Value<T> value)
Deprecated.Get a cached value for some opaque value.Value<? extends T>
ThreadLocalValue. getAndSetValue(Value<? extends T> newValue)
Deprecated.Get and set the value.static <K,V>
Value<MapEntry<K,V>>MapEntryValue. of(Value<K> key, Value<V> value)
Deprecated.Construct a new instance.void
InjectedValue. setValue(Value<T> value)
Deprecated.Set the value to be injected to aValue
instance.void
ThreadLocalValue. setValue(Value<? extends T> newValue)
Deprecated.Set this value, replacing any current value.Method parameters in org.jboss.msc.value with type arguments of type Value Modifier and Type Method Description static Object[]
Values. getValues(Iterable<? extends Value<?>> i)
Deprecated.Get an object array from the result of an iterable series of values.static <T> T[]
Values. getValues(Iterable<? extends Value<? extends T>> i, Class<T> clazz)
Deprecated.Get a typed object array from the result of an iterable series of values.static <T> T[]
Values. getValues(Iterable<? extends Value<? extends T>> i, T[] array)
Deprecated.Get a typed object array from the result of an iterable series of values.Constructors in org.jboss.msc.value with parameters of type Value Constructor Description CachedValue(Value<? extends T> value)
Deprecated.Construct a new instance.CheckedValue(Class<T> valueClass, Value<?> value)
Deprecated.Construct a new instance.ClassOfValue(Value<? extends T> value)
Deprecated.DefaultValue(Value<T> value, Value<? extends T> defaultValue)
Deprecated.Construct a new instance.EnvironmentPropertyValue(String propertyName, AccessControlContext accessControlContext, Value<?> defaultValue)
Deprecated.Construct a new instance.EnvironmentPropertyValue(String propertyName, Value<?> defaultValue)
Deprecated.Construct a new instance.FieldValue(Field field, Value<?> targetValue)
Deprecated.Construct a new instance.ListItemValue(Value<List<? extends T>> listValue, Value<? extends Number> indexValue)
Deprecated.Construct a new instance.MapItemValue(Value<?> keyValue, Value<? extends Map<?,? extends T>> mapValue)
Deprecated.Construct a new instance.MapValue(Value<? extends Map<K,V>> mapValue, List<MapEntry<? extends Value<? extends K>,? extends Value<? extends V>>> values)
Deprecated.Construct a new instance.MapValue(Value<? extends Map<K,V>> mapValue, MapEntry<? extends Value<? extends K>,? extends Value<? extends V>>... values)
Deprecated.Construct a new instance.MethodValue(Value<Method> methodValue, Value<?> targetValue, List<? extends Value<?>> parameters)
Deprecated.Construct a new instance.SystemPropertyValue(String propertyName, AccessControlContext accessControlContext, Value<?> defaultValue)
Deprecated.Construct a new instance.SystemPropertyValue(String propertyName, Value<?> defaultValue)
Deprecated.Construct a new instance.Constructor parameters in org.jboss.msc.value with type arguments of type Value Constructor Description ConstructedValue(Constructor<T> constructor, List<? extends Value<?>> parameters)
Deprecated.Construct a new instance.ListValue(List<? extends Value<? extends T>> values)
Deprecated.Construct a new instance.MapEntryValue(MapEntry<Value<K>,Value<V>> entry)
Deprecated.Construct a new instance.MapEntryValue(MapEntry<Value<K>,Value<V>> entry)
Deprecated.Construct a new instance.MapValue(Value<? extends Map<K,V>> mapValue, List<MapEntry<? extends Value<? extends K>,? extends Value<? extends V>>> values)
Deprecated.Construct a new instance.MapValue(Value<? extends Map<K,V>> mapValue, List<MapEntry<? extends Value<? extends K>,? extends Value<? extends V>>> values)
Deprecated.Construct a new instance.MethodValue(Value<Method> methodValue, Value<?> targetValue, List<? extends Value<?>> parameters)
Deprecated.Construct a new instance.SetValue(List<? extends Value<? extends T>> values)
Deprecated.Construct a new instance.
-