 64 | Annotation Element javax.jdo.annotations.Joins Join[] value The join definitions used for the mapping of this type. Joins for secondary tables are usually defined at the type level and not the field or property level. This allows multiple fields and properties to share the same join definition |
 63 | Method javax.persistence.criteria.From Join join( SingularAttribute attribute ) Create an inner join to the specified single-valued attribute. Parameters: attribute - target of the join Returns: the resulting join Since: JPA 2.0 |
 63 | Method javax.persistence.criteria.From Join join( String attributeName ) Create an inner join to the specified attribute. Parameters: attributeName - name of the attribute for the target of the join Returns: the resulting join Throws: IllegalArgumentException - if attribute of the given name does not exist Since: JPA 2.0 |
 62 | Method javax.persistence.criteria.From CollectionJoin join( CollectionAttribute collection ) Create an inner join to the specified Collection-valued attribute. Parameters: collection - target of the join Returns: the resulting join Since: JPA 2.0 |
 62 | Method javax.persistence.criteria.From ListJoin join( ListAttribute list ) Create an inner join to the specified List-valued attribute. Parameters: list - target of the join Returns: the resulting join Since: JPA 2.0 |
 62 | Method javax.persistence.criteria.From MapJoin join( MapAttribute map ) Create an inner join to the specified Map-valued attribute. Parameters: map - target of the join Returns: the resulting join Since: JPA 2.0 |
 62 | Method javax.persistence.criteria.From SetJoin join( SetAttribute set ) Create an inner join to the specified Set-valued attribute. Parameters: set - target of the join Returns: the resulting join Since: JPA 2.0 |
 62 | Annotation Element javax.jdo.annotations.Join Column[] columns Detail definition of the join column(s). This is needed for more than one join column. Returns: the join columns Default value: {} Since: JDO 2.1 |
 62 | Method javax.persistence.criteria.Join Attribute getAttribute() Return the metamodel attribute corresponding to the join. Returns: metamodel attribute corresponding to the join Since: JPA 2.0 |
 62 | Method javax.persistence.criteria.Join JoinType getJoinType() Return the join type. Returns: join type Since: JPA 2.0 |