Package sass.embedded_protocol
Interface EmbeddedSass.Value.Map.EntryOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder,MessageOrBuilder
- All Known Implementing Classes:
EmbeddedSass.Value.Map.Entry,EmbeddedSass.Value.Map.Entry.Builder
- Enclosing class:
- EmbeddedSass.Value.Map
public static interface EmbeddedSass.Value.Map.EntryOrBuilder extends MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EmbeddedSass.ValuegetKey()The key this entry is associated with.EmbeddedSass.ValueOrBuildergetKeyOrBuilder()The key this entry is associated with.EmbeddedSass.ValuegetValue()The value associated with this key.EmbeddedSass.ValueOrBuildergetValueOrBuilder()The value associated with this key.booleanhasKey()The key this entry is associated with.booleanhasValue()The value associated with this key.-
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
-
hasKey
boolean hasKey()
The key this entry is associated with. Mandatory.
.sass.embedded_protocol.Value key = 1;- Returns:
- Whether the key field is set.
-
getKey
EmbeddedSass.Value getKey()
The key this entry is associated with. Mandatory.
.sass.embedded_protocol.Value key = 1;- Returns:
- The key.
-
getKeyOrBuilder
EmbeddedSass.ValueOrBuilder getKeyOrBuilder()
The key this entry is associated with. Mandatory.
.sass.embedded_protocol.Value key = 1;
-
hasValue
boolean hasValue()
The value associated with this key. Mandatory.
.sass.embedded_protocol.Value value = 2;- Returns:
- Whether the value field is set.
-
getValue
EmbeddedSass.Value getValue()
The value associated with this key. Mandatory.
.sass.embedded_protocol.Value value = 2;- Returns:
- The value.
-
getValueOrBuilder
EmbeddedSass.ValueOrBuilder getValueOrBuilder()
The value associated with this key. Mandatory.
.sass.embedded_protocol.Value value = 2;
-
-