public interface OneToOne<T> extends Child<T>, OrmOneToOneCommType<T,OneToOne<T>,PrimaryKeyJoinColumn<OneToOne<T>>,JoinColumn<OneToOne<T>>,JoinTable<OneToOne<T>>,CascadeType<OneToOne<T>>>
one-to-one
xsd typeModifier and Type | Method and Description |
---|---|
JoinColumn<OneToOne<T>> |
createJoinColumn()
Creates a new
join-column element |
PrimaryKeyJoinColumn<OneToOne<T>> |
createPrimaryKeyJoinColumn()
Creates a new
primary-key-join-column element |
OneToOne<T> |
fetch(FetchType fetch)
Sets the
fetch attribute |
OneToOne<T> |
fetch(String fetch)
Sets the
fetch attribute |
List<JoinColumn<OneToOne<T>>> |
getAllJoinColumn()
Returns all
join-column elements |
List<PrimaryKeyJoinColumn<OneToOne<T>>> |
getAllPrimaryKeyJoinColumn()
Returns all
primary-key-join-column elements |
FetchType |
getFetch()
Returns the
fetch attribute |
String |
getFetchAsString()
Returns the
fetch attribute |
String |
getMappedBy()
Returns the
mapped-by attribute |
String |
getName()
Returns the
name attribute |
CascadeType<OneToOne<T>> |
getOrCreateCascade()
If not already created, a new
cascade element with the given value will be created. |
JoinColumn<OneToOne<T>> |
getOrCreateJoinColumn()
If not already created, a new
join-column element will be created and returned. |
JoinTable<OneToOne<T>> |
getOrCreateJoinTable()
If not already created, a new
join-table element with the given value will be created. |
PrimaryKeyJoinColumn<OneToOne<T>> |
getOrCreatePrimaryKeyJoinColumn()
If not already created, a new
primary-key-join-column element will be created and returned. |
String |
getTargetEntity()
Returns the
target-entity attribute |
Boolean |
isOptional()
Returns the
optional attribute |
OneToOne<T> |
mappedBy(String mappedBy)
Sets the
mapped-by attribute |
OneToOne<T> |
name(String name)
Sets the
name attribute |
OneToOne<T> |
optional(Boolean optional)
Sets the
optional attribute |
OneToOne<T> |
removeAllJoinColumn()
Removes all
join-column elements |
OneToOne<T> |
removeAllPrimaryKeyJoinColumn()
Removes all
primary-key-join-column elements |
OneToOne<T> |
removeCascade()
Removes the
cascade element |
OneToOne<T> |
removeFetch()
Removes the
fetch attribute |
OneToOne<T> |
removeJoinTable()
Removes the
join-table element |
OneToOne<T> |
removeMappedBy()
Removes the
mapped-by attribute |
OneToOne<T> |
removeName()
Removes the
name attribute |
OneToOne<T> |
removeOptional()
Removes the
optional attribute |
OneToOne<T> |
removeTargetEntity()
Removes the
target-entity attribute |
OneToOne<T> |
targetEntity(String targetEntity)
Sets the
target-entity attribute |
PrimaryKeyJoinColumn<OneToOne<T>> getOrCreatePrimaryKeyJoinColumn()
primary-key-join-column
element will be created and returned.
Otherwise, the first existing primary-key-join-column
element will be returned.primary-key-join-column
PrimaryKeyJoinColumn<OneToOne<T>> createPrimaryKeyJoinColumn()
primary-key-join-column
elementPrimaryKeyJoinColumn>
List<PrimaryKeyJoinColumn<OneToOne<T>>> getAllPrimaryKeyJoinColumn()
primary-key-join-column
elementsprimary-key-join-column
OneToOne<T> removeAllPrimaryKeyJoinColumn()
primary-key-join-column
elementsPrimaryKeyJoinColumn>
JoinColumn<OneToOne<T>> getOrCreateJoinColumn()
join-column
element will be created and returned.
Otherwise, the first existing join-column
element will be returned.join-column
JoinColumn<OneToOne<T>> createJoinColumn()
join-column
elementJoinColumn>
List<JoinColumn<OneToOne<T>>> getAllJoinColumn()
join-column
elementsjoin-column
OneToOne<T> removeAllJoinColumn()
join-column
elementsJoinColumn>
JoinTable<OneToOne<T>> getOrCreateJoinTable()
join-table
element with the given value will be created.
Otherwise, the existing join-table
element will be returned.JoinTable>
OneToOne<T> removeJoinTable()
join-table
elementOneToOne
CascadeType<OneToOne<T>> getOrCreateCascade()
cascade
element with the given value will be created.
Otherwise, the existing cascade
element will be returned.CascadeType>
OneToOne<T> removeCascade()
cascade
elementOneToOne
OneToOne<T> name(String name)
name
attributename
- the value for the attribute name
OneToOne
String getName()
name
attributename
OneToOne<T> removeName()
name
attributeOneToOne
OneToOne<T> targetEntity(String targetEntity)
target-entity
attributetargetEntity
- the value for the attribute target-entity
OneToOne
String getTargetEntity()
target-entity
attributetarget-entity
OneToOne<T> removeTargetEntity()
target-entity
attributeOneToOne
OneToOne<T> fetch(FetchType fetch)
fetch
attributefetch
- the value for the attribute fetch
OneToOne
OneToOne<T> fetch(String fetch)
fetch
attributefetch
- the value for the attribute fetch
OneToOne
FetchType getFetch()
fetch
attributefetch
String getFetchAsString()
fetch
attributefetch
OneToOne<T> removeFetch()
fetch
attributeOneToOne
OneToOne<T> optional(Boolean optional)
optional
attributeoptional
- the value for the attribute optional
OneToOne
Boolean isOptional()
optional
attributeoptional
OneToOne<T> removeOptional()
optional
attributeOneToOne
OneToOne<T> mappedBy(String mappedBy)
mapped-by
attributemappedBy
- the value for the attribute mapped-by
OneToOne
String getMappedBy()
mapped-by
attributemapped-by
Copyright © 2024 JBoss by Red Hat. All rights reserved.