Object
AbstractMetadata
ModifiableMetadata
ISOMetadata
DefaultEvent
- All Implemented Interfaces:
Serializable
,Emptiable
,LenientComparable
,IdentifiedObject
,Event
Identification of a significant collection point within an operation.
The following properties are mandatory in a well-formed metadata according ISO 19115:
MI_Event
├─identifier……
Event name or number.
│ └─code…………
Alphanumeric value identifying an instance in the namespace.
├─trigger……………
Initiator of the event.
├─context……………
Meaning of the event.
├─sequence…………
Relative time ordering of the event.
└─time……………………
Time the event occurred.Limitations
- Instances of this class are not synchronized for multi-threading. Synchronization, if needed, is caller's responsibility.
- Serialized objects of this class are not guaranteed to be compatible with future Apache SIS releases.
Serialization support is appropriate for short term storage or RMI between applications running the
same version of Apache SIS. For long term storage, use
XML
instead.
- Since:
- 0.3
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class ModifiableMetadata
ModifiableMetadata.State
-
Field Summary
Fields inherited from class ISOMetadata
identifiers
-
Constructor Summary
ConstructorDescriptionConstructs an initially empty acquisition information.DefaultEvent
(Event object) Constructs a new instance initialized with the values from the specified metadata object. -
Method Summary
Modifier and TypeMethodDescriptionstatic DefaultEvent
castOrCopy
(Event object) Returns a SIS metadata implementation with the values of the given arbitrary implementation.Meaning of the event.Returns the objective or objectives satisfied by an event.Returns the event name or number.Returns the pass during which an event occurs.Collection
<? extends Instrument> Returns the instrument or instruments for which the event is meaningful.Returns the relative time ordering of the event.getTime()
Returns the time the event occurred.Returns the initiator of the event.void
setContext
(Context newValue) Sets the meaning of the event.void
setExpectedObjectives
(Collection<? extends Objective> newValues) Sets the objective or objectives satisfied by an event.void
setIdentifier
(Identifier newValue) Sets the event name or number.void
setRelatedPass
(PlatformPass newValue) Sets the pass during which an event occurs.void
setRelatedSensors
(Collection<? extends Instrument> newValues) Sets the instrument or instruments for which the event is meaningful.void
setSequence
(Sequence newValue) Sets the relative time ordering of the event.void
Sets the time the event occurred.void
setTrigger
(Trigger newValue) Sets the initiator of the event.Methods inherited from class ISOMetadata
getIdentifierMap, getIdentifiers, getStandard, transitionTo
Methods inherited from class ModifiableMetadata
checkWritePermission, collectionType, copyCollection, copyList, copyMap, copySet, deepCopy, nonNullCollection, nonNullList, nonNullMap, nonNullSet, singleton, state, writeCollection, writeList, writeMap, writeSet
Methods inherited from class AbstractMetadata
asMap, asTreeTable, equals, equals, getInterface, hashCode, isEmpty, prune, toString
-
Constructor Details
-
DefaultEvent
public DefaultEvent()Constructs an initially empty acquisition information. -
DefaultEvent
Constructs a new instance initialized with the values from the specified metadata object. This is a shallow copy constructor, because the other metadata contained in the given object are not recursively copied.- Parameters:
object
- the metadata to copy values from, ornull
if none.- See Also:
-
-
Method Details
-
castOrCopy
Returns a SIS metadata implementation with the values of the given arbitrary implementation. This method performs the first applicable action in the following choices:- If the given object is
null
, then this method returnsnull
. - Otherwise if the given object is already an instance of
DefaultEvent
, then it is returned unchanged. - Otherwise a new
DefaultEvent
instance is created using the copy constructor and returned. Note that this is a shallow copy operation, because the other metadata contained in the given object are not recursively copied.
- Parameters:
object
- the object to get as a SIS implementation, ornull
if none.- Returns:
- a SIS implementation containing the values of the given object (may be the
given object itself), or
null
if the argument was null.
- If the given object is
-
getIdentifier
Returns the event name or number.- Specified by:
getIdentifier
in interfaceEvent
- Overrides:
getIdentifier
in classISOMetadata
- Returns:
- event name or number, or
null
.
-
setIdentifier
Sets the event name or number.- Overrides:
setIdentifier
in classISOMetadata
- Parameters:
newValue
- the event identifier value.
-
getTrigger
Returns the initiator of the event.- Specified by:
getTrigger
in interfaceEvent
- Returns:
- initiator of the event, or
null
.
-
setTrigger
Sets the initiator of the event.- Parameters:
newValue
- the new trigger value.
-
getContext
Meaning of the event.- Specified by:
getContext
in interfaceEvent
- Returns:
- meaning of the event, or
null
.
-
setContext
Sets the meaning of the event.- Parameters:
newValue
- the new context value.
-
getSequence
Returns the relative time ordering of the event.- Specified by:
getSequence
in interfaceEvent
- Returns:
- relative time ordering, or
null
.
-
setSequence
Sets the relative time ordering of the event.- Parameters:
newValue
- the new sequence value.
-
getTime
Returns the time the event occurred. -
setTime
Sets the time the event occurred.- Parameters:
newValue
- the new time value.
-
getExpectedObjectives
Returns the objective or objectives satisfied by an event.- Specified by:
getExpectedObjectives
in interfaceEvent
- Returns:
- objectives satisfied by an event.
-
setExpectedObjectives
Sets the objective or objectives satisfied by an event.- Parameters:
newValues
- the new expected objectives values.
-
getRelatedPass
Returns the pass during which an event occurs.null
if unspecified.- Specified by:
getRelatedPass
in interfaceEvent
- Returns:
- pass during which an event occurs, or
null
.
-
setRelatedPass
Sets the pass during which an event occurs.- Parameters:
newValue
- the new platform pass value.
-
getRelatedSensors
Returns the instrument or instruments for which the event is meaningful.- Specified by:
getRelatedSensors
in interfaceEvent
- Returns:
- instruments for which the event is meaningful.
-
setRelatedSensors
Sets the instrument or instruments for which the event is meaningful.- Parameters:
newValues
- the new instrument values.
-