Package com.querydsl.core.alias
Class DefaultTypeSystem
java.lang.Object
com.querydsl.core.alias.DefaultTypeSystem
- All Implemented Interfaces:
TypeSystem
DefaultTypeSystem is the default implementation of the TypeSystem interface- Author:
- tiwe
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanisCollectionType(Class<?> cl) Return whether the given class is a collection classbooleanisListType(Class<?> cl) Return whether the given class is a list classbooleanReturn whether the given class is a map classbooleanReturn whether the given class is a set class
-
Constructor Details
-
DefaultTypeSystem
public DefaultTypeSystem()
-
-
Method Details
-
isCollectionType
Description copied from interface:TypeSystemReturn whether the given class is a collection class- Specified by:
isCollectionTypein interfaceTypeSystem- Parameters:
cl- class to check- Returns:
- true, if argument is a collection type
-
isListType
Description copied from interface:TypeSystemReturn whether the given class is a list class- Specified by:
isListTypein interfaceTypeSystem- Parameters:
cl- class to check- Returns:
- true, if argument is a list type
-
isSetType
Description copied from interface:TypeSystemReturn whether the given class is a set class- Specified by:
isSetTypein interfaceTypeSystem- Parameters:
cl- class to check- Returns:
- true, if argument is a set type
-
isMapType
Description copied from interface:TypeSystemReturn whether the given class is a map class- Specified by:
isMapTypein interfaceTypeSystem- Parameters:
cl- class to check- Returns:
- true, if argument is a map type
-