Enum Class ProsodyType

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

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

    • DRAWL

      @Documentation("https://talkbank.org/manuals/CHAT.html#Lengthening_Marker") public static final ProsodyType DRAWL
    • PAUSE

      @Documentation("https://talkbank.org/manuals/CHAT.html#WordInternalPause_Marker") public static final ProsodyType PAUSE
  • Method Details

    • values

      public static ProsodyType[] 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 ProsodyType 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
    • getChar

      public char getChar()
    • getDisplayName

      public String getDisplayName()
    • toString

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

      public static ProsodyType fromString(String string)