Package org.hibernate.loader
Class PropertyPath
- java.lang.Object
-
- org.hibernate.loader.PropertyPath
-
- All Implemented Interfaces:
DotIdentifierSequence
@Deprecated(since="6", forRemoval=true) public class PropertyPath extends Object implements DotIdentifierSequence
Deprecated, for removal: This API element is subject to removal in a future version.UseNavigablePathorNavigableRoleinstead, depending on need.
-
-
Field Summary
Fields Modifier and Type Field Description static StringIDENTIFIER_MAPPER_PROPERTYDeprecated, for removal: This API element is subject to removal in a future version.
-
Constructor Summary
Constructors Constructor Description PropertyPath()Deprecated, for removal: This API element is subject to removal in a future version.PropertyPath(String property)Deprecated, for removal: This API element is subject to removal in a future version.PropertyPath(PropertyPath parent, String property)Deprecated, for removal: This API element is subject to removal in a future version.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description PropertyPathappend(String property)Deprecated, for removal: This API element is subject to removal in a future version.Add a new part to the end of this sequence, returning the new representation.StringgetFullPath()Deprecated, for removal: This API element is subject to removal in a future version.The full sequence text.StringgetLocalName()Deprecated, for removal: This API element is subject to removal in a future version.The name of this sequence part.PropertyPathgetParent()Deprecated, for removal: This API element is subject to removal in a future version.The parent sequence part.StringgetProperty()Deprecated, for removal: This API element is subject to removal in a future version.booleanisRoot()Deprecated, for removal: This API element is subject to removal in a future version.Is this sequence node the root of the sequence.StringtoString()Deprecated, for removal: This API element is subject to removal in a future version.
-
-
-
Field Detail
-
IDENTIFIER_MAPPER_PROPERTY
public static final String IDENTIFIER_MAPPER_PROPERTY
Deprecated, for removal: This API element is subject to removal in a future version.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PropertyPath
public PropertyPath(PropertyPath parent, String property)
Deprecated, for removal: This API element is subject to removal in a future version.
-
PropertyPath
public PropertyPath(String property)
Deprecated, for removal: This API element is subject to removal in a future version.
-
PropertyPath
public PropertyPath()
Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Method Detail
-
append
public PropertyPath append(String property)
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:DotIdentifierSequenceAdd a new part to the end of this sequence, returning the new representation. E.g., given the sequence `a.b.c` and appending `d` would return a new sequence `a.b.c.d`- Specified by:
appendin interfaceDotIdentifierSequence
-
getParent
public PropertyPath getParent()
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:DotIdentifierSequenceThe parent sequence part. E.g., given the sequence `a.b.c`, this returns `a.b`- Specified by:
getParentin interfaceDotIdentifierSequence
-
getLocalName
public String getLocalName()
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:DotIdentifierSequenceThe name of this sequence part. E.g., given the sequence `a.b.c`, this returns `c`- Specified by:
getLocalNamein interfaceDotIdentifierSequence
-
getProperty
public String getProperty()
Deprecated, for removal: This API element is subject to removal in a future version.
-
getFullPath
public String getFullPath()
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:DotIdentifierSequenceThe full sequence text. E.g., given the sequence `a.b.c`, this returns `a.b.c`- Specified by:
getFullPathin interfaceDotIdentifierSequence
-
isRoot
public boolean isRoot()
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:DotIdentifierSequenceIs this sequence node the root of the sequence. Same as checking the nullness ofDotIdentifierSequence.getParent()- Specified by:
isRootin interfaceDotIdentifierSequence
-
-