Package com.google.api.expr.v1alpha1
Interface ReferenceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Reference,Reference.Builder
public interface ReferenceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()The fully qualified name of the declaration.com.google.protobuf.ByteStringgetNameBytes()The fully qualified name of the declaration.StringgetOverloadId(int index)For references to functions, this is a list of `Overload.overload_id` values which match according to typing rules.com.google.protobuf.ByteStringgetOverloadIdBytes(int index)For references to functions, this is a list of `Overload.overload_id` values which match according to typing rules.intgetOverloadIdCount()For references to functions, this is a list of `Overload.overload_id` values which match according to typing rules.List<String>getOverloadIdList()For references to functions, this is a list of `Overload.overload_id` values which match according to typing rules.ConstantgetValue()For references to constants, this may contain the value of the constant if known at compile time.ConstantOrBuildergetValueOrBuilder()For references to constants, this may contain the value of the constant if known at compile time.booleanhasValue()For references to constants, this may contain the value of the constant if known at compile time.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
The fully qualified name of the declaration.
string name = 1;
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The fully qualified name of the declaration.
string name = 1;
-
getOverloadIdList
List<String> getOverloadIdList()
For references to functions, this is a list of `Overload.overload_id` values which match according to typing rules. If the list has more than one element, overload resolution among the presented candidates must happen at runtime because of dynamic types. The type checker attempts to narrow down this list as much as possible. Empty if this is not a reference to a [Decl.FunctionDecl][google.api.expr.v1alpha1.Decl.FunctionDecl].
repeated string overload_id = 3;
-
getOverloadIdCount
int getOverloadIdCount()
For references to functions, this is a list of `Overload.overload_id` values which match according to typing rules. If the list has more than one element, overload resolution among the presented candidates must happen at runtime because of dynamic types. The type checker attempts to narrow down this list as much as possible. Empty if this is not a reference to a [Decl.FunctionDecl][google.api.expr.v1alpha1.Decl.FunctionDecl].
repeated string overload_id = 3;
-
getOverloadId
String getOverloadId(int index)
For references to functions, this is a list of `Overload.overload_id` values which match according to typing rules. If the list has more than one element, overload resolution among the presented candidates must happen at runtime because of dynamic types. The type checker attempts to narrow down this list as much as possible. Empty if this is not a reference to a [Decl.FunctionDecl][google.api.expr.v1alpha1.Decl.FunctionDecl].
repeated string overload_id = 3;
-
getOverloadIdBytes
com.google.protobuf.ByteString getOverloadIdBytes(int index)
For references to functions, this is a list of `Overload.overload_id` values which match according to typing rules. If the list has more than one element, overload resolution among the presented candidates must happen at runtime because of dynamic types. The type checker attempts to narrow down this list as much as possible. Empty if this is not a reference to a [Decl.FunctionDecl][google.api.expr.v1alpha1.Decl.FunctionDecl].
repeated string overload_id = 3;
-
hasValue
boolean hasValue()
For references to constants, this may contain the value of the constant if known at compile time.
.google.api.expr.v1alpha1.Constant value = 4;
-
getValue
Constant getValue()
For references to constants, this may contain the value of the constant if known at compile time.
.google.api.expr.v1alpha1.Constant value = 4;
-
getValueOrBuilder
ConstantOrBuilder getValueOrBuilder()
For references to constants, this may contain the value of the constant if known at compile time.
.google.api.expr.v1alpha1.Constant value = 4;
-
-