Java org.springframework.data.util TypeInformation fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.data.util TypeInformation fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.data.util TypeInformation.

The text is from its open source code.

Method

TypeInformationgetActualType()
Transparently returns the java.util.Map value type if the type is a java.util.Map , returns the component type if the type #isCollectionLike() or the simple type if none of this applies.
TypeInformationgetComponentType()
Returns the component type for java.util.Collection s or the key type for java.util.Map s.
TypeInformationgetMapValueType()
Will return the type of the value in case the underlying type is a java.util.Map .
TypeInformationgetProperty(String property)
Returns the property information for the property with the given name.
ClassgetType()
Returns the type of the property.
booleanisCollectionLike()
Returns whether the type can be considered a collection, which means it's a container of elements, e.g.
booleanisMap()
Returns whether the property is a link java.util.Map .