Class Expr.Call

java.lang.Object
com.google.protobuf.AbstractMessageLite<MessageType,BuilderType>
com.google.protobuf.GeneratedMessageLite<Expr.Call,Expr.Call.Builder>
com.google.api.expr.v1alpha1.Expr.Call
All Implemented Interfaces:
Expr.CallOrBuilder, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder
Enclosing class:
Expr

public static final class Expr.Call extends com.google.protobuf.GeneratedMessageLite<Expr.Call,Expr.Call.Builder> implements Expr.CallOrBuilder
 A call expression, including calls to predefined functions and operators.

 For example, `value == 10`, `size(map_value)`.
 
Protobuf type google.api.expr.v1alpha1.Expr.Call
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static final class 
    A call expression, including calls to predefined functions and operators.

    Nested classes/interfaces inherited from class com.google.protobuf.GeneratedMessageLite

    com.google.protobuf.GeneratedMessageLite.DefaultInstanceBasedParser<T extends com.google.protobuf.GeneratedMessageLite<T,?>>, com.google.protobuf.GeneratedMessageLite.ExtendableBuilder<MessageType extends com.google.protobuf.GeneratedMessageLite.ExtendableMessage<MessageType,BuilderType>,BuilderType extends com.google.protobuf.GeneratedMessageLite.ExtendableBuilder<MessageType,BuilderType>>, com.google.protobuf.GeneratedMessageLite.ExtendableMessage<MessageType extends com.google.protobuf.GeneratedMessageLite.ExtendableMessage<MessageType,BuilderType>,BuilderType extends com.google.protobuf.GeneratedMessageLite.ExtendableBuilder<MessageType,BuilderType>>, com.google.protobuf.GeneratedMessageLite.ExtendableMessageOrBuilder<MessageType extends com.google.protobuf.GeneratedMessageLite.ExtendableMessage<MessageType,BuilderType>,BuilderType extends com.google.protobuf.GeneratedMessageLite.ExtendableBuilder<MessageType,BuilderType>>, com.google.protobuf.GeneratedMessageLite.GeneratedExtension<ContainingType extends com.google.protobuf.MessageLite,Type extends Object>, com.google.protobuf.GeneratedMessageLite.MethodToInvoke, com.google.protobuf.GeneratedMessageLite.SerializedForm

    Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite

    com.google.protobuf.AbstractMessageLite.InternalOneOfEnum
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
     
    static final int
     
    static final int
     

    Fields inherited from class com.google.protobuf.GeneratedMessageLite

    unknownFields

    Fields inherited from class com.google.protobuf.AbstractMessageLite

    memoizedHashCode
  • Method Summary

    Modifier and Type
    Method
    Description
    protected final Object
    dynamicMethod(com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, Object arg0, Object arg1)
     
    getArgs(int index)
    The arguments.
    int
    The arguments.
    The arguments.
    getArgsOrBuilder(int index)
    The arguments.
    List<? extends ExprOrBuilder>
    The arguments.
    static Expr.Call
     
    Required.
    com.google.protobuf.ByteString
    Required.
    The target of an method call-style expression.
    boolean
    The target of an method call-style expression.
     
    newBuilder(Expr.Call prototype)
     
    static Expr.Call
     
    static Expr.Call
    parseDelimitedFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
     
    static Expr.Call
    parseFrom(byte[] data)
     
    static Expr.Call
    parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
     
    static Expr.Call
    parseFrom(com.google.protobuf.ByteString data)
     
    static Expr.Call
    parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
     
    static Expr.Call
    parseFrom(com.google.protobuf.CodedInputStream input)
     
    static Expr.Call
    parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
     
    static Expr.Call
     
    static Expr.Call
    parseFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
     
    static Expr.Call
     
    static Expr.Call
    parseFrom(ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
     
    static com.google.protobuf.Parser<Expr.Call>
     

    Methods inherited from class com.google.protobuf.GeneratedMessageLite

    createBuilder, createBuilder, dynamicMethod, dynamicMethod, emptyBooleanList, emptyDoubleList, emptyFloatList, emptyIntList, emptyLongList, emptyProtobufList, equals, getDefaultInstanceForType, getParserForType, getSerializedSize, hashCode, isInitialized, isInitialized, makeImmutable, mergeLengthDelimitedField, mergeUnknownFields, mergeVarintField, mutableCopy, mutableCopy, mutableCopy, mutableCopy, mutableCopy, mutableCopy, newBuilderForType, newMessageInfo, newRepeatedGeneratedExtension, newSingularGeneratedExtension, parseDelimitedFrom, parseDelimitedFrom, parseFrom, parseFrom, parseFrom, parseFrom, parseFrom, parseFrom, parseFrom, parseFrom, parseFrom, parseFrom, parsePartialFrom, parseUnknownField, registerDefaultInstance, toBuilder, toString, writeTo

    Methods inherited from class com.google.protobuf.AbstractMessageLite

    addAll, checkByteStringIsUtf8, toByteArray, toByteString, writeDelimitedTo, writeTo

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    getDefaultInstanceForType, isInitialized
  • Field Details

  • Method Details

    • hasTarget

      public boolean hasTarget()
       The target of an method call-style expression. For example, `x` in
       `x.f()`.
       
      .google.api.expr.v1alpha1.Expr target = 1 [json_name = "target"];
      Specified by:
      hasTarget in interface Expr.CallOrBuilder
      Returns:
      Whether the target field is set.
    • getTarget

      public Expr getTarget()
       The target of an method call-style expression. For example, `x` in
       `x.f()`.
       
      .google.api.expr.v1alpha1.Expr target = 1 [json_name = "target"];
      Specified by:
      getTarget in interface Expr.CallOrBuilder
      Returns:
      The target.
    • getFunction

      public String getFunction()
       Required. The name of the function or method being called.
       
      string function = 2 [json_name = "function"];
      Specified by:
      getFunction in interface Expr.CallOrBuilder
      Returns:
      The function.
    • getFunctionBytes

      public com.google.protobuf.ByteString getFunctionBytes()
       Required. The name of the function or method being called.
       
      string function = 2 [json_name = "function"];
      Specified by:
      getFunctionBytes in interface Expr.CallOrBuilder
      Returns:
      The bytes for function.
    • getArgsList

      public List<Expr> getArgsList()
       The arguments.
       
      repeated .google.api.expr.v1alpha1.Expr args = 3 [json_name = "args"];
      Specified by:
      getArgsList in interface Expr.CallOrBuilder
    • getArgsOrBuilderList

      public List<? extends ExprOrBuilder> getArgsOrBuilderList()
       The arguments.
       
      repeated .google.api.expr.v1alpha1.Expr args = 3 [json_name = "args"];
    • getArgsCount

      public int getArgsCount()
       The arguments.
       
      repeated .google.api.expr.v1alpha1.Expr args = 3 [json_name = "args"];
      Specified by:
      getArgsCount in interface Expr.CallOrBuilder
    • getArgs

      public Expr getArgs(int index)
       The arguments.
       
      repeated .google.api.expr.v1alpha1.Expr args = 3 [json_name = "args"];
      Specified by:
      getArgs in interface Expr.CallOrBuilder
    • getArgsOrBuilder

      public ExprOrBuilder getArgsOrBuilder(int index)
       The arguments.
       
      repeated .google.api.expr.v1alpha1.Expr args = 3 [json_name = "args"];
    • parseFrom

      public static Expr.Call parseFrom(ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Expr.Call parseFrom(ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Expr.Call parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Expr.Call parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Expr.Call parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Expr.Call parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Expr.Call parseFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static Expr.Call parseFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static Expr.Call parseDelimitedFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static Expr.Call parseDelimitedFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseFrom

      public static Expr.Call parseFrom(com.google.protobuf.CodedInputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static Expr.Call parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • newBuilder

      public static Expr.Call.Builder newBuilder()
    • newBuilder

      public static Expr.Call.Builder newBuilder(Expr.Call prototype)
    • dynamicMethod

      protected final Object dynamicMethod(com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, Object arg0, Object arg1)
      Specified by:
      dynamicMethod in class com.google.protobuf.GeneratedMessageLite<Expr.Call,Expr.Call.Builder>
    • getDefaultInstance

      public static Expr.Call getDefaultInstance()
    • parser

      public static com.google.protobuf.Parser<Expr.Call> parser()