public static enum StoredProcedure.SQL extends Enum<StoredProcedure.SQL>
Modifier and Type | Method and Description |
---|---|
static StoredProcedure.SQL |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StoredProcedure.SQL[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StoredProcedure.SQL NONE
public static final StoredProcedure.SQL MODIFY
public static final StoredProcedure.SQL READ
public static final StoredProcedure.SQL CONTAINS
public static StoredProcedure.SQL[] values()
for (StoredProcedure.SQL c : StoredProcedure.SQL.values()) System.out.println(c);
public static StoredProcedure.SQL 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 nullCopyright © 2006–2020 Apache Software Foundation. All rights reserved.