Interface EmbeddedSass.Value.Calculation.CalculationValueOrBuilder

    • Method Detail

      • hasNumber

        boolean hasNumber()
        .sass.embedded_protocol.Value.Number number = 1;
        Returns:
        Whether the number field is set.
      • hasString

        boolean hasString()
         An unquoted string, as from a function like `var()` or `env()`.
         
        string string = 2;
        Returns:
        Whether the string field is set.
      • getString

        String getString()
         An unquoted string, as from a function like `var()` or `env()`.
         
        string string = 2;
        Returns:
        The string.
      • getStringBytes

        ByteString getStringBytes()
         An unquoted string, as from a function like `var()` or `env()`.
         
        string string = 2;
        Returns:
        The bytes for string.
      • hasInterpolation

        boolean hasInterpolation()
         An unquoted string as created by interpolation for
         backwards-compatibility with older Sass syntax.
         
        string interpolation = 3;
        Returns:
        Whether the interpolation field is set.
      • getInterpolation

        String getInterpolation()
         An unquoted string as created by interpolation for
         backwards-compatibility with older Sass syntax.
         
        string interpolation = 3;
        Returns:
        The interpolation.
      • getInterpolationBytes

        ByteString getInterpolationBytes()
         An unquoted string as created by interpolation for
         backwards-compatibility with older Sass syntax.
         
        string interpolation = 3;
        Returns:
        The bytes for interpolation.
      • hasOperation

        boolean hasOperation()
        .sass.embedded_protocol.Value.Calculation.CalculationOperation operation = 4;
        Returns:
        Whether the operation field is set.
      • hasCalculation

        boolean hasCalculation()
        .sass.embedded_protocol.Value.Calculation calculation = 5;
        Returns:
        Whether the calculation field is set.
      • getCalculation

        EmbeddedSass.Value.Calculation getCalculation()
        .sass.embedded_protocol.Value.Calculation calculation = 5;
        Returns:
        The calculation.