Enumeration: JavaType
layline.io's primitive data types are based on Java's primitve data types. This is important to understand when working with data within layline.io This is for example both relevant when
- defining data formats (e.g. [Generic Formats]../../../../assets/formats/asset-format-generic))
- working with Javascript in the contet of the Javascript Flow Processor
This enumeration definition is simply to provide a map from layline.io's data types to the respective Java primitive data types.
Do not use e.g. "JavaType.BigDecimal
" anywhere. It will not work.
Enumeration Members
BigDecimal
BigDecimal:
"java.math.BigDecimal"
BigInteger
BigInteger:
"java.math.BigInteger"
Byte
Byte:
"java.lang.Byte"
ByteString
ByteString:
"java.lang.ByteString"
Character
Character:
"java.lang.Character"
Double
Double:
"java.lang.Double"
Integer
Integer:
"java.lang.Integer"
Long
Long:
"java.lang.Long"
Number
Number:
"java.lang.Number"
OffsetDateTime
OffsetDateTime:
"java.time.OffsetDateTime"
String
String:
"java.lang.String"