Class AttributePath
java.lang.Object
org.hibernate.boot.model.source.spi.AbstractAttributeKey
org.hibernate.boot.model.source.spi.AttributePath
An attribute path is, generally speaking, the path of attribute names back
to a "root" (which is either an entity or a persistent collection). The
name of this root typically is not included in the path.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionCreates a new AbstractAttributeKey by appending the passed part.protected char
Access to the parent partstatic AttributePath
Methods inherited from class org.hibernate.boot.model.source.spi.AbstractAttributeKey
equals, getDepth, getFullPath, getProperty, hashCode, isCollectionElement, isRoot, toString
-
Field Details
-
DELIMITER
public static final char DELIMITER- See Also:
-
-
Constructor Details
-
AttributePath
public AttributePath() -
AttributePath
-
-
Method Details
-
getDelimiter
protected char getDelimiter()- Specified by:
getDelimiter
in classAbstractAttributeKey
-
append
Description copied from class:AbstractAttributeKey
Creates a new AbstractAttributeKey by appending the passed part.- Specified by:
append
in classAbstractAttributeKey
- Parameters:
property
- The part to append- Returns:
- The new AbstractAttributeKey
-
getParent
Description copied from class:AbstractAttributeKey
Access to the parent part- Overrides:
getParent
in classAbstractAttributeKey
- Returns:
- the parent part
-
parse
-