Package | Description |
---|---|
many_to_many_association_two |
Modifier and Type | Field and Description |
---|---|
static StringExpressionField<D> |
D.Attribute.a_R2_id |
static StringExpressionField<D> |
D.Attribute.b_R2_id |
static StringExpressionField<D> |
D.Attribute.description |
static StringExpressionField<D> |
D.Attribute.id |
Modifier and Type | Method and Description |
---|---|
D |
D.cancelSignal(Event<D> event) |
D |
D.cancelSignal(String eventSignatureKey) |
static D |
D.create(CreationEvent<D> creationEvent)
Static creator method using CreationEvent.
|
static D |
D.create(String id)
Static creator method using id.
|
D |
D.delete()
Same as this.remove()
|
D |
D.event(Event<D> event)
Synchronously runs the on entry procedure associated
with this event and also any signals to self that are
made during the procedure.
|
D |
D.load() |
D |
D.load(javax.persistence.EntityManager em)
Does a merge then a refresh and returns a new updated merged instance.
|
D |
D.merge(javax.persistence.EntityManager em)
Same as EntityManager.merge() except allows method chaining.
|
D |
D.persist()
Same as
persist(Context.em()) . |
D |
D.persist(javax.persistence.EntityManager em)
Same as EntityManager.persist() except allows method chaining.
|
D |
D.refresh(javax.persistence.EntityManager em)
Same as EntityManager.refresh() except inverted to facilitate method chaining.
|
D |
D.relateAcrossR2(A a_R2)
MANY D characterizes ONE A
|
D |
D.relateAcrossR2(B b_R2)
MANY D is characterized by ONE B
|
D |
D.remove()
Same as EntityManager.remove() except inverted to facilitate method chaining.
|
D |
D.remove(javax.persistence.EntityManager em)
Same as EntityManager.remove() except inverted to facilitate method chaining.
|
D |
D.setDescription_(String description)
Sets the attribute to the given value and returns this
(enables method chaining).
|
D |
D.setId_(String id) |
D |
D.signal(Event<D> event)
Asychronously queues the given signal against this entity for processing.
|
D |
D.signal(Event<D> event,
scala.concurrent.duration.Duration delay)
Asychronously queues the given signal against this entity for processing
after the delay specified.
|
D |
D.signal(Event<D> event,
long time)
Asychronously queues the given signal against this entity for processing
at the epoch time in ms specified.
|
D |
D.unrelateAcrossR2(A a_R2)
MANY D characterizes ONE A
|
D |
D.unrelateAcrossR2(B b_R2)
MANY D is characterized by ONE B
|
Modifier and Type | Method and Description |
---|---|
static com.google.common.base.Optional<D> |
D.find(String id) |
Set<D> |
A.getD_R2()
Getter.
|
Set<D> |
B.getD_R2()
Getter.
|
static SelectBuilder<D> |
D.select() |
static SelectBuilder<D> |
D.select(BooleanExpression<D> where) |
Modifier and Type | Method and Description |
---|---|
A |
A.relateAcrossR2(D d_R2)
ONE A characterizes MANY D
|
B |
B.relateAcrossR2(D d_R2)
ONE B is characterized by MANY D
|
A |
A.unrelateAcrossR2(D d_R2)
ONE A characterizes MANY D
|
B |
B.unrelateAcrossR2(D d_R2)
ONE B is characterized by MANY D
|
Modifier and Type | Method and Description |
---|---|
D |
D.cancelSignal(Event<D> event) |
static D |
D.create(CreationEvent<D> creationEvent)
Static creator method using CreationEvent.
|
D |
D.event(Event<D> event)
Synchronously runs the on entry procedure associated
with this event and also any signals to self that are
made during the procedure.
|
static SelectBuilder<D> |
D.select(BooleanExpression<D> where) |
void |
A.setD_R2(Set<D> d_R2)
Setter.
|
void |
B.setD_R2(Set<D> d_R2)
Setter.
|
D |
D.signal(Event<D> event)
Asychronously queues the given signal against this entity for processing.
|
D |
D.signal(Event<D> event,
scala.concurrent.duration.Duration delay)
Asychronously queues the given signal against this entity for processing
after the delay specified.
|
D |
D.signal(Event<D> event,
long time)
Asychronously queues the given signal against this entity for processing
at the epoch time in ms specified.
|
Copyright © 2012–2022. All rights reserved.