Enum Class EmbeddedSass.OutputStyle

java.lang.Object
java.lang.Enum<EmbeddedSass.OutputStyle>
sass.embedded_protocol.EmbeddedSass.OutputStyle
All Implemented Interfaces:
Internal.EnumLite, ProtocolMessageEnum, Serializable, Comparable<EmbeddedSass.OutputStyle>, Constable
Enclosing class:
EmbeddedSass

public static enum EmbeddedSass.OutputStyle extends Enum<EmbeddedSass.OutputStyle> implements ProtocolMessageEnum
 Possible ways to format the CSS output. The compiler is not required to
 support all possible options; if the host requests an unsupported style, the
 compiler should choose the closest supported style.
 
Protobuf enum sass.embedded_protocol.OutputStyle
  • Enum Constant Details

    • EXPANDED

      public static final EmbeddedSass.OutputStyle EXPANDED
       Each selector and declaration is written on its own line.
       
      EXPANDED = 0;
    • COMPRESSED

      public static final EmbeddedSass.OutputStyle COMPRESSED
       The entire stylesheet is written on a single line, with as few characters
       as possible.
       
      COMPRESSED = 1;
    • UNRECOGNIZED

      public static final EmbeddedSass.OutputStyle UNRECOGNIZED
  • Field Details

    • EXPANDED_VALUE

      public static final int EXPANDED_VALUE
       Each selector and declaration is written on its own line.
       
      EXPANDED = 0;
      See Also:
    • COMPRESSED_VALUE

      public static final int COMPRESSED_VALUE
       The entire stylesheet is written on a single line, with as few characters
       as possible.
       
      COMPRESSED = 1;
      See Also:
  • Method Details