Enum EmbeddedSass.Value.List.Separator

    • Field Detail

      • COMMA_VALUE

        public static final int COMMA_VALUE
         List elements are separated by a comma.
         
        COMMA = 0;
        See Also:
        Constant Field Values
      • SPACE_VALUE

        public static final int SPACE_VALUE
         List elements are separated by whitespace.
         
        SPACE = 1;
        See Also:
        Constant Field Values
      • SLASH_VALUE

        public static final int SLASH_VALUE
         List elements are separated by a forward slash.
         
        SLASH = 2;
        See Also:
        Constant Field Values
      • UNDECIDED_VALUE

        public static final int UNDECIDED_VALUE
         The list's separator hasn't yet been determined.
         Singleton lists and empty lists don't have separators defiend. This
         means that list functions will prefer other lists' separators if
         possible.
         
        UNDECIDED = 3;
        See Also:
        Constant Field Values