dev.cel.expr.EnumValueOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of runtime Show documentation
Show all versions of runtime Show documentation
Common Expression Language Runtime for Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: cel/expr/value.proto
package dev.cel.expr;
public interface EnumValueOrBuilder extends
// @@protoc_insertion_point(interface_extends:cel.expr.EnumValue)
com.google.protobuf.MessageOrBuilder {
/**
*
* The fully qualified name of the enum type.
*
*
* string type = 1;
* @return The type.
*/
java.lang.String getType();
/**
*
* The fully qualified name of the enum type.
*
*
* string type = 1;
* @return The bytes for type.
*/
com.google.protobuf.ByteString
getTypeBytes();
/**
*
* The value of the enum.
*
*
* int32 value = 2;
* @return The value.
*/
int getValue();
}