@Entity @Indexed(index="FullText") @ClassBridge(name="details", impl=DetailsFieldBridge.class, index=UN_TOKENIZED, store=NO) public class MicrobeamManipulation extends java.lang.Object implements java.io.Serializable, IObject, IMutable
Modifier and Type | Class and Description |
---|---|
static class |
MicrobeamManipulation.Details |
Modifier and Type | Field and Description |
---|---|
protected java.util.Map<java.lang.String,java.lang.Object> |
_dynamicFields |
protected boolean |
_loaded |
protected java.lang.String |
description |
static java.lang.String |
DESCRIPTION |
protected Details |
details |
static java.lang.String |
DETAILS |
static java.lang.String |
EVENT_FILTER |
static java.lang.String |
EVENT_FILTER_LIGHTSOURCESETTINGS |
protected Experiment |
experiment |
static java.lang.String |
EXPERIMENT |
static java.util.Set<java.lang.String> |
FIELDS |
static java.lang.String |
GROUP_FILTER |
static java.lang.String |
GROUP_FILTER_LIGHTSOURCESETTINGS |
protected java.lang.Long |
id |
static java.lang.String |
ID |
protected java.util.Set<LightSettings> |
lightSourceSettings |
static java.lang.String |
LIGHTSOURCESETTINGS |
static java.lang.String |
OWNER_FILTER |
static java.lang.String |
OWNER_FILTER_LIGHTSOURCESETTINGS |
static java.lang.String |
PERMS_FILTER |
static java.lang.String |
PERMS_FILTER_LIGHTSOURCESETTINGS |
protected MicrobeamManipulationType |
type |
static java.lang.String |
TYPE |
protected java.lang.Integer |
version |
static java.lang.String |
VERSION |
Modifier | Constructor and Description |
---|---|
|
MicrobeamManipulation() |
protected |
MicrobeamManipulation(java.lang.Long id) |
|
MicrobeamManipulation(java.lang.Long id,
boolean loaded)
Main constructor.
|
|
MicrobeamManipulation(MicrobeamManipulationType _type,
Experiment _experiment) |
Modifier and Type | Method and Description |
---|---|
boolean |
acceptFilter(Filter __filter) |
void |
addLightSettings(LightSettings target)
use instead of setLightSourceSettings .
|
void |
addLightSettingsSet(java.util.Collection<LightSettings> targets)
use like addLightSettings.
|
void |
clearLightSourceSettings()
clears the set.
|
<E> java.util.List<E> |
collectLightSourceSettings(CBlock<E> block)
takes a CBlock and calls the block once for each ome.model.acquisition.LightSettings while
collecting the results.
|
protected void |
errorIfUnloaded() |
java.util.Set<java.lang.String> |
fields()
returns a Set of field names that belong to this class
|
java.lang.String |
getDescription()
Simple field ome.model.experiment.MicrobeamManipulation.description (java.lang.String)
|
Details |
getDetails()
The details of this object correspond to low-level system
information.
|
Experiment |
getExperiment()
Many-to-one field ome.model.experiment.MicrobeamManipulation.experiment (ome.model.experiment.Experiment)
|
GraphHolder |
getGraphHolder()
retrieves the
GraphHolder for this entity. |
java.lang.Long |
getId()
The DB unique identifier for this object.
|
protected java.util.Set<LightSettings> |
getLightSourceSettings()
returns lightSourceSettings .
|
MicrobeamManipulationType |
getType()
Many-to-one field ome.model.experiment.MicrobeamManipulation.type (ome.model.enums.MicrobeamManipulationType)
|
java.lang.Integer |
getVersion()
This version number is controlled by the database for optimisitic
locking.
|
boolean |
isLoaded()
transient field (not stored in the DB) which specifies whether this
object has been loaded from the DB or is only a wrapper around the ID.
|
boolean |
isValid()
calls the class-specific validator for this instance and returns the
value from
Validation.isValid() |
java.util.Iterator<LightSettings> |
iterateLightSourceSettings()
should be used rather than accessing the lightSourceSettings set directly.
|
MicrobeamManipulation |
newInstance() |
MicrobeamManipulation |
proxy() |
void |
putAt(java.lang.String field,
java.lang.Object value)
stores a value in this instance.
|
void |
removeLightSettings(LightSettings target)
removes a single element from this set and makes the inverse call on ome.model.acquisition.LightSettings
|
void |
removeLightSettingsSet(java.util.Collection<LightSettings> targets)
use like removeLightSettings
|
java.lang.Object |
retrieve(java.lang.String field)
retrieves a value from this instance.
|
void |
setDescription(java.lang.String description) |
protected void |
setDetails(Details details)
Use the
Details.copy(ome.model.internal.Details)
or Details.shallowCopy(ome.model.internal.Details)
methods to set the MicrobeamManipulation.Details instance instead. |
void |
setExperiment(Experiment experiment) |
void |
setId(java.lang.Long id)
usually unneeded.
|
protected void |
setLightSourceSettings(java.util.Set<LightSettings> lightSourceSettings)
setter for lightSourceSettings should be avoided.
|
void |
setType(MicrobeamManipulationType type) |
void |
setVersion(java.lang.Integer version)
use with caution.
|
int |
sizeOfLightSourceSettings()
returns the size of lightSourceSettings.
|
protected void |
throwNullCollectionException(java.lang.String propertyName) |
java.lang.String |
toString() |
void |
unload()
set the loaded field to false, and set all non-ID fields to null.
|
java.util.Collection<LightSettings> |
unmodifiableLightSourceSettings()
Returns an unmodifiable collection-view
|
Validation |
validate()
calls the class-specific validator for this instance and returns the
Validation object. |
public static final java.lang.String OWNER_FILTER
public static final java.lang.String GROUP_FILTER
public static final java.lang.String EVENT_FILTER
public static final java.lang.String PERMS_FILTER
public static final java.lang.String ID
protected java.lang.Long id
public static final java.lang.String VERSION
protected java.lang.Integer version
protected MicrobeamManipulationType type
protected java.util.Set<LightSettings> lightSourceSettings
public static final java.lang.String OWNER_FILTER_LIGHTSOURCESETTINGS
public static final java.lang.String GROUP_FILTER_LIGHTSOURCESETTINGS
public static final java.lang.String EVENT_FILTER_LIGHTSOURCESETTINGS
public static final java.lang.String PERMS_FILTER_LIGHTSOURCESETTINGS
protected Experiment experiment
protected java.lang.String description
protected Details details
public static final java.lang.String TYPE
public static final java.lang.String LIGHTSOURCESETTINGS
public static final java.lang.String EXPERIMENT
public static final java.lang.String DESCRIPTION
public static final java.lang.String DETAILS
public static final java.util.Set<java.lang.String> FIELDS
protected java.util.Map<java.lang.String,java.lang.Object> _dynamicFields
protected boolean _loaded
public MicrobeamManipulation()
protected MicrobeamManipulation(java.lang.Long id)
public MicrobeamManipulation(java.lang.Long id, boolean loaded)
public MicrobeamManipulation(MicrobeamManipulationType _type, Experiment _experiment)
@DocumentId public java.lang.Long getId()
public void setId(java.lang.Long id)
IObject
public java.lang.Integer getVersion()
getVersion
in interface IMutable
public void setVersion(java.lang.Integer version)
IMutable
setVersion
in interface IMutable
version
- Value for this objects version.public MicrobeamManipulationType getType()
public void setType(MicrobeamManipulationType type)
protected java.util.Set<LightSettings> getLightSourceSettings()
protected void setLightSourceSettings(java.util.Set<LightSettings> lightSourceSettings)
public int sizeOfLightSourceSettings()
public java.util.Iterator<LightSettings> iterateLightSourceSettings()
EmptyIterator
. To test for a null collection,
see of sizeOfLightSourceSettings()
is less than zero.public java.util.Collection<LightSettings> unmodifiableLightSourceSettings()
public <E> java.util.List<E> collectLightSourceSettings(CBlock<E> block)
block == null
, then the
iterator values themselves are collected. This method uses
iterateLightSourceSettings()
internally and so will return a value
even if the underlying collection is null.public void addLightSettings(LightSettings target)
public void addLightSettingsSet(java.util.Collection<LightSettings> targets)
public void removeLightSettings(LightSettings target)
public void removeLightSettingsSet(java.util.Collection<LightSettings> targets)
public void clearLightSourceSettings()
public Experiment getExperiment()
public void setExperiment(Experiment experiment)
@Field(index=TOKENIZED) @Field(index=TOKENIZED,name="combined_fields") public java.lang.String getDescription()
public void setDescription(java.lang.String description)
public Details getDetails()
Details
type.getDetails
in interface IObject
protected void setDetails(Details details)
Details.copy(ome.model.internal.Details)
or Details.shallowCopy(ome.model.internal.Details)
methods to set the MicrobeamManipulation.Details
instance instead.public boolean isValid()
IObject
Validation.isValid()
public Validation validate()
IObject
Validation
object.public MicrobeamManipulation newInstance()
public MicrobeamManipulation proxy()
public boolean acceptFilter(Filter __filter)
acceptFilter
in interface Filterable
public java.lang.String toString()
toString
in class java.lang.Object
public java.util.Set<java.lang.String> fields()
IObject
public java.lang.Object retrieve(java.lang.String field)
IObject
field
which match a field of this instance will be delegated to the accessors.
Otherwise, values will be retrieved from a lazy-loaded map filled by
calls to IObject.putAt(String, Object)
public void putAt(java.lang.String field, java.lang.Object value)
IObject
field
which
match a field of this instance will be delegated to the accessors.
Otherwise, values will be stored in a lazy-loaded map.public boolean isLoaded()
IObject
protected void errorIfUnloaded()
public void unload()
IObject
public final GraphHolder getGraphHolder()
IObject
GraphHolder
for this entity. If the GraphHolder has
not been actively set, a new one will be instatiated.getGraphHolder
in interface IObject
protected void throwNullCollectionException(java.lang.String propertyName)
Version: 5.4.4-ice35-b82
Copyright © 2018 The University of Dundee & Open Microscopy Environment. All Rights Reserved.