Package relationalai.protocol
Interface Schema.ValueTypeOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Schema.ValueType
,Schema.ValueType.Builder
- Enclosing class:
- Schema
public static interface Schema.ValueTypeOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Schema.RelType
getArgumentTypes(int index)
Constant types are allowed, e.g.int
getArgumentTypesCount()
Constant types are allowed, e.g.List<Schema.RelType>
getArgumentTypesList()
Constant types are allowed, e.g.Schema.RelTypeOrBuilder
getArgumentTypesOrBuilder(int index)
Constant types are allowed, e.g.List<? extends Schema.RelTypeOrBuilder>
getArgumentTypesOrBuilderList()
Constant types are allowed, e.g.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getArgumentTypesList
List<Schema.RelType> getArgumentTypesList()
Constant types are allowed, e.g. the `64` in `decimal[64]`. They serve as type parameters.
repeated .relationalai.protocol.RelType argument_types = 1;
-
getArgumentTypes
Schema.RelType getArgumentTypes(int index)
Constant types are allowed, e.g. the `64` in `decimal[64]`. They serve as type parameters.
repeated .relationalai.protocol.RelType argument_types = 1;
-
getArgumentTypesCount
int getArgumentTypesCount()
Constant types are allowed, e.g. the `64` in `decimal[64]`. They serve as type parameters.
repeated .relationalai.protocol.RelType argument_types = 1;
-
getArgumentTypesOrBuilderList
List<? extends Schema.RelTypeOrBuilder> getArgumentTypesOrBuilderList()
Constant types are allowed, e.g. the `64` in `decimal[64]`. They serve as type parameters.
repeated .relationalai.protocol.RelType argument_types = 1;
-
getArgumentTypesOrBuilder
Schema.RelTypeOrBuilder getArgumentTypesOrBuilder(int index)
Constant types are allowed, e.g. the `64` in `decimal[64]`. They serve as type parameters.
repeated .relationalai.protocol.RelType argument_types = 1;
-
-