Package hydra.dsl
Interface LiteralTypes
-
public interface LiteralTypes
DSL utilities for working with literal types.
-
-
Method Summary
Static Methods Modifier and Type Method Description static LiteralType
bigfloat()
static LiteralType
bigint()
static LiteralType
binary()
static LiteralType
boolean_()
static LiteralType
float_(FloatType ftype)
static LiteralType
float32()
static LiteralType
float64()
static LiteralType
int16()
static LiteralType
int32()
static LiteralType
int64()
static LiteralType
int8()
static LiteralType
integer(IntegerType itype)
static java.lang.String
showLiteralType(LiteralType type)
Encode a literal type as a string.static LiteralType
string()
static LiteralType
uint16()
static LiteralType
uint32()
static LiteralType
uint64()
static LiteralType
uint8()
-
-
-
Method Detail
-
bigfloat
static LiteralType bigfloat()
-
bigint
static LiteralType bigint()
-
binary
static LiteralType binary()
-
boolean_
static LiteralType boolean_()
-
float32
static LiteralType float32()
-
float64
static LiteralType float64()
-
float_
static LiteralType float_(FloatType ftype)
-
int16
static LiteralType int16()
-
int32
static LiteralType int32()
-
int64
static LiteralType int64()
-
int8
static LiteralType int8()
-
integer
static LiteralType integer(IntegerType itype)
-
string
static LiteralType string()
-
uint16
static LiteralType uint16()
-
uint32
static LiteralType uint32()
-
uint64
static LiteralType uint64()
-
uint8
static LiteralType uint8()
-
showLiteralType
static java.lang.String showLiteralType(LiteralType type)
Encode a literal type as a string.
-
-