Package oracle.dbtools.plugin.api.di
Class ResolvedInstances<T>
- java.lang.Object
-
- oracle.dbtools.plugin.api.di.ResolvedInstances<T>
-
- Type Parameters:
T- The type of the instances
- All Implemented Interfaces:
java.lang.Iterable<T>,java.util.function.Supplier<T>,javax.inject.Provider<T>,InstanceProvider<T>
public class ResolvedInstances<T> extends java.lang.Object implements InstanceProvider<T>
Represents the discovered matches for a call toInstanceLocator.select(TypeQualifier)- Since:
- 19.3.0
- Author:
- cdivilly
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Tget()Retrieve the first available instancebooleanhasMultiple()Determines if there is more than one available implementation for the required type and qualifiersbooleanisUnsatisfied()Determines if there is no available implementation for the required type and qualifiers.java.util.Iterator<T>iterator()When a service has multiple providers (which can be determined by callingInstanceProvider.isAmbiguous()) this iterator enumerates each of the available providersstatic <T> ResolvedInstances<T>matches(InstanceProvider<T> firstMatch, InstanceProvider<T>... subsequentMatches)Concatenates a series of matches togetherstatic <T> ResolvedInstances<T>matches(TypeQualifier<T> qualifier, java.util.Collection<java.lang.Throwable> errors, java.lang.Iterable<T> matches)Produce aResolvedInstancesusing the specifiedTypeQualifierand set of instancesTypeQualifier<T>qualifier()Identifies the constraints used to select matchesjava.lang.StringtoString()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface oracle.dbtools.plugin.api.di.InstanceProvider
getOrNull, isAmbiguous, isAvailable, isUnavailable, orElse, stream
-
-
-
-
Method Detail
-
get
public T get()
Description copied from interface:InstanceProviderRetrieve the first available instance- Specified by:
getin interfaceInstanceProvider<T>- Specified by:
getin interfacejavax.inject.Provider<T>- Specified by:
getin interfacejava.util.function.Supplier<T>- Returns:
- the first available instance
-
hasMultiple
public boolean hasMultiple()
Description copied from interface:InstanceProviderDetermines if there is more than one available implementation for the required type and qualifiers- Specified by:
hasMultiplein interfaceInstanceProvider<T>- Returns:
- true if there are multiple providers, false otherwise
-
isUnsatisfied
public boolean isUnsatisfied()
Description copied from interface:InstanceProviderDetermines if there is no available implementation for the required type and qualifiers. If this method returns true, then callingInstanceProvider.get()will raise aRuntimeException- Specified by:
isUnsatisfiedin interfaceInstanceProvider<T>- Returns:
- true if there is no provider, false otherwise
-
iterator
public java.util.Iterator<T> iterator()
Description copied from interface:InstanceProviderWhen a service has multiple providers (which can be determined by callingInstanceProvider.isAmbiguous()) this iterator enumerates each of the available providers- Specified by:
iteratorin interfaceInstanceProvider<T>- Specified by:
iteratorin interfacejava.lang.Iterable<T>- Returns:
- The set of available providers
-
qualifier
public TypeQualifier<T> qualifier()
Description copied from interface:InstanceProviderIdentifies the constraints used to select matches- Specified by:
qualifierin interfaceInstanceProvider<T>- Returns:
TypeQualifierinstance
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
matches
@SafeVarargs public static <T> ResolvedInstances<T> matches(InstanceProvider<T> firstMatch, InstanceProvider<T>... subsequentMatches)
Concatenates a series of matches together- Type Parameters:
T- The type of the instances- Parameters:
firstMatch- The first set of matchessubsequentMatches- The remainder of the matches- Returns:
ResolvedInstancesinstance
-
matches
public static <T> ResolvedInstances<T> matches(TypeQualifier<T> qualifier, java.util.Collection<java.lang.Throwable> errors, java.lang.Iterable<T> matches)
Produce aResolvedInstancesusing the specifiedTypeQualifierand set of instances- Type Parameters:
T- The type of the instances- Parameters:
errors- Any errors encountered in resolving the instancesqualifier- The constraints used to match the instancesmatches- The matches- Returns:
ResolvedInstancesinstance
-
-