Interface TypeOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    Type, Type.Builder

    public interface TypeOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Detail

      • hasDyn

        boolean hasDyn()
         Dynamic type.
         
        .google.protobuf.Empty dyn = 1;
      • getDyn

        com.google.protobuf.Empty getDyn()
         Dynamic type.
         
        .google.protobuf.Empty dyn = 1;
      • getDynOrBuilder

        com.google.protobuf.EmptyOrBuilder getDynOrBuilder()
         Dynamic type.
         
        .google.protobuf.Empty dyn = 1;
      • getNullValue

        int getNullValue()
         Null value.
         
        .google.protobuf.NullValue null = 2;
      • getNull

        com.google.protobuf.NullValue getNull()
         Null value.
         
        .google.protobuf.NullValue null = 2;
      • getPrimitiveValue

        int getPrimitiveValue()
         Primitive types: `true`, `1u`, `-2.0`, `'string'`, `b'bytes'`.
         
        .google.api.expr.v1alpha1.Type.PrimitiveType primitive = 3;
      • getPrimitive

        Type.PrimitiveType getPrimitive()
         Primitive types: `true`, `1u`, `-2.0`, `'string'`, `b'bytes'`.
         
        .google.api.expr.v1alpha1.Type.PrimitiveType primitive = 3;
      • getWrapperValue

        int getWrapperValue()
         Wrapper of a primitive type, e.g. `google.protobuf.Int64Value`.
         
        .google.api.expr.v1alpha1.Type.PrimitiveType wrapper = 4;
      • getWrapper

        Type.PrimitiveType getWrapper()
         Wrapper of a primitive type, e.g. `google.protobuf.Int64Value`.
         
        .google.api.expr.v1alpha1.Type.PrimitiveType wrapper = 4;
      • getWellKnownValue

        int getWellKnownValue()
         Well-known protobuf type such as `google.protobuf.Timestamp`.
         
        .google.api.expr.v1alpha1.Type.WellKnownType well_known = 5;
      • getWellKnown

        Type.WellKnownType getWellKnown()
         Well-known protobuf type such as `google.protobuf.Timestamp`.
         
        .google.api.expr.v1alpha1.Type.WellKnownType well_known = 5;
      • hasListType

        boolean hasListType()
         Parameterized list with elements of `list_type`, e.g. `list<timestamp>`.
         
        .google.api.expr.v1alpha1.Type.ListType list_type = 6;
      • getListType

        Type.ListType getListType()
         Parameterized list with elements of `list_type`, e.g. `list<timestamp>`.
         
        .google.api.expr.v1alpha1.Type.ListType list_type = 6;
      • getListTypeOrBuilder

        Type.ListTypeOrBuilder getListTypeOrBuilder()
         Parameterized list with elements of `list_type`, e.g. `list<timestamp>`.
         
        .google.api.expr.v1alpha1.Type.ListType list_type = 6;
      • hasMapType

        boolean hasMapType()
         Parameterized map with typed keys and values.
         
        .google.api.expr.v1alpha1.Type.MapType map_type = 7;
      • getMapType

        Type.MapType getMapType()
         Parameterized map with typed keys and values.
         
        .google.api.expr.v1alpha1.Type.MapType map_type = 7;
      • getMapTypeOrBuilder

        Type.MapTypeOrBuilder getMapTypeOrBuilder()
         Parameterized map with typed keys and values.
         
        .google.api.expr.v1alpha1.Type.MapType map_type = 7;
      • hasFunction

        boolean hasFunction()
         Function type.
         
        .google.api.expr.v1alpha1.Type.FunctionType function = 8;
      • getFunction

        Type.FunctionType getFunction()
         Function type.
         
        .google.api.expr.v1alpha1.Type.FunctionType function = 8;
      • getFunctionOrBuilder

        Type.FunctionTypeOrBuilder getFunctionOrBuilder()
         Function type.
         
        .google.api.expr.v1alpha1.Type.FunctionType function = 8;
      • getMessageType

        String getMessageType()
         Protocol buffer message type.
         The `message_type` string specifies the qualified message type name. For
         example, `google.plus.Profile`.
         
        string message_type = 9;
      • getMessageTypeBytes

        com.google.protobuf.ByteString getMessageTypeBytes()
         Protocol buffer message type.
         The `message_type` string specifies the qualified message type name. For
         example, `google.plus.Profile`.
         
        string message_type = 9;
      • getTypeParam

        String getTypeParam()
         Type param type.
         The `type_param` string specifies the type parameter name, e.g. `list<E>`
         would be a `list_type` whose element type was a `type_param` type
         named `E`.
         
        string type_param = 10;
      • getTypeParamBytes

        com.google.protobuf.ByteString getTypeParamBytes()
         Type param type.
         The `type_param` string specifies the type parameter name, e.g. `list<E>`
         would be a `list_type` whose element type was a `type_param` type
         named `E`.
         
        string type_param = 10;
      • hasType

        boolean hasType()
         Type type.
         The `type` value specifies the target type. e.g. int is type with a
         target type of `Primitive.INT`.
         
        .google.api.expr.v1alpha1.Type type = 11;
      • getType

        Type getType()
         Type type.
         The `type` value specifies the target type. e.g. int is type with a
         target type of `Primitive.INT`.
         
        .google.api.expr.v1alpha1.Type type = 11;
      • getTypeOrBuilder

        TypeOrBuilder getTypeOrBuilder()
         Type type.
         The `type` value specifies the target type. e.g. int is type with a
         target type of `Primitive.INT`.
         
        .google.api.expr.v1alpha1.Type type = 11;
      • hasError

        boolean hasError()
         Error type.
         During type-checking if an expression is an error, its type is propagated
         as the `ERROR` type. This permits the type-checker to discover other
         errors present in the expression.
         
        .google.protobuf.Empty error = 12;
      • getError

        com.google.protobuf.Empty getError()
         Error type.
         During type-checking if an expression is an error, its type is propagated
         as the `ERROR` type. This permits the type-checker to discover other
         errors present in the expression.
         
        .google.protobuf.Empty error = 12;
      • getErrorOrBuilder

        com.google.protobuf.EmptyOrBuilder getErrorOrBuilder()
         Error type.
         During type-checking if an expression is an error, its type is propagated
         as the `ERROR` type. This permits the type-checker to discover other
         errors present in the expression.
         
        .google.protobuf.Empty error = 12;
      • hasAbstractType

        boolean hasAbstractType()
         Abstract, application defined type.
         
        .google.api.expr.v1alpha1.Type.AbstractType abstract_type = 14;
      • getAbstractType

        Type.AbstractType getAbstractType()
         Abstract, application defined type.
         
        .google.api.expr.v1alpha1.Type.AbstractType abstract_type = 14;
      • getAbstractTypeOrBuilder

        Type.AbstractTypeOrBuilder getAbstractTypeOrBuilder()
         Abstract, application defined type.
         
        .google.api.expr.v1alpha1.Type.AbstractType abstract_type = 14;