Package sass.embedded_protocol
Interface EmbeddedSass.OutboundMessage.VersionResponseOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder
,MessageOrBuilder
- All Known Implementing Classes:
EmbeddedSass.OutboundMessage.VersionResponse
,EmbeddedSass.OutboundMessage.VersionResponse.Builder
- Enclosing class:
- EmbeddedSass.OutboundMessage
public static interface EmbeddedSass.OutboundMessage.VersionResponseOrBuilder extends MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCompilerVersion()
The version of the embedded compiler package.ByteString
getCompilerVersionBytes()
The version of the embedded compiler package.int
getId()
This version request's id.String
getImplementationName()
The name of the Sass implementation that the embedded compiler wraps.ByteString
getImplementationNameBytes()
The name of the Sass implementation that the embedded compiler wraps.String
getImplementationVersion()
The version of the Sass implementation that the embedded compiler wraps.ByteString
getImplementationVersionBytes()
The version of the Sass implementation that the embedded compiler wraps.String
getProtocolVersion()
The version of the embedded protocol, in semver format.ByteString
getProtocolVersionBytes()
The version of the embedded protocol, in semver format.-
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
-
getId
int getId()
This version request's id. Mandatory.
uint32 id = 5;
- Returns:
- The id.
-
getProtocolVersion
String getProtocolVersion()
The version of the embedded protocol, in semver format.
string protocol_version = 1;
- Returns:
- The protocolVersion.
-
getProtocolVersionBytes
ByteString getProtocolVersionBytes()
The version of the embedded protocol, in semver format.
string protocol_version = 1;
- Returns:
- The bytes for protocolVersion.
-
getCompilerVersion
String getCompilerVersion()
The version of the embedded compiler package. This has no guaranteed format, although compilers are encouraged to use semver.
string compiler_version = 2;
- Returns:
- The compilerVersion.
-
getCompilerVersionBytes
ByteString getCompilerVersionBytes()
The version of the embedded compiler package. This has no guaranteed format, although compilers are encouraged to use semver.
string compiler_version = 2;
- Returns:
- The bytes for compilerVersion.
-
getImplementationVersion
String getImplementationVersion()
The version of the Sass implementation that the embedded compiler wraps. This has no guaranteed format, although Sass implementations are encouraged to use semver.
string implementation_version = 3;
- Returns:
- The implementationVersion.
-
getImplementationVersionBytes
ByteString getImplementationVersionBytes()
The version of the Sass implementation that the embedded compiler wraps. This has no guaranteed format, although Sass implementations are encouraged to use semver.
string implementation_version = 3;
- Returns:
- The bytes for implementationVersion.
-
getImplementationName
String getImplementationName()
The name of the Sass implementation that the embedded compiler wraps.
string implementation_name = 4;
- Returns:
- The implementationName.
-
getImplementationNameBytes
ByteString getImplementationNameBytes()
The name of the Sass implementation that the embedded compiler wraps.
string implementation_name = 4;
- Returns:
- The bytes for implementationName.
-
-