|
Groovy 2.2.0 | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object groovy.lang.GroovyObjectSupport groovy.sql.GroovyRowResult
public class GroovyRowResult extends GroovyObjectSupport
Represents an extent of objects. It's used in the oneRow method to be able to access the result of a SQL query by the name of the column, or by the column number.
Constructor Summary | |
GroovyRowResult(Map result)
|
Method Summary | |
---|---|
void
|
clear()
|
boolean
|
containsKey(Object key)
|
boolean
|
containsValue(Object value)
|
Set
|
entrySet()
|
boolean
|
equals(Object o)
|
Object
|
get(Object property)
|
Object
|
getAt(int index)
Retrieve the value of the property by its index. |
Object
|
getProperty(String property)
Retrieve the value of the property by its name |
int
|
hashCode()
|
boolean
|
isEmpty()
|
Set
|
keySet()
|
Object
|
put(Object key, Object value)
|
void
|
putAll(Map t)
|
Object
|
remove(Object rawKey)
|
int
|
size()
|
String
|
toString()
|
Collection
|
values()
|
Methods inherited from class GroovyObjectSupport | |
---|---|
getMetaClass, getProperty, invokeMethod, setMetaClass, setProperty |
Methods inherited from class Object | |
---|---|
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Constructor Detail |
---|
public GroovyRowResult(Map result)
Method Detail |
---|
public void clear()
public boolean containsKey(Object key)
public boolean containsValue(Object value)
public Set entrySet()
public boolean equals(Object o)
public Object get(Object property)
public Object getAt(int index)
index
- is the number of the column to look at
public Object getProperty(String property)
property
- is the name of the property to look at
public int hashCode()
public boolean isEmpty()
public Set keySet()
@SuppressWarningsreturn result.put(key, value); public Object put(Object key, Object value)
@SuppressWarningsresult.putAll(t); public void putAll(Map t)
public Object remove(Object rawKey)
public int size()
public String toString()
public Collection values()
Copyright © 2003-2013 The Codehaus. All rights reserved.