Package org.apache.cayenne.di
Class Key<T>
java.lang.Object
org.apache.cayenne.di.Key<T>
public class Key<T> extends Object
An object that encapsulates a key used to store and lookup DI bindings. Key is made of
 a binding type and an optional binding name.
- Since:
- 3.1
- 
Field SummaryFields Modifier and Type Field Description protected StringbindingNameprotected org.apache.cayenne.di.TypeLiteral<T>typeLiteral
- 
Constructor Summary
- 
Method SummaryModifier and Type Method Description booleanequals(Object object)static <T> Key<T>get(Class<T> type)Creates a key for a nameless binding of a given type.static <T> Key<T>get(Class<T> type, String bindingName)Creates a key for a named binding of a given type.StringgetBindingName()Returns an optional name of the binding used to distinguish multiple bindings of the same object type.static <T> Key<List<T>>getListOf(Class<T> type)static <T> Key<List<T>>getListOf(Class<T> type, String bindingName)static <K, V> Key<Map<K,V>>getMapOf(Class<K> keyType, Class<V> valueType)static <K, V> Key<Map<K,V>>getMapOf(Class<K> keyType, Class<V> valueType, String bindingName)Class<T>getType()inthashCode()StringtoString()
- 
Field Details- 
typeLiteral- Since:
- 4.0
 
- 
bindingName
 
- 
- 
Constructor Details- 
Key
 
- 
- 
Method Details- 
getCreates a key for a nameless binding of a given type.
- 
getCreates a key for a named binding of a given type. 'bindingName' that is an empty String is treated the same way as a null 'bindingName'. In both cases a nameless binding key is created.
- 
getListOf- Since:
- 4.0
 
- 
getListOf- Since:
- 4.0
 
- 
getMapOf- Since:
- 4.0
 
- 
getMapOfpublic static <K, V> Key<Map<K,V>> getMapOf(Class<K> keyType, Class<V> valueType, String bindingName)- Since:
- 4.0
 
- 
getType
- 
getBindingNameReturns an optional name of the binding used to distinguish multiple bindings of the same object type.
- 
equals
- 
hashCodepublic int hashCode()
- 
toString
 
-