类 AttributePath
- java.lang.Object
-
- org.hibernate.boot.model.source.spi.AbstractAttributeKey
-
- org.hibernate.boot.model.source.spi.AttributePath
-
public class AttributePath extends AbstractAttributeKey
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.- 作者:
- Steve Ebersole
-
-
字段概要
字段 修饰符和类型 字段 说明 static charDELIMITER
-
构造器概要
构造器 构造器 说明 AttributePath()AttributePath(AttributePath parent, String property)
-
方法概要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 说明 AttributePathappend(String property)Creates a new AbstractAttributeKey by appending the passed part.protected chargetDelimiter()AttributePathgetParent()Access to the parent partstatic AttributePathparse(String path)-
从类继承的方法 org.hibernate.boot.model.source.spi.AbstractAttributeKey
equals, getDepth, getFullPath, getProperty, hashCode, isCollectionElement, isPartOfCollectionElement, isRoot, stripCollectionElementMarker, toString
-
-
-
-
字段详细资料
-
DELIMITER
public static final char DELIMITER
- 另请参阅:
- 常量字段值
-
-
构造器详细资料
-
AttributePath
public AttributePath()
-
AttributePath
public AttributePath(AttributePath parent, String property)
-
-
方法详细资料
-
getDelimiter
protected char getDelimiter()
- 指定者:
getDelimiter在类中AbstractAttributeKey
-
append
public AttributePath append(String property)
从类复制的说明:AbstractAttributeKeyCreates a new AbstractAttributeKey by appending the passed part.- 指定者:
append在类中AbstractAttributeKey- 参数:
property- The part to append- 返回:
- The new AbstractAttributeKey
-
getParent
public AttributePath getParent()
从类复制的说明:AbstractAttributeKeyAccess to the parent part- 覆盖:
getParent在类中AbstractAttributeKey- 返回:
- the parent part
-
parse
public static AttributePath parse(String path)
-
-