Package dev.cel.expr
Interface EnumValueOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder,MessageOrBuilder
- All Known Implementing Classes:
EnumValue,EnumValue.Builder
public interface EnumValueOrBuilder extends MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetType()The fully qualified name of the enum type.ByteStringgetTypeBytes()The fully qualified name of the enum type.intgetValue()The value of the enum.-
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
-
getType
java.lang.String getType()
The fully qualified name of the enum type.
string type = 1;- Returns:
- The type.
-
getTypeBytes
ByteString getTypeBytes()
The fully qualified name of the enum type.
string type = 1;- Returns:
- The bytes for type.
-
getValue
int getValue()
The value of the enum.
int32 value = 2;- Returns:
- The value.
-
-