Package sass.embedded_protocol
Interface EmbeddedSass.InboundMessage.ImportResponseOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder
,MessageOrBuilder
- All Known Implementing Classes:
EmbeddedSass.InboundMessage.ImportResponse
,EmbeddedSass.InboundMessage.ImportResponse.Builder
- Enclosing class:
- EmbeddedSass.InboundMessage
public static interface EmbeddedSass.InboundMessage.ImportResponseOrBuilder extends MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getError()
An error message explaining why the URL could not be loaded.ByteString
getErrorBytes()
An error message explaining why the URL could not be loaded.int
getId()
uint32 id = 1;
EmbeddedSass.InboundMessage.ImportResponse.ResultCase
getResultCase()
EmbeddedSass.InboundMessage.ImportResponse.ImportSuccess
getSuccess()
The contents of the loaded stylesheet.EmbeddedSass.InboundMessage.ImportResponse.ImportSuccessOrBuilder
getSuccessOrBuilder()
The contents of the loaded stylesheet.boolean
hasError()
An error message explaining why the URL could not be loaded.boolean
hasSuccess()
The contents of the loaded stylesheet.-
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()
uint32 id = 1;
- Returns:
- The id.
-
hasSuccess
boolean hasSuccess()
The contents of the loaded stylesheet.
.sass.embedded_protocol.InboundMessage.ImportResponse.ImportSuccess success = 2;
- Returns:
- Whether the success field is set.
-
getSuccess
EmbeddedSass.InboundMessage.ImportResponse.ImportSuccess getSuccess()
The contents of the loaded stylesheet.
.sass.embedded_protocol.InboundMessage.ImportResponse.ImportSuccess success = 2;
- Returns:
- The success.
-
getSuccessOrBuilder
EmbeddedSass.InboundMessage.ImportResponse.ImportSuccessOrBuilder getSuccessOrBuilder()
The contents of the loaded stylesheet.
.sass.embedded_protocol.InboundMessage.ImportResponse.ImportSuccess success = 2;
-
hasError
boolean hasError()
An error message explaining why the URL could not be loaded.
string error = 3;
- Returns:
- Whether the error field is set.
-
getError
String getError()
An error message explaining why the URL could not be loaded.
string error = 3;
- Returns:
- The error.
-
getErrorBytes
ByteString getErrorBytes()
An error message explaining why the URL could not be loaded.
string error = 3;
- Returns:
- The bytes for error.
-
getResultCase
EmbeddedSass.InboundMessage.ImportResponse.ResultCase getResultCase()
-
-