Uses of Class
org.azzyzt.jee.runtime.dto.query.LiteralType

Packages that use LiteralType
org.azzyzt.jee.runtime.dto.query   
 

Uses of LiteralType in org.azzyzt.jee.runtime.dto.query
 

Methods in org.azzyzt.jee.runtime.dto.query that return LiteralType
 LiteralType Literal.getType()
           
static LiteralType LiteralType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LiteralType[] LiteralType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.azzyzt.jee.runtime.dto.query with parameters of type LiteralType
static Literal Literal.parse(java.lang.String text, LiteralType type)
          Factory method that creates a Literal from a text.
 void Literal.setType(LiteralType type)
           
 

Constructors in org.azzyzt.jee.runtime.dto.query with parameters of type LiteralType
Literal(LiteralType type, java.lang.Object value)