Enum ECSSMedium

    • Enum Constant Detail

      • ALL

        public static final ECSSMedium ALL
        for all media types
      • AURAL

        @DeprecatedInCSS21
        public static final ECSSMedium AURAL
        For computer synthesized voice. Deprecated in CSS 2.1. Is "speech" in CSS 3.
      • BRAILLE

        public static final ECSSMedium BRAILLE
        for blind people
      • EMBOSSED

        public static final ECSSMedium EMBOSSED
        for blind people
      • HANDHELD

        public static final ECSSMedium HANDHELD
        for PDAs
      • PRINT

        public static final ECSSMedium PRINT
        for printing
      • PROJECTION

        public static final ECSSMedium PROJECTION
        for projection
      • SCREEN

        public static final ECSSMedium SCREEN
        for normal screen display
      • SPEECH

        public static final ECSSMedium SPEECH
        For computer synthesized voice.
      • TTY

        public static final ECSSMedium TTY
        for text oriented devices
      • TV

        public static final ECSSMedium TV
        for televisions
    • Method Detail

      • values

        public static ECSSMedium[] 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 (ECSSMedium c : ECSSMedium.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ECSSMedium 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
      • getName

        @Nonnull
        @Nonempty
        public String getName()
        Specified by:
        getName in interface com.helger.commons.name.IHasName
        Returns:
        the CSS medium name. Never null nor empty.