Uses of Interface
org.talend.sdk.component.api.record.Schema.Entry
-
Packages that use Schema.Entry Package Description org.talend.sdk.component.api.record org.talend.sdk.component.api.service.record org.talend.sdk.component.api.service.schema -
-
Uses of Schema.Entry in org.talend.sdk.component.api.record
Methods in org.talend.sdk.component.api.record that return Schema.Entry Modifier and Type Method Description Schema.Entry
Schema.Entry.Builder. build()
default Schema.Entry
Schema. getEntry(String name)
Methods in org.talend.sdk.component.api.record that return types with arguments of type Schema.Entry Modifier and Type Method Description Stream<Schema.Entry>
Schema. getAllEntries()
List<Schema.Entry>
Record.Builder. getCurrentEntries()
List<Schema.Entry>
Schema. getEntries()
List<Schema.Entry>
Schema. getMetadata()
-
Uses of Schema.Entry in org.talend.sdk.component.api.service.record
Methods in org.talend.sdk.component.api.service.record that return types with arguments of type Schema.Entry Modifier and Type Method Description Collector<Schema.Entry,Record.Builder,Record>
RecordService. toRecord(Schema schema, Record fallbackRecord, BiFunction<Schema.Entry,Record.Builder,Boolean> customHandler, BiConsumer<Record.Builder,Boolean> beforeFinish)
Method providing a collector enabling to create a record from another one in a custom fashion.Methods in org.talend.sdk.component.api.service.record with parameters of type Schema.Entry Modifier and Type Method Description boolean
RecordService. forwardEntry(Record source, Record.Builder builder, String sourceColumn, Schema.Entry entry)
Forward an entry from the source record if it exists.default Schema.Entry.Builder
RecordBuilderFactory. newEntryBuilder(Schema.Entry model)
Build a schema.entry from another one.default void
RecordVisitor. onBoolean(Schema.Entry entry, Optional<Boolean> optionalBoolean)
default void
RecordVisitor. onBooleanArray(Schema.Entry entry, Optional<Collection<Boolean>> array)
default void
RecordVisitor. onBytes(Schema.Entry entry, Optional<byte[]> bytes)
default void
RecordVisitor. onBytesArray(Schema.Entry entry, Optional<Collection<byte[]>> array)
default void
RecordVisitor. onDatetime(Schema.Entry entry, Optional<ZonedDateTime> dateTime)
default void
RecordVisitor. onDatetimeArray(Schema.Entry entry, Optional<Collection<ZonedDateTime>> array)
default void
RecordVisitor. onDouble(Schema.Entry entry, OptionalDouble optionalDouble)
default void
RecordVisitor. onDoubleArray(Schema.Entry entry, Optional<Collection<Double>> array)
default void
RecordVisitor. onFloat(Schema.Entry entry, OptionalDouble optionalFloat)
default void
RecordVisitor. onFloatArray(Schema.Entry entry, Optional<Collection<Float>> array)
default void
RecordVisitor. onInt(Schema.Entry entry, OptionalInt optionalInt)
default void
RecordVisitor. onIntArray(Schema.Entry entry, Optional<Collection<Integer>> array)
default void
RecordVisitor. onLong(Schema.Entry entry, OptionalLong optionalLong)
default void
RecordVisitor. onLongArray(Schema.Entry entry, Optional<Collection<Long>> array)
default RecordVisitor<T>
RecordVisitor. onRecord(Schema.Entry entry, Optional<Record> record)
default RecordVisitor<T>
RecordVisitor. onRecordArray(Schema.Entry entry, Optional<Collection<Record>> array)
default void
RecordVisitor. onString(Schema.Entry entry, Optional<String> string)
default void
RecordVisitor. onStringArray(Schema.Entry entry, Optional<Collection<String>> array)
Method parameters in org.talend.sdk.component.api.service.record with type arguments of type Schema.Entry Modifier and Type Method Description Record
RecordService. create(Schema schema, Record fallbackRecord, BiFunction<Schema.Entry,Record.Builder,Boolean> customHandler, BiConsumer<Record.Builder,Boolean> beforeFinish)
Shortcut to build a record usingRecordService.toRecord(Schema, Record, BiFunction, BiConsumer)
.Collector<Schema.Entry,Record.Builder,Record>
RecordService. toRecord(Schema schema, Record fallbackRecord, BiFunction<Schema.Entry,Record.Builder,Boolean> customHandler, BiConsumer<Record.Builder,Boolean> beforeFinish)
Method providing a collector enabling to create a record from another one in a custom fashion. -
Uses of Schema.Entry in org.talend.sdk.component.api.service.schema
Classes in org.talend.sdk.component.api.service.schema that implement Schema.Entry Modifier and Type Class Description static class
Schema.Entry
Deprecated.Methods in org.talend.sdk.component.api.service.schema that return types with arguments of type Schema.Entry Modifier and Type Method Description Stream<Schema.Entry>
Schema. getAllEntries()
Deprecated.List<Schema.Entry>
Schema. getMetadata()
Deprecated.Method parameters in org.talend.sdk.component.api.service.schema with type arguments of type Schema.Entry Modifier and Type Method Description void
Schema. setEntries(Collection<Schema.Entry> entries)
Deprecated.Constructor parameters in org.talend.sdk.component.api.service.schema with type arguments of type Schema.Entry Constructor Description Schema(Collection<Schema.Entry> entries)
Deprecated.
-