|
Groovy 1.8.4 | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectgroovy.lang.GroovyObjectSupport
groovy.sql.ResultSetMetaDataWrapper
public class ResultSetMetaDataWrapper extends GroovyObjectSupport
This class defines a wrapper for accessing a specific column in ResultSetMetaData
.
This allows iteration over columns using idiomatic Groovy, e.g.
meta.each {col -> println col.columnName }All
ResultSetMetaData
column methods taking a column index
are available on a column either as a no-arg getter or via a property.
This wrapper is created by an iterator invoked for ResultSetMetaData
.
Constructor Summary | |
ResultSetMetaDataWrapper(ResultSetMetaData target, int index)
|
Method Summary | |
---|---|
Object
|
getProperty(String property)
|
Object
|
invokeMethod(String name, Object args)
|
void
|
setProperty(String property, Object newValue)
|
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 ResultSetMetaDataWrapper(ResultSetMetaData target, int index)
Method Detail |
---|
@Override public Object getProperty(String property)
@Override public Object invokeMethod(String name, Object args)
@Override public void setProperty(String property, Object newValue)
Copyright © 2003-2011 The Codehaus. All rights reserved.