|
Groovy 2.2.0 | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object groovy.lang.GroovyObjectSupport groovy.lang.GString
public abstract class GString extends GroovyObjectSupport
Represents a String which contains embedded values such as "hello there ${user} how are you?" which can be evaluated lazily. Advanced users can iterate over the text and values to perform special processing, such as for performing SQL operations, the values can be substituted for ? and the actual value objects can be bound to a JDBC statement. The lovely name of this class was suggested by Jules Gosnell and was such a good idea, I couldn't resist :)
Field Summary | |
---|---|
static GString |
EMPTY
A GString containing a single empty String and no values. |
Constructor Summary | |
GString(Object values)
|
|
GString(Object[] values)
|
Method Summary | |
---|---|
void
|
build(GroovyObject builder)
|
char
|
charAt(int index)
|
int
|
compareTo(Object that)
|
boolean
|
equals(Object that)
|
boolean
|
equals(GString that)
|
byte[]
|
getBytes()
|
byte[]
|
getBytes(String charset)
|
String[]
|
getStrings()
|
Object
|
getValue(int idx)
|
int
|
getValueCount()
|
Object[]
|
getValues()
|
int
|
hashCode()
|
Object
|
invokeMethod(String name, Object args)
Overloaded to implement duck typing for Strings so that any method that can't be evaluated on this object will be forwarded to the toString() object instead. |
int
|
length()
|
Pattern
|
negate()
Turns a String into a regular expression pattern |
GString
|
plus(GString that)
|
GString
|
plus(String that)
|
CharSequence
|
subSequence(int start, int end)
|
String
|
toString()
|
Writer
|
writeTo(Writer out)
|
Methods inherited from class GroovyObjectSupport | |
---|---|
getMetaClass, getProperty, invokeMethod, setMetaClass, setProperty |
Methods inherited from class Object | |
---|---|
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Field Detail |
---|
public static final GString EMPTY
Constructor Detail |
---|
public GString(Object values)
public GString(Object[] values)
Method Detail |
---|
public void build(GroovyObject builder)
public char charAt(int index)
public int compareTo(Object that)
public boolean equals(Object that)
public boolean equals(GString that)
public byte[] getBytes()
public byte[] getBytes(String charset)
public String[] getStrings()
public Object getValue(int idx)
public int getValueCount()
public Object[] getValues()
public int hashCode()
public Object invokeMethod(String name, Object args)
public int length()
public Pattern negate()
public GString plus(GString that)
public GString plus(String that)
public CharSequence subSequence(int start, int end)
public String toString()
public Writer writeTo(Writer out)
Copyright © 2003-2013 The Codehaus. All rights reserved.