Package com.google.type
Interface ExprOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Expr,Expr.Builder
public interface ExprOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionOptional.com.google.protobuf.ByteStringOptional.Textual representation of an expression in Common Expression Language syntax.com.google.protobuf.ByteStringTextual representation of an expression in Common Expression Language syntax.Optional.com.google.protobuf.ByteStringOptional.getTitle()Optional.com.google.protobuf.ByteStringOptional.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getExpression
String getExpression()Textual representation of an expression in Common Expression Language syntax.
string expression = 1;- Returns:
- The expression.
-
getExpressionBytes
com.google.protobuf.ByteString getExpressionBytes()Textual representation of an expression in Common Expression Language syntax.
string expression = 1;- Returns:
- The bytes for expression.
-
getTitle
String getTitle()Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
string title = 2;- Returns:
- The title.
-
getTitleBytes
com.google.protobuf.ByteString getTitleBytes()Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
string title = 2;- Returns:
- The bytes for title.
-
getDescription
String getDescription()Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
string description = 3;- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
string description = 3;- Returns:
- The bytes for description.
-
getLocation
String getLocation()Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
string location = 4;- Returns:
- The location.
-
getLocationBytes
com.google.protobuf.ByteString getLocationBytes()Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
string location = 4;- Returns:
- The bytes for location.
-