public enum ResultSetConcurrency extends Enum<ResultSetConcurrency>
| Modifier and Type | Method and Description | 
|---|---|
int | 
getType()  | 
static ResultSetConcurrency | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ResultSetConcurrency[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ResultSetConcurrency READ_ONLY
public static final ResultSetConcurrency UPDATABLE
public static ResultSetConcurrency[] values()
for (ResultSetConcurrency c : ResultSetConcurrency.values()) System.out.println(c);
public static ResultSetConcurrency 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 int getType()
Copyright © 2020 Eclipse. All rights reserved.