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
public static interface EmbeddedSass.Value.StringOrBuilder extends MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getQuoted()
Whether the string is quoted or unquoted.String
getText()
The contents of the string.ByteString
getTextBytes()
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 Detail
-
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.
-
-