Enum Class TerminatorType

java.lang.Object
java.lang.Enum<TerminatorType>
ca.phon.orthography.TerminatorType
All Implemented Interfaces:
Serializable, Comparable<TerminatorType>, Constable

public enum TerminatorType extends Enum<TerminatorType>
  • Enum Constant Details

    • PERIOD

      @Documentation("https://talkbank.org/manuals/CHAT.html#Period_Terminator") public static final TerminatorType PERIOD
    • QUESTION

      @Documentation("https://talkbank.org/manuals/CHAT.html#QuestionMark_Terminator") public static final TerminatorType QUESTION
    • EXCLAMATION

      @Documentation("https://talkbank.org/manuals/CHAT.html#ExclamationMark_Terminator") public static final TerminatorType EXCLAMATION
    • BROKEN_FOR_CODING

      @Documentation("https://talkbank.org/manuals/CHAT.html#TranscriptionBreak_Terminator") public static final TerminatorType BROKEN_FOR_CODING
    • TRAIL_OFF

      @Documentation("https://talkbank.org/manuals/CHAT.html#TrailingOff_Terminator") public static final TerminatorType TRAIL_OFF
    • TRAIL_OFF_QUESTION

      @Documentation("https://talkbank.org/manuals/CHAT.html#TrailingOffQuestion_Terminator") public static final TerminatorType TRAIL_OFF_QUESTION
    • QUESTION_EXCLAMATION

      @Documentation("https://talkbank.org/manuals/CHAT.html#QuestionExclamation_Terminator") public static final TerminatorType QUESTION_EXCLAMATION
    • INTERRUPTION

      @Documentation("https://talkbank.org/manuals/CHAT.html#Interruption_Terminator") public static final TerminatorType INTERRUPTION
    • INTERRUPTION_QUESTION

      @Documentation("https://talkbank.org/manuals/CHAT.html#QuestionInterruption_Terminator") public static final TerminatorType INTERRUPTION_QUESTION
    • SELF_INTERRUPTION

      @Documentation("https://talkbank.org/manuals/CHAT.html#SelfInterruption_Terminator") public static final TerminatorType SELF_INTERRUPTION
    • SELF_INTERRUPTION_QUESTION

      @Documentation("https://talkbank.org/manuals/CHAT.html#SelfInterruptedQuestion_Terminator") public static final TerminatorType SELF_INTERRUPTION_QUESTION
    • QUOTATION_NEXT_LINE

      @Documentation("https://talkbank.org/manuals/CHAT.html#QuotationFollows_Terminator") public static final TerminatorType QUOTATION_NEXT_LINE
    • QUOTATION_PRECEDES

      @Documentation("https://talkbank.org/manuals/CHAT.html#QuotationPrecedes_Terminator") public static final TerminatorType QUOTATION_PRECEDES
    • TECHNICAL_BREAK_TCU_CONTINUATION

      @Documentation("https://talkbank.org/manuals/CHAT.html#TechnicalBreakTCUContinuation_Terminator") public static final TerminatorType TECHNICAL_BREAK_TCU_CONTINUATION
    • NO_BREAK_TCU_CONTINUATION

      @Documentation("https://talkbank.org/manuals/CHAT.html#NoBreakTCUContinuation_Terminator") public static final TerminatorType NO_BREAK_TCU_CONTINUATION
  • Method Details

    • values

      public static TerminatorType[] 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 TerminatorType 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
    • getText

      public String getText()
    • getDisplayName

      public String getDisplayName()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<TerminatorType>
    • fromString

      public static TerminatorType fromString(String text)