com.google.api.expr.v1alpha1.ParsedExprOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/api/expr/v1alpha1/syntax.proto
// Protobuf Java Version: 3.25.4
package com.google.api.expr.v1alpha1;
public interface ParsedExprOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.api.expr.v1alpha1.ParsedExpr)
com.google.protobuf.MessageOrBuilder {
/**
*
* The parsed expression.
*
*
* .google.api.expr.v1alpha1.Expr expr = 2;
* @return Whether the expr field is set.
*/
boolean hasExpr();
/**
*
* The parsed expression.
*
*
* .google.api.expr.v1alpha1.Expr expr = 2;
* @return The expr.
*/
com.google.api.expr.v1alpha1.Expr getExpr();
/**
*
* The parsed expression.
*
*
* .google.api.expr.v1alpha1.Expr expr = 2;
*/
com.google.api.expr.v1alpha1.ExprOrBuilder getExprOrBuilder();
/**
*
* The source info derived from input that generated the parsed `expr`.
*
*
* .google.api.expr.v1alpha1.SourceInfo source_info = 3;
* @return Whether the sourceInfo field is set.
*/
boolean hasSourceInfo();
/**
*
* The source info derived from input that generated the parsed `expr`.
*
*
* .google.api.expr.v1alpha1.SourceInfo source_info = 3;
* @return The sourceInfo.
*/
com.google.api.expr.v1alpha1.SourceInfo getSourceInfo();
/**
*
* The source info derived from input that generated the parsed `expr`.
*
*
* .google.api.expr.v1alpha1.SourceInfo source_info = 3;
*/
com.google.api.expr.v1alpha1.SourceInfoOrBuilder getSourceInfoOrBuilder();
}