Package sass.embedded_protocol
Interface EmbeddedSass.Value.RgbColorOrBuilder
- All Superinterfaces:
MessageLiteOrBuilder
,MessageOrBuilder
- All Known Implementing Classes:
EmbeddedSass.Value.RgbColor
,EmbeddedSass.Value.RgbColor.Builder
- Enclosing class:
- EmbeddedSass.Value
-
Method Summary
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 Details
-
getRed
int getRed()The color's red channel. Mandatory. May not be above 255.
uint32 red = 1;
- Returns:
- The red.
-
getGreen
int getGreen()The color's green channel. Mandatory. May not be above 255.
uint32 green = 2;
- Returns:
- The green.
-
getBlue
int getBlue()The color's blue channel. Mandatory. May not be above 255.
uint32 blue = 3;
- Returns:
- The blue.
-
getAlpha
double getAlpha()The color's alpha channel. Mandatory. Must be between 0 and 1, inclusive.
double alpha = 4;
- Returns:
- The alpha.
-