public enum ExecuteWithoutWhere extends Enum<ExecuteWithoutWhere>
Java class for ExecuteWithoutWhere.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ExecuteWithoutWhere">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="IGNORE"/>
<enumeration value="LOG_DEBUG"/>
<enumeration value="LOG_INFO"/>
<enumeration value="LOG_WARN"/>
<enumeration value="THROW"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
IGNORE |
LOG_DEBUG |
LOG_INFO |
LOG_WARN |
THROW |
| Modifier and Type | Method and Description |
|---|---|
static ExecuteWithoutWhere |
fromValue(String v) |
String |
value() |
static ExecuteWithoutWhere |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecuteWithoutWhere[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecuteWithoutWhere IGNORE
public static final ExecuteWithoutWhere LOG_DEBUG
public static final ExecuteWithoutWhere LOG_INFO
public static final ExecuteWithoutWhere LOG_WARN
public static final ExecuteWithoutWhere THROW
public static ExecuteWithoutWhere[] values()
for (ExecuteWithoutWhere c : ExecuteWithoutWhere.values()) System.out.println(c);
public static ExecuteWithoutWhere 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 value()
public static ExecuteWithoutWhere fromValue(String v)
Copyright © 2019. All rights reserved.