Package | Description |
---|---|
javax.persistence.criteria |
Java Persistence Criteria API
|
javax.persistence.metamodel |
Java Persistence Metamodel API
|
Modifier and Type | Method | Description |
---|---|---|
SetAttribute<? super Z,E> |
SetJoin.getModel() |
Return the metamodel representation for the set attribute.
|
Modifier and Type | Method | Description |
---|---|---|
<Y> SetJoin<X,Y> |
From.join(SetAttribute<? super X,Y> set) |
Create an inner join to the specified Set-valued attribute.
|
<Y> SetJoin<X,Y> |
From.join(SetAttribute<? super X,Y> set,
JoinType jt) |
Create a join to the specified Set-valued attribute using
the given join type.
|
Modifier and Type | Method | Description |
---|---|---|
SetAttribute<X,?> |
ManagedType.getDeclaredSet(java.lang.String name) |
Return the Set-valued attribute declared by the managed type
that corresponds to the specified name.
|
<E> SetAttribute<X,E> |
ManagedType.getDeclaredSet(java.lang.String name,
java.lang.Class<E> elementType) |
Return the Set-valued attribute declared by the managed type
that corresponds to the specified name and Java element type.
|
SetAttribute<? super X,?> |
ManagedType.getSet(java.lang.String name) |
Return the Set-valued attribute of the managed type that
corresponds to the specified name.
|
<E> SetAttribute<? super X,E> |
ManagedType.getSet(java.lang.String name,
java.lang.Class<E> elementType) |
Return the Set-valued attribute of the managed type that
corresponds to the specified name and Java element type.
|
Copyright © 2018. All rights reserved.