Uses of Interface
net.hydromatic.morel.type.RecordLikeType
-
Packages that use RecordLikeType Package Description net.hydromatic.morel.ast Abstract syntax tree.net.hydromatic.morel.foreign Provides access to external data sources.net.hydromatic.morel.type Type system. -
-
Uses of RecordLikeType in net.hydromatic.morel.ast
Methods in net.hydromatic.morel.ast that return RecordLikeType Modifier and Type Method Description RecordLikeTypeCore.Tuple. type()Methods in net.hydromatic.morel.ast with parameters of type RecordLikeType Modifier and Type Method Description Core.RecordSelectorCoreBuilder. recordSelector(TypeSystem typeSystem, RecordLikeType recordType, int slot)Core.RecordSelectorCoreBuilder. recordSelector(TypeSystem typeSystem, RecordLikeType recordType, String fieldName)Core.TupleCoreBuilder. tuple(RecordLikeType type, Iterable<? extends Core.Exp> args)Core.TupleCoreBuilder. tuple(RecordLikeType type, Core.Exp... args)Core.TupleCoreBuilder. tuple(TypeSystem typeSystem, @Nullable RecordLikeType type, Iterable<? extends Core.Exp> args)AsCoreBuilder.tuple(RecordLikeType, Iterable), but derives type.Constructors in net.hydromatic.morel.ast with parameters of type RecordLikeType Constructor Description Tuple(RecordLikeType type, com.google.common.collect.ImmutableList<Core.Exp> args) -
Uses of RecordLikeType in net.hydromatic.morel.foreign
Methods in net.hydromatic.morel.foreign with parameters of type RecordLikeType Modifier and Type Method Description static Converter<Object[]>Converters. ofRow2(org.apache.calcite.rel.type.RelDataType rowType, RecordLikeType type) -
Uses of RecordLikeType in net.hydromatic.morel.type
Classes in net.hydromatic.morel.type that implement RecordLikeType Modifier and Type Class Description classPrimitiveTypePrimitive type.classRecordTypeThe type of a record value.classTupleTypeThe type of a tuple value.Methods in net.hydromatic.morel.type that return RecordLikeType Modifier and Type Method Description RecordLikeTypeTypeSystem. recordType(SortedMap<String,? extends Type> argNameTypes)Creates a record type.RecordLikeTypeTypeSystem. tupleType(List<? extends Type> argTypes)Creates a tuple type.
-