Package sass.embedded_protocol
Interface EmbeddedSass.Value.StringOrBuilder
- All Superinterfaces:
MessageLiteOrBuilder
,MessageOrBuilder
- All Known Implementing Classes:
EmbeddedSass.Value.String
,EmbeddedSass.Value.String.Builder
- Enclosing class:
- EmbeddedSass.Value
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Whether the string is quoted or unquoted.getText()
The contents of the string.The contents of the string.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 Details
-
getText
String getText()The contents of the string. Mandatory.
string text = 1;
- Returns:
- The text.
-
getTextBytes
ByteString getTextBytes()The contents of the string. Mandatory.
string text = 1;
- Returns:
- The bytes for text.
-
getQuoted
boolean getQuoted()Whether the string is quoted or unquoted. Mandatory.
bool quoted = 2;
- Returns:
- The quoted.
-