public enum SqlDirtyType extends Enum<SqlDirtyType>
Enum Constant and Description |
---|
CHECK
Constant CHECK
|
IGNORE
Constant IGNORE
|
Modifier and Type | Method and Description |
---|---|
static SqlDirtyType |
fromValue(String value)
Method fromValue.
|
void |
setValue(String value) |
String |
toString()
Method toString.
|
String |
value()
Method value.
|
static SqlDirtyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlDirtyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlDirtyType CHECK
public static final SqlDirtyType IGNORE
public static SqlDirtyType[] values()
for (SqlDirtyType c : SqlDirtyType.values()) System.out.println(c);
public static SqlDirtyType 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 static SqlDirtyType fromValue(String value)
value
- public void setValue(String value)
value
- public String toString()
toString
in class Enum<SqlDirtyType>
public String value()
Copyright © 2013. All rights reserved.