Package sass.embedded_protocol
Interface EmbeddedSass.Value.Calculation.CalculationOperationOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder
,MessageOrBuilder
- All Known Implementing Classes:
EmbeddedSass.Value.Calculation.CalculationOperation
,EmbeddedSass.Value.Calculation.CalculationOperation.Builder
- Enclosing class:
- EmbeddedSass.Value.Calculation
public static interface EmbeddedSass.Value.Calculation.CalculationOperationOrBuilder extends MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EmbeddedSass.Value.Calculation.CalculationValue
getLeft()
The left-hand side of the operation.EmbeddedSass.Value.Calculation.CalculationValueOrBuilder
getLeftOrBuilder()
The left-hand side of the operation.EmbeddedSass.CalculationOperator
getOperator()
The operator to perform.int
getOperatorValue()
The operator to perform.EmbeddedSass.Value.Calculation.CalculationValue
getRight()
The right-hand side of the operation.EmbeddedSass.Value.Calculation.CalculationValueOrBuilder
getRightOrBuilder()
The right-hand side of the operation.boolean
hasLeft()
The left-hand side of the operation.boolean
hasRight()
The right-hand side of the operation.-
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getOperatorValue
int getOperatorValue()
The operator to perform.
.sass.embedded_protocol.CalculationOperator operator = 1;
- Returns:
- The enum numeric value on the wire for operator.
-
getOperator
EmbeddedSass.CalculationOperator getOperator()
The operator to perform.
.sass.embedded_protocol.CalculationOperator operator = 1;
- Returns:
- The operator.
-
hasLeft
boolean hasLeft()
The left-hand side of the operation.
.sass.embedded_protocol.Value.Calculation.CalculationValue left = 2;
- Returns:
- Whether the left field is set.
-
getLeft
EmbeddedSass.Value.Calculation.CalculationValue getLeft()
The left-hand side of the operation.
.sass.embedded_protocol.Value.Calculation.CalculationValue left = 2;
- Returns:
- The left.
-
getLeftOrBuilder
EmbeddedSass.Value.Calculation.CalculationValueOrBuilder getLeftOrBuilder()
The left-hand side of the operation.
.sass.embedded_protocol.Value.Calculation.CalculationValue left = 2;
-
hasRight
boolean hasRight()
The right-hand side of the operation.
.sass.embedded_protocol.Value.Calculation.CalculationValue right = 3;
- Returns:
- Whether the right field is set.
-
getRight
EmbeddedSass.Value.Calculation.CalculationValue getRight()
The right-hand side of the operation.
.sass.embedded_protocol.Value.Calculation.CalculationValue right = 3;
- Returns:
- The right.
-
getRightOrBuilder
EmbeddedSass.Value.Calculation.CalculationValueOrBuilder getRightOrBuilder()
The right-hand side of the operation.
.sass.embedded_protocol.Value.Calculation.CalculationValue right = 3;
-
-