Uses of Enum
gudusoft.gsqlparser.ELiteralType
Packages that use ELiteralType
Package
Description
Provides the class
TGSqlParser necessary to create a SQL Parser and the classes a SQL Parser uses
internally to handle different SQL dialects.Provides the classes represents various SQL query parse tree node.
-
Uses of ELiteralType in gudusoft.gsqlparser
Methods in gudusoft.gsqlparser that return ELiteralTypeModifier and TypeMethodDescriptionstatic ELiteralTypeReturns the enum constant of this type with the specified name.static ELiteralType[]ELiteralType.values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of ELiteralType in gudusoft.gsqlparser.nodes
Methods in gudusoft.gsqlparser.nodes that return ELiteralTypeModifier and TypeMethodDescriptionTConstant.getLiteralType()get type of this constant, can be strings, integers, and floating point numbers and more.Methods in gudusoft.gsqlparser.nodes with parameters of type ELiteralTypeModifier and TypeMethodDescriptionstatic TConstantTConstant.createConstant(ELiteralType literalType, String valueStr) voidTConstant.setLiteralType(ELiteralType literalType) The type of this constant.Constructors in gudusoft.gsqlparser.nodes with parameters of type ELiteralTypeModifierConstructorDescriptionTConstant(ELiteralType pLiteralType) Class constructor, set the type of this constant while creating a new instance of the constantTConstant(ELiteralType literalType, TSourceToken valueToken) Class constructor, set the type and value of this constant when creating a new instance of the constantTConstant(ELiteralType literalType, TSourceToken valueToken, EIntervalType intervalType) Class constructor, set the type and value of this constant when creating a new instance of the constant.