程序包org.hibernate.graph的分层结构

程序包分层结构:

类分层结构

接口分层结构

  • javax.persistence.AttributeNode<T>
  • javax.persistence.EntityGraph<T>
    • org.hibernate.graph.RootGraph<J> (并 extends org.hibernate.graph.Graph<J>)
  • org.hibernate.graph.GraphNode<J>
    • org.hibernate.graph.AttributeNode<J> (并 extends javax.persistence.AttributeNode<T>)
    • org.hibernate.graph.Graph<J>
      • org.hibernate.graph.RootGraph<J> (并 extends javax.persistence.EntityGraph<T>)
      • org.hibernate.graph.SubGraph<J> (并 extends javax.persistence.Subgraph<T>)
  • javax.persistence.Subgraph<T>
    • org.hibernate.graph.SubGraph<J> (并 extends org.hibernate.graph.Graph<J>)

枚举分层结构