public enum ResultSetGetter extends Enum<ResultSetGetter>
| Enum Constant and Description | 
|---|
| ARRAYgetArray Method. | 
| ASCII_STREAMgetAsciiStream Method. | 
| BIG_DECIMALgetBigDecimal Method. | 
| BINARY_STREAMgetBinaryStream Method. | 
| BLOBgetBlob Method. | 
| BOOLEANgetBoolean Method. | 
| BYTEgetByte Method. | 
| BYTESgetBytes Method. | 
| CHARACTER_STREAMgetCharacterStream Method. | 
| CLOBgetClob Method. | 
| DATEgetDate Method. | 
| DOUBLEgetDouble Method. | 
| FLOATgetFloat Method. | 
| INTgetInt Method. | 
| LONGgetLong Method. | 
| OBJECTgetObject Method. | 
| REFgetRef Method. | 
| SHORTgetShort Method. | 
| STRINGgetString Method. | 
| TIMEgetTime Method. | 
| TIMESTAMPgetTimestamp Method. | 
| UNICODE_STREAMgetUnicodeStream Method. | 
| URLgetURL Method. | 
| Modifier and Type | Method and Description | 
|---|---|
| static ResultSetGetter | getByMethodName(String methodName)Retursn the ResultSetGetter with the given method name. | 
| String | getMethod()Returns the method name. | 
| String | toString()Returns the method name. | 
| static ResultSetGetter | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ResultSetGetter[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ResultSetGetter ARRAY
public static final ResultSetGetter ASCII_STREAM
public static final ResultSetGetter BIG_DECIMAL
public static final ResultSetGetter BINARY_STREAM
public static final ResultSetGetter BLOB
public static final ResultSetGetter BOOLEAN
public static final ResultSetGetter BYTE
public static final ResultSetGetter BYTES
public static final ResultSetGetter CHARACTER_STREAM
public static final ResultSetGetter CLOB
public static final ResultSetGetter DATE
public static final ResultSetGetter DOUBLE
public static final ResultSetGetter FLOAT
public static final ResultSetGetter INT
public static final ResultSetGetter LONG
public static final ResultSetGetter OBJECT
public static final ResultSetGetter REF
public static final ResultSetGetter SHORT
public static final ResultSetGetter STRING
public static final ResultSetGetter TIME
public static final ResultSetGetter TIMESTAMP
public static final ResultSetGetter UNICODE_STREAM
public static final ResultSetGetter URL
public static ResultSetGetter[] values()
for (ResultSetGetter c : ResultSetGetter.values()) System.out.println(c);
public static ResultSetGetter valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getMethod()
public String toString()
toString in class Enum<ResultSetGetter>public static ResultSetGetter getByMethodName(String methodName)
methodName - the method name.IllegalArgumentException - if no matching ResultSetGetter
         exists.Copyright © 2000–2020 The Apache Software Foundation. All rights reserved.