Class DefaultEvent

All Implemented Interfaces:
Serializable, Emptiable, LenientComparable, IdentifiedObject, org.opengis.metadata.acquisition.Event

public class DefaultEvent extends ISOMetadata implements org.opengis.metadata.acquisition.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
Version:
1.0
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      Serial number for inter-operability with different versions.
      See Also:
    • trigger

      private org.opengis.metadata.acquisition.Trigger trigger
      Initiator of the event.
    • context

      private org.opengis.metadata.acquisition.Context context
      Meaning of the event.
    • sequence

      private org.opengis.metadata.acquisition.Sequence sequence
      Relative time ordering of the event.
    • time

      private long time
      Time the event occurred, or Long.MIN_VALUE if none.
    • expectedObjectives

      private Collection<org.opengis.metadata.acquisition.Objective> expectedObjectives
      Objective or objectives satisfied by an event.
    • relatedPass

      private org.opengis.metadata.acquisition.PlatformPass relatedPass
      Pass during which an event occurs.
    • relatedSensors

      private Collection<org.opengis.metadata.acquisition.Instrument> relatedSensors
      Instrument or instruments for which the event is meaningful.
  • Constructor Details

    • DefaultEvent

      public DefaultEvent()
      Constructs an initially empty acquisition information.
    • DefaultEvent

      public DefaultEvent(org.opengis.metadata.acquisition.Event object)
      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, or null if none.
      See Also:
  • Method Details

    • castOrCopy

      public static DefaultEvent castOrCopy(org.opengis.metadata.acquisition.Event object)
      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 returns null.
      • 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, or null 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.
    • getIdentifier

      public org.opengis.metadata.Identifier getIdentifier()
      Returns the event name or number.
      Specified by:
      getIdentifier in interface org.opengis.metadata.acquisition.Event
      Overrides:
      getIdentifier in class ISOMetadata
      Returns:
      event name or number, or null.
    • setIdentifier

      public void setIdentifier(org.opengis.metadata.Identifier newValue)
      Sets the event name or number.
      Overrides:
      setIdentifier in class ISOMetadata
      Parameters:
      newValue - the event identifier value.
    • getTrigger

      public org.opengis.metadata.acquisition.Trigger getTrigger()
      Returns the initiator of the event.
      Specified by:
      getTrigger in interface org.opengis.metadata.acquisition.Event
      Returns:
      initiator of the event, or null.
    • setTrigger

      public void setTrigger(org.opengis.metadata.acquisition.Trigger newValue)
      Sets the initiator of the event.
      Parameters:
      newValue - the new trigger value.
    • getContext

      public org.opengis.metadata.acquisition.Context getContext()
      Meaning of the event.
      Specified by:
      getContext in interface org.opengis.metadata.acquisition.Event
      Returns:
      meaning of the event, or null.
    • setContext

      public void setContext(org.opengis.metadata.acquisition.Context newValue)
      Sets the meaning of the event.
      Parameters:
      newValue - the new context value.
    • getSequence

      public org.opengis.metadata.acquisition.Sequence getSequence()
      Returns the relative time ordering of the event.
      Specified by:
      getSequence in interface org.opengis.metadata.acquisition.Event
      Returns:
      relative time ordering, or null.
    • setSequence

      public void setSequence(org.opengis.metadata.acquisition.Sequence newValue)
      Sets the relative time ordering of the event.
      Parameters:
      newValue - the new sequence value.
    • getTime

      public Date getTime()
      Returns the time the event occurred.
      Specified by:
      getTime in interface org.opengis.metadata.acquisition.Event
      Returns:
      time the event occurred, or null.
    • setTime

      public void setTime(Date newValue)
      Sets the time the event occurred.
      Parameters:
      newValue - the new time value.
    • getExpectedObjectives

      public Collection<org.opengis.metadata.acquisition.Objective> getExpectedObjectives()
      Returns the objective or objectives satisfied by an event.
      Specified by:
      getExpectedObjectives in interface org.opengis.metadata.acquisition.Event
      Returns:
      objectives satisfied by an event.
    • setExpectedObjectives

      public void setExpectedObjectives(Collection<? extends org.opengis.metadata.acquisition.Objective> newValues)
      Sets the objective or objectives satisfied by an event.
      Parameters:
      newValues - the new expected objectives values.
    • getRelatedPass

      public org.opengis.metadata.acquisition.PlatformPass getRelatedPass()
      Returns the pass during which an event occurs. null if unspecified.
      Specified by:
      getRelatedPass in interface org.opengis.metadata.acquisition.Event
      Returns:
      pass during which an event occurs, or null.
    • setRelatedPass

      public void setRelatedPass(org.opengis.metadata.acquisition.PlatformPass newValue)
      Sets the pass during which an event occurs.
      Parameters:
      newValue - the new platform pass value.
    • getRelatedSensors

      public Collection<? extends org.opengis.metadata.acquisition.Instrument> getRelatedSensors()
      Returns the instrument or instruments for which the event is meaningful.
      Specified by:
      getRelatedSensors in interface org.opengis.metadata.acquisition.Event
      Returns:
      instruments for which the event is meaningful.
    • setRelatedSensors

      public void setRelatedSensors(Collection<? extends org.opengis.metadata.acquisition.Instrument> newValues)
      Sets the instrument or instruments for which the event is meaningful.
      Parameters:
      newValues - the new instrument values.