Package org.hibernate.query
Interface DotIdentifierSequence
-
- All Known Implementing Classes:
EntityIdentifierNavigablePath
,NavigablePath
,NavigableRole
,TreatedNavigablePath
public interface DotIdentifierSequence
Hibernate often deals with compound names/paths. This interface defines a standard way of interacting with them
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DotIdentifierSequence
append(String subPathName)
String
getFullPath()
String
getLocalName()
DotIdentifierSequence
getParent()
default boolean
isRoot()
default <T> T
resolve(T base, BiFunction<T,String,T> baseResolver, BiFunction<T,String,T> resolver)
-
-
-
Method Detail
-
getParent
DotIdentifierSequence getParent()
-
getLocalName
String getLocalName()
-
getFullPath
String getFullPath()
-
append
DotIdentifierSequence append(String subPathName)
-
isRoot
default boolean isRoot()
-
resolve
default <T> T resolve(T base, BiFunction<T,String,T> baseResolver, BiFunction<T,String,T> resolver)
-
-