Package | Description |
---|---|
unary_many_association |
Modifier and Type | Field and Description |
---|---|
static NumericExpressionField<B> |
B.Attribute.contactFrequencyPerYear |
static NumericExpressionField<B> |
B.Attribute.id |
Modifier and Type | Method and Description |
---|---|
B |
B.cancelSignal(Event<B> event) |
B |
B.cancelSignal(String eventSignatureKey) |
static B |
B.create(CreationEvent<B> creationEvent)
Static creator method using CreationEvent.
|
static B |
B.create(Integer id)
Static creator method using id.
|
B |
B.delete()
Same as this.remove()
|
B |
B.event(Event<B> event)
Synchronously runs the on entry procedure associated
with this event and also any signals to self that are
made during the procedure.
|
B |
B.load() |
B |
B.load(javax.persistence.EntityManager em)
Does a merge then a refresh and returns a new updated merged instance.
|
B |
B.merge(javax.persistence.EntityManager em)
Same as EntityManager.merge() except allows method chaining.
|
B |
B.persist()
Same as
persist(Context.em()) . |
B |
B.persist(javax.persistence.EntityManager em)
Same as EntityManager.persist() except allows method chaining.
|
B |
B.refresh(javax.persistence.EntityManager em)
Same as EntityManager.refresh() except inverted to facilitate method chaining.
|
B |
B.remove()
Same as EntityManager.remove() except inverted to facilitate method chaining.
|
B |
B.remove(javax.persistence.EntityManager em)
Same as EntityManager.remove() except inverted to facilitate method chaining.
|
B |
B.setContactFrequencyPerYear_(Double contactFrequencyPerYear)
Sets the attribute to the given value and returns this
(enables method chaining).
|
B |
B.setId_(Integer id) |
B |
B.signal(Event<B> event)
Asychronously queues the given signal against this entity for processing.
|
B |
B.signal(Event<B> event,
scala.concurrent.duration.Duration delay)
Asychronously queues the given signal against this entity for processing
after the delay specified.
|
B |
B.signal(Event<B> event,
long time)
Asychronously queues the given signal against this entity for processing
at the epoch time in ms specified.
|
Modifier and Type | Method and Description |
---|---|
static com.google.common.base.Optional<B> |
B.find(Integer id) |
static SelectBuilder<B> |
B.select() |
static SelectBuilder<B> |
B.select(BooleanExpression<B> where) |
Modifier and Type | Method and Description |
---|---|
B |
B.cancelSignal(Event<B> event) |
static B |
B.create(CreationEvent<B> creationEvent)
Static creator method using CreationEvent.
|
B |
B.event(Event<B> 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<B> |
B.select(BooleanExpression<B> where) |
B |
B.signal(Event<B> event)
Asychronously queues the given signal against this entity for processing.
|
B |
B.signal(Event<B> event,
scala.concurrent.duration.Duration delay)
Asychronously queues the given signal against this entity for processing
after the delay specified.
|
B |
B.signal(Event<B> 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.