Enum Class EditorEventName

java.lang.Object
java.lang.Enum<EditorEventName>
ca.phon.app.session.editor.EditorEventName
All Implemented Interfaces:
Serializable, Comparable<EditorEventName>, Constable

public enum EditorEventName extends Enum<EditorEventName>
Common event names for the editor event model
  • Enum Constant Details

    • MODIFICATION_EVENT

      public static final EditorEventName MODIFICATION_EVENT
      Modification event. Any event which starts with '_x_' will set the modified flag. This is a generic event that should only be used when all other events do not apply or when a new event is needed by a module.
    • EDITOR_SAVED_SESSION

      public static final EditorEventName EDITOR_SAVED_SESSION
    • EDITOR_RELOAD_FROM_DISK

      public static final EditorEventName EDITOR_RELOAD_FROM_DISK
    • EDITOR_CLOSING

      public static final EditorEventName EDITOR_CLOSING
    • EDITOR_FINISHED_LOADING

      public static final EditorEventName EDITOR_FINISHED_LOADING
    • RECORD_ADDED_EVT

      public static final EditorEventName RECORD_ADDED_EVT
    • RECORD_DELETED_EVT

      public static final EditorEventName RECORD_DELETED_EVT
    • RECORD_MOVED_EVT

      public static final EditorEventName RECORD_MOVED_EVT
    • RECORD_REFRESH_EVT

      public static final EditorEventName RECORD_REFRESH_EVT
    • SESSION_CHANGED_EVT

      public static final EditorEventName SESSION_CHANGED_EVT
    • RECORD_CHANGED_EVT

      public static final EditorEventName RECORD_CHANGED_EVT
    • SESSION_LOCATION_CHANGED_EVT

      public static final EditorEventName SESSION_LOCATION_CHANGED_EVT
    • SPEAKER_CHANGE_EVT

      public static final EditorEventName SPEAKER_CHANGE_EVT
    • TIER_CHANGE_EVT

      public static final EditorEventName TIER_CHANGE_EVT
    • TIER_CHANGED_EVT

      public static final EditorEventName TIER_CHANGED_EVT
    • RECORD_EXCLUDE_CHANGE_EVT

      public static final EditorEventName RECORD_EXCLUDE_CHANGE_EVT
    • GROUP_LIST_CHANGE_EVT

      public static final EditorEventName GROUP_LIST_CHANGE_EVT
    • SEGMENT_CHANGED_EVT

      public static final EditorEventName SEGMENT_CHANGED_EVT
      Change to current record's segment data: null
    • SEGMENT_PLAYBACK_EVENT

      public static final EditorEventName SEGMENT_PLAYBACK_EVENT
    • MODIFIED_FLAG_CHANGED

      public static final EditorEventName MODIFIED_FLAG_CHANGED
    • SEARCH_FINISHED_EVT

      public static final EditorEventName SEARCH_FINISHED_EVT
      Search completed event data:
    • FIND_REPLACE_RESULT_HIT

      public static final EditorEventName FIND_REPLACE_RESULT_HIT
      Event fired when a result is hit data: search result -
    • PARTICIPANT_CHANGED

      public static final EditorEventName PARTICIPANT_CHANGED
    • PARTICIPANT_ADDED

      public static final EditorEventName PARTICIPANT_ADDED
    • PARTICIPANT_REMOVED

      public static final EditorEventName PARTICIPANT_REMOVED
    • SESSION_DATE_CHANGED

      public static final EditorEventName SESSION_DATE_CHANGED
    • SESSION_MEDIA_CHANGED

      public static final EditorEventName SESSION_MEDIA_CHANGED
    • SESSION_LANG_CHANGED

      public static final EditorEventName SESSION_LANG_CHANGED
    • TIER_VIEW_CHANGED_EVT

      public static final EditorEventName TIER_VIEW_CHANGED_EVT
    • TIER_LOCK_CHANGED_EVT

      public static final EditorEventName TIER_LOCK_CHANGED_EVT
    • TASK_QUEUED

      public static final EditorEventName TASK_QUEUED
      A new background task was queued data: task - PhonTask
    • TASK_RUNNING

      public static final EditorEventName TASK_RUNNING
      A background task has started to run data: task - PhonTask
    • TASK_FINISHED

      public static final EditorEventName TASK_FINISHED
      A background task has finished data: task - PhonTask
    • TASK_PROGRESS

      public static final EditorEventName TASK_PROGRESS
      Task progress
    • TASK_ERROR

      public static final EditorEventName TASK_ERROR
      An error occurred during a task data: task - PhonTask
  • Method Details

    • values

      public static EditorEventName[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static EditorEventName valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getEventName

      public String getEventName()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<EditorEventName>