Package 

Enum Severity

  • All Implemented Interfaces:
    java.io.Serializable , kotlin.Comparable

    
    public enum Severity
    extends Enum<Severity>
                        

    The severity level of a transcoding message: 0 = Undefined, 1 = Information, 2 = Warning, 3 = Error.

    Values: _0,_1,_2,_3

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      public class Severity.Companion
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      _3
      _2
      _1
      _0
    • Method Summary

      Modifier and Type Method Description
      String toString() Override toString() to avoid using the enum variable name as the value, and instead use the actual value defined in the API spec file.
      final Integer getValue()
      final String getName()
      final Integer getOrdinal()
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • toString

         String toString()

        Override toString() to avoid using the enum variable name as the value, and instead use the actual value defined in the API spec file.

        This solves a problem when the variable name and its value are different, and ensures that the client sends the correct enum values to the server always.