This is an automated email from the ASF dual-hosted git repository.
nadment pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hop.git
The following commit(s) were added to refs/heads/master by this push:
new be70e6fa1d Update userdefinedjavaclass.adoc
be70e6fa1d is described below
commit be70e6fa1d4bf180c2766edc4c21d10fc215118b
Author: Nicolas Adment <[email protected]>
AuthorDate: Mon Nov 13 19:48:45 2023 +0100
Update userdefinedjavaclass.adoc
---
.../ROOT/pages/pipeline/transforms/userdefinedjavaclass.adoc | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/docs/hop-user-manual/modules/ROOT/pages/pipeline/transforms/userdefinedjavaclass.adoc
b/docs/hop-user-manual/modules/ROOT/pages/pipeline/transforms/userdefinedjavaclass.adoc
index f42d5aee8b..a997739260 100644
---
a/docs/hop-user-manual/modules/ROOT/pages/pipeline/transforms/userdefinedjavaclass.adoc
+++
b/docs/hop-user-manual/modules/ROOT/pages/pipeline/transforms/userdefinedjavaclass.adoc
@@ -209,7 +209,7 @@ For example, to start, examine the following description of
an input row.
[source,java]
----
-RowMetaInterface inputRowMeta = getInputRowMeta();
+IRowMeta inputRowMeta = getInputRowMeta();
----
The inputRowMeta object contains the metadata of the input row.
@@ -219,7 +219,7 @@ For example, if you want to look for a field called
customer, you would use the
[source,java]
----
-ValueMetaInterface customer = inputRowMeta.searchValueMeta("year");
+IValueMeta customer = inputRowMeta.searchValueMeta("year");
----
Because looking up field names can be slow if you need to do it for every row
that passes through a pipeline, you could look up field names in advance in a
first block of code, as shown in the following example:
@@ -255,4 +255,4 @@ This method also takes into account the index-based
optimization mentioned above
== Metadata Injection Support
All fields of this transform support metadata injection.
-You can use this transform with ETL Metadata Injection to pass metadata to
your pipeline at runtime.
\ No newline at end of file
+You can use this transform with ETL Metadata Injection to pass metadata to
your pipeline at runtime.