Package dev.cel.expr
Interface EnumValueOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
EnumValue,EnumValue.Builder
public interface EnumValueOrBuilder extends com.google.protobuf.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.com.google.protobuf.ByteStringgetTypeBytes()The fully qualified name of the enum type.intgetValue()The value of the enum.-
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
com.google.protobuf.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.
-
-