@Entity @Indexed(index="FullText") @ClassBridge(name="details", impl=DetailsFieldBridge.class, index=UN_TOKENIZED, store=NO) public class ImagingEnvironment extends java.lang.Object implements java.io.Serializable, IObject, IMutable
Modifier and Type | Class and Description |
---|---|
static class |
ImagingEnvironment.Details |
Modifier and Type | Field and Description |
---|---|
protected java.util.Map<java.lang.String,java.lang.Object> |
_dynamicFields |
protected boolean |
_loaded |
protected Pressure |
airPressure |
static java.lang.String |
AIRPRESSURE |
protected java.lang.Double |
co2percent |
static java.lang.String |
CO2PERCENT |
protected Details |
details |
static java.lang.String |
DETAILS |
static java.lang.String |
EVENT_FILTER |
static java.util.Set<java.lang.String> |
FIELDS |
static java.lang.String |
GROUP_FILTER |
protected java.lang.Double |
humidity |
static java.lang.String |
HUMIDITY |
protected java.lang.Long |
id |
static java.lang.String |
ID |
protected java.util.List<NamedValue> |
map |
static java.lang.String |
MAP |
static java.lang.String |
OWNER_FILTER |
static java.lang.String |
PERMS_FILTER |
protected Temperature |
temperature |
static java.lang.String |
TEMPERATURE |
protected java.lang.Integer |
version |
static java.lang.String |
VERSION |
Modifier | Constructor and Description |
---|---|
|
ImagingEnvironment() |
protected |
ImagingEnvironment(java.lang.Long id) |
|
ImagingEnvironment(java.lang.Long id,
boolean loaded)
Main constructor.
|
Modifier and Type | Method and Description |
---|---|
boolean |
acceptFilter(Filter __filter) |
protected void |
errorIfUnloaded() |
java.util.Set<java.lang.String> |
fields()
returns a Set of field names that belong to this class
|
Pressure |
getAirPressure()
Enum-mapped unit-based field ome.model.acquisition.ImagingEnvironment.airPressure (ome.model.units.Pressure)
|
java.lang.Double |
getCo2percent()
Simple field ome.model.acquisition.ImagingEnvironment.co2percent (java.lang.Double)
|
Details |
getDetails()
The details of this object correspond to low-level system
information.
|
GraphHolder |
getGraphHolder()
retrieves the
GraphHolder for this entity. |
java.lang.Double |
getHumidity()
Simple field ome.model.acquisition.ImagingEnvironment.humidity (java.lang.Double)
|
java.lang.Long |
getId()
The DB unique identifier for this object.
|
java.util.List<NamedValue> |
getMap() |
Temperature |
getTemperature()
Enum-mapped unit-based field ome.model.acquisition.ImagingEnvironment.temperature (ome.model.units.Temperature)
|
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() |
ImagingEnvironment |
newInstance() |
ImagingEnvironment |
proxy() |
void |
putAt(java.lang.String field,
java.lang.Object value)
stores a value in this instance.
|
java.lang.Object |
retrieve(java.lang.String field)
retrieves a value from this instance.
|
void |
setAirPressure(Pressure airPressure) |
void |
setCo2percent(java.lang.Double co2percent) |
protected void |
setDetails(Details details)
Use the
Details.copy(ome.model.internal.Details)
or Details.shallowCopy(ome.model.internal.Details)
methods to set the ImagingEnvironment.Details instance instead. |
void |
setHumidity(java.lang.Double humidity) |
void |
setId(java.lang.Long id)
usually unneeded.
|
void |
setMap(java.util.List<NamedValue> map) |
void |
setTemperature(Temperature temperature) |
void |
setVersion(java.lang.Integer version)
use with caution.
|
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.
|
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 Temperature temperature
protected Pressure airPressure
protected java.lang.Double humidity
protected java.lang.Double co2percent
protected java.util.List<NamedValue> map
protected Details details
public static final java.lang.String TEMPERATURE
public static final java.lang.String AIRPRESSURE
public static final java.lang.String HUMIDITY
public static final java.lang.String CO2PERCENT
public static final java.lang.String MAP
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 ImagingEnvironment()
protected ImagingEnvironment(java.lang.Long id)
public ImagingEnvironment(java.lang.Long id, boolean loaded)
@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 Temperature getTemperature()
public void setTemperature(Temperature temperature)
public Pressure getAirPressure()
public void setAirPressure(Pressure airPressure)
@Field(index=UN_TOKENIZED) @Field(index=UN_TOKENIZED,name="combined_fields") public java.lang.Double getHumidity()
public void setHumidity(java.lang.Double humidity)
@Field(index=UN_TOKENIZED) @Field(index=UN_TOKENIZED,name="combined_fields") public java.lang.Double getCo2percent()
public void setCo2percent(java.lang.Double co2percent)
public void setMap(java.util.List<NamedValue> map)
public java.util.List<NamedValue> getMap()
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 ImagingEnvironment.Details
instance instead.public boolean isValid()
IObject
Validation.isValid()
public Validation validate()
IObject
Validation
object.public ImagingEnvironment newInstance()
public ImagingEnvironment 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.