Enum TextualType

    • Enum Constant Detail

      • LONG

        public static final TextualType LONG
        A long description
      • SUB

        public static final TextualType SUB
        A sub text. This may be the descriptive title of a broadcast if it is an episode of a series.
      • ORIGINAL

        public static final TextualType ORIGINAL
        If the program was translated, this may contain one text in the original language.
      • ABBREVIATION

        public static final TextualType ABBREVIATION
    • Method Detail

      • values

        public static TextualType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (TextualType c : TextualType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TextualType valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null
      • isDeprecated

        public boolean isDeprecated()
      • value

        public String value()