Package sass.embedded_protocol
Interface EmbeddedSass.Value.ListOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder
,MessageOrBuilder
- All Known Implementing Classes:
EmbeddedSass.Value.List
,EmbeddedSass.Value.List.Builder
- Enclosing class:
- EmbeddedSass.Value
public static interface EmbeddedSass.Value.ListOrBuilder extends MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EmbeddedSass.Value
getContents(int index)
The elements of this list.int
getContentsCount()
The elements of this list.List<EmbeddedSass.Value>
getContentsList()
The elements of this list.EmbeddedSass.ValueOrBuilder
getContentsOrBuilder(int index)
The elements of this list.List<? extends EmbeddedSass.ValueOrBuilder>
getContentsOrBuilderList()
The elements of this list.boolean
getHasBrackets()
Whether this list has square brackets.EmbeddedSass.ListSeparator
getSeparator()
The type of separator for this list.int
getSeparatorValue()
The type of separator for this list.-
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
-
getSeparatorValue
int getSeparatorValue()
The type of separator for this list. Mandatory.
.sass.embedded_protocol.ListSeparator separator = 1;
- Returns:
- The enum numeric value on the wire for separator.
-
getSeparator
EmbeddedSass.ListSeparator getSeparator()
The type of separator for this list. Mandatory.
.sass.embedded_protocol.ListSeparator separator = 1;
- Returns:
- The separator.
-
getHasBrackets
boolean getHasBrackets()
Whether this list has square brackets. Mandatory.
bool has_brackets = 2;
- Returns:
- The hasBrackets.
-
getContentsList
List<EmbeddedSass.Value> getContentsList()
The elements of this list.
repeated .sass.embedded_protocol.Value contents = 3;
-
getContents
EmbeddedSass.Value getContents(int index)
The elements of this list.
repeated .sass.embedded_protocol.Value contents = 3;
-
getContentsCount
int getContentsCount()
The elements of this list.
repeated .sass.embedded_protocol.Value contents = 3;
-
getContentsOrBuilderList
List<? extends EmbeddedSass.ValueOrBuilder> getContentsOrBuilderList()
The elements of this list.
repeated .sass.embedded_protocol.Value contents = 3;
-
getContentsOrBuilder
EmbeddedSass.ValueOrBuilder getContentsOrBuilder(int index)
The elements of this list.
repeated .sass.embedded_protocol.Value contents = 3;
-
-