Uses of Class
groovy.lang.GString

Packages that use GString
groovy.lang Core Groovy language classes for implementing data structures, closures, metadata and so forth. 
groovy.sql Groovy helper classes for working with SQL data as Groovy objects 
org.codehaus.groovy.runtime Runtime classes for Groovy - whether the dynamic interpreter is being used, the compiler or the bytecode generator. 
 

Uses of GString in groovy.lang
 

Fields in groovy.lang declared as GString
static GString GString.EMPTY
          A GString containing a single empty String and no values.
 

Methods in groovy.lang that return GString
 GString GString.plus(GString that)
           
 GString GString.plus(java.lang.String that)
           
 

Methods in groovy.lang with parameters of type GString
 boolean GString.equals(GString that)
           
 GString GString.plus(GString that)
           
 

Uses of GString in groovy.sql
 

Methods in groovy.sql with parameters of type GString
protected  java.lang.String Sql.asSql(GString gstring, java.util.List values)
          Hook to allow derived classes to override sql generation from Gstrings.
 int Sql.call(GString gstring)
          Performs a stored procedure call with the given parameters.
 void Sql.call(GString gstring, Closure closure)
          Performs a stored procedure call with the given parameters, calling the closure once with all result objects.
 void Sql.eachRow(GString gstring, Closure closure)
          Performs the given SQL query calling the closure with the result set.
 boolean Sql.execute(GString gstring)
          Executes the given SQL with embedded expressions inside.
 java.util.List Sql.executeInsert(GString gstring)
          Executes the given SQL with embedded expressions inside, and returns the values of any auto-generated colums, such as an autoincrement ID field.
 int Sql.executeUpdate(GString gstring)
          Executes the given SQL update with embedded expressions inside.
 java.lang.Object Sql.firstRow(GString gstring)
          Performs the given SQL query and return the first row of the result set.
protected  java.util.List Sql.getParameters(GString gstring)
          Hook to allow derived classes to override behavior associated with extracting params from a GString.
 void Sql.query(GString gstring, Closure closure)
          Performs the given SQL query calling the closure with the result set.
 java.util.List Sql.rows(GString gstring)
          Performs the given SQL query and return the rows of the result set.
 

Uses of GString in org.codehaus.groovy.runtime
 

Subclasses of GString in org.codehaus.groovy.runtime
 class GStringImpl
          Default implementation of a GString used by the compiler.
 

Methods in org.codehaus.groovy.runtime with parameters of type GString
static java.lang.Object DefaultGroovyMethods.asType(GString self, java.lang.Class c)
          Converts the GString to a File, or delegates to the default DefaultGroovyMethods.asType(Object,Class)
static boolean DefaultGroovyMethods.isCase(GString caseValue, java.lang.Object switchValue)
          'Case' implementation for a GString, which simply calls the equivalet method for String.
static java.lang.String[] DefaultGroovyMethods.split(GString self)
          Convenience method to split a GString (with whitespace as delimiter).
 



Copyright © ${year} The Codehaus. All Rights Reserved.