Package | Description |
---|---|
ai.rapids.cudf.ast |
Modifier and Type | Method and Description |
---|---|
static Literal |
Literal.ofBoolean(boolean value)
Construct a boolean literal with the specified value.
|
static Literal |
Literal.ofBoolean(Boolean value)
Construct a boolean literal with the specified value or null.
|
static Literal |
Literal.ofByte(byte value)
Construct a byte literal with the specified value.
|
static Literal |
Literal.ofByte(Byte value)
Construct a byte literal with the specified value or null.
|
static Literal |
Literal.ofDouble(double value)
Construct a double literal with the specified value.
|
static Literal |
Literal.ofDouble(Double value)
Construct a double literal with the specified value or null.
|
static Literal |
Literal.ofDurationDaysFromInt(int value)
Construct a duration days literal with the specified value.
|
static Literal |
Literal.ofDurationDaysFromInt(Integer value)
Construct a duration days literal with the specified value or null.
|
static Literal |
Literal.ofDurationFromLong(DType type,
long value)
Construct a long-based duration literal with the specified value.
|
static Literal |
Literal.ofDurationFromLong(DType type,
Long value)
Construct a long-based duration literal with the specified value or null.
|
static Literal |
Literal.ofFloat(float value)
Construct a float literal with the specified value.
|
static Literal |
Literal.ofFloat(Float value)
Construct a float literal with the specified value or null.
|
static Literal |
Literal.ofInt(int value)
Construct an integer literal with the specified value.
|
static Literal |
Literal.ofInt(Integer value)
Construct an integer literal with the specified value or null.
|
static Literal |
Literal.ofLong(long value)
Construct a long literal with the specified value.
|
static Literal |
Literal.ofLong(Long value)
Construct a long literal with the specified value or null.
|
static Literal |
Literal.ofNull(DType type)
Construct a null literal of the specified type.
|
static Literal |
Literal.ofShort(short value)
Construct a short literal with the specified value.
|
static Literal |
Literal.ofShort(Short value)
Construct a short literal with the specified value or null.
|
static Literal |
Literal.ofString(String value)
Construct a string literal with the specified value or null.
|
static Literal |
Literal.ofTimestampDaysFromInt(int value)
Construct a timestamp days literal with the specified value.
|
static Literal |
Literal.ofTimestampDaysFromInt(Integer value)
Construct a timestamp days literal with the specified value or null.
|
static Literal |
Literal.ofTimestampFromLong(DType type,
long value)
Construct a long-based timestamp literal with the specified value.
|
static Literal |
Literal.ofTimestampFromLong(DType type,
Long value)
Construct a long-based timestamp literal with the specified value or null.
|
static Literal |
Literal.ofUTF8String(byte[] stringBytes)
Construct a string literal directly with byte array to skip transcoding.
|
Copyright © 2024. All rights reserved.