Package Torello.HTML

Enum SD

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<SD>

    public enum SD
    extends java.lang.Enum<SD>
    Single-Quotes & Double-Quotes - An enumeration of the two types of quotes used inside HTML Tags for assigning values to tag-attributes.

    SD: Single-Quote or Double-Quote


    While it is generally accepted that HTML-Element attributes / inner-tags are not requires to contain quotes, usually the single, but most often the double-quote, are used. This HTML package can parse no-quote situations, but when generating inner-tag values, quotes must be specified.


    • Field Summary

      Fields 
      Modifier and Type Field
      char quote
    • Method Summary

       
      Convert String to Enum Constant
      Modifier and Type Method
      static SD valueOf​(String name)
       
      List all Enum Constants
      Modifier and Type Method
      static SD[] values()
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Field Detail

      • quote

        🡅  🡇     🗕  🗗  🗖
        public final char quote
        This character contains, or represents, the quote being used by 'this' enumerated-constant, as a java-character.
    • Method Detail

      • values

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

        🡅     🗕  🗗  🗖
        public static SD valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null