Spring Data Commons

Uses of Interface
org.springframework.data.util.TypeInformation

Packages that use TypeInformation
org.springframework.data.mapping   
org.springframework.data.mapping.context   
org.springframework.data.mapping.event   
org.springframework.data.mapping.model   
org.springframework.data.repository.query.parser Support classes for parsing queries from method names. 
org.springframework.data.util   
 

Uses of TypeInformation in org.springframework.data.mapping
 

Methods in org.springframework.data.mapping that return TypeInformation
 TypeInformation<T> PreferredConstructor.Parameter.getType()
          Returns the TypeInformation of the parameter.
 TypeInformation<?> PersistentProperty.getTypeInformation()
           
 TypeInformation<T> PersistentEntity.getTypeInformation()
          Returns the TypeInformation backing this PersistentEntity.
 

Constructors in org.springframework.data.mapping with parameters of type TypeInformation
PreferredConstructor.Parameter(String name, TypeInformation<T> type, Annotation[] annotations)
          Creates a new PreferredConstructor.Parameter with the given name, TypeInformation as well as an array of Annotations.
 

Uses of TypeInformation in org.springframework.data.mapping.context
 

Methods in org.springframework.data.mapping.context with parameters of type TypeInformation
protected  E AbstractMappingContext.addPersistentEntity(TypeInformation<?> typeInformation)
          Adds the given TypeInformation to the MappingContext.
protected abstract
<T> E
AbstractMappingContext.createPersistentEntity(TypeInformation<T> typeInformation)
          Creates the concrete PersistentEntity instance.
 E MappingContext.getPersistentEntity(TypeInformation<?> type)
          Returns a PersistentEntity for the given TypeInformation.
 E AbstractMappingContext.getPersistentEntity(TypeInformation<?> type)
           
 

Uses of TypeInformation in org.springframework.data.mapping.event
 

Methods in org.springframework.data.mapping.event that return TypeInformation
 TypeInformation<?> MappingContextEvent.getTypeInformation()
           
 

Constructors in org.springframework.data.mapping.event with parameters of type TypeInformation
MappingContextEvent(E source, TypeInformation<?> typeInformation)
           
 

Uses of TypeInformation in org.springframework.data.mapping.model
 

Fields in org.springframework.data.mapping.model declared as TypeInformation
protected  TypeInformation<?> AbstractPersistentProperty.information
           
 

Methods in org.springframework.data.mapping.model that return TypeInformation
 TypeInformation<?> AbstractPersistentProperty.getTypeInformation()
           
 TypeInformation<T> BasicPersistentEntity.getTypeInformation()
           
 

Constructors in org.springframework.data.mapping.model with parameters of type TypeInformation
BasicPersistentEntity(TypeInformation<T> information)
          Creates a new BasicPersistentEntity from the given TypeInformation.
BasicPersistentEntity(TypeInformation<T> information, Comparator<P> comparator)
          Creates a new BasicPersistentEntity for the given TypeInformation and Comparator.
PreferredConstructorDiscoverer(TypeInformation<T> owningType)
          Creates a new PreferredConstructorDiscoverer for the given type.
 

Uses of TypeInformation in org.springframework.data.repository.query.parser
 

Methods in org.springframework.data.repository.query.parser that return TypeInformation
 TypeInformation<?> Property.getOwningType()
          Returns the owning type of the Property.
 

Uses of TypeInformation in org.springframework.data.util
 

Classes in org.springframework.data.util that implement TypeInformation
 class ClassTypeInformation<S>
          Property information for a plain Class.
 

Methods in org.springframework.data.util that return TypeInformation
static
<S> TypeInformation<S>
ClassTypeInformation.from(Class<S> type)
          Simple factory method to easily create new instances of ClassTypeInformation.
 TypeInformation<?> TypeInformation.getActualType()
          Transparently returns the Map value type if the type is a Map, returns the component type if the type isCollectionLike() or the simple type if none of this applies.
 TypeInformation<?> ClassTypeInformation.getComponentType()
           
 TypeInformation<?> TypeInformation.getComponentType()
          Returns the component type for Collections or the key type for Maps.
 TypeInformation<?> TypeInformation.getMapValueType()
          Will return the type of the value in case the underlying type is a Map.
 TypeInformation<?> TypeInformation.getProperty(String fieldname)
          Returns the property information for the property with the given name.
 

Methods in org.springframework.data.util that return types with arguments of type TypeInformation
 List<TypeInformation<?>> TypeInformation.getParameterTypes(Constructor<?> constructor)
           
 


Spring Data Commons

Copyright © 2011. All Rights Reserved.