Enum Class Call.Score

java.lang.Object
java.lang.Enum<Call.Score>
com.twilio.voice.Call.Score
All Implemented Interfaces:
Serializable, Comparable<Call.Score>, Constable
Enclosing class:
Call

public static enum Call.Score extends Enum<Call.Score>
An enum representing call quality score.
  • Enum Constant Details

    • NOT_REPORTED

      public static final Call.Score NOT_REPORTED
      No score reported.
    • ONE

      public static final Call.Score ONE
      Terrible call quality, call dropped, or caused great difficulty in communicating.
    • TWO

      public static final Call.Score TWO
      Bad call quality, like choppy audio, periodic one-way-audio.
    • THREE

      public static final Call.Score THREE
      Average call quality, manageable with some noise/minor packet loss.
    • FOUR

      public static final Call.Score FOUR
      Good call quality, minor issues.
    • FIVE

      public static final Call.Score FIVE
      Great call quality. No issues.
  • Method Details

    • values

      public static Call.Score[] 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 Call.Score 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
    • getValue

      public int getValue()