Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make datatype descriptions for numbers more clear... #4281

Merged
merged 1 commit into from
Sep 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions core/src/main/java/org/apache/hop/core/row/IValueMeta.java
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public interface IValueMeta extends Cloneable {
/** Value type indicating that the value has no type set */
int TYPE_NONE = 0;

/** Value type indicating that the value contains a floating point double precision number. */
/** Value type indicating that the value contains a floating point number, commonly double. */
int TYPE_NUMBER = 1;

/** Value type indicating that the value contains a text String. */
Expand All @@ -162,12 +162,12 @@ public interface IValueMeta extends Cloneable {
/** Value type indicating that the value contains a boolean. */
int TYPE_BOOLEAN = 4;

/** Value type indicating that the value contains a long integer. */
/** Value type indicating that the value contains an integer, commonly long. */
int TYPE_INTEGER = 5;

/**
* Value type indicating that the value contains a floating point precision number with arbitrary
* precision.
* Value type indicating that the value contains a fixed point precision number with variable
* precision, commonly decimal.
*/
int TYPE_BIGNUMBER = 6;

Expand Down
Loading