Class ElementPropertyMapping
- java.lang.Object
-
- org.hibernate.persister.collection.ElementPropertyMapping
-
- All Implemented Interfaces:
PropertyMapping
public class ElementPropertyMapping extends Object implements PropertyMapping
-
-
Constructor Summary
Constructors Constructor Description ElementPropertyMapping(String[] elementColumns, Type type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Type
getType()
String[]
toColumns(String propertyName)
Given a property path, return the corresponding column name(s).Type
toType(String propertyName)
Given a component path expression, get the type of the property
-
-
-
Method Detail
-
toType
public Type toType(String propertyName) throws QueryException
Description copied from interface:PropertyMapping
Given a component path expression, get the type of the property- Specified by:
toType
in interfacePropertyMapping
- Throws:
QueryException
-
toColumns
public String[] toColumns(String propertyName)
Given a property path, return the corresponding column name(s).- Specified by:
toColumns
in interfacePropertyMapping
-
getType
public Type getType()
-
-