Package org.apache.ibatis.annotations
Enum Options.FlushCachePolicy
- java.lang.Object
-
- java.lang.Enum<Options.FlushCachePolicy>
-
- org.apache.ibatis.annotations.Options.FlushCachePolicy
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Options.FlushCachePolicy>
,java.lang.constant.Constable
- Enclosing class:
- Options
public static enum Options.FlushCachePolicy extends java.lang.Enum<Options.FlushCachePolicy>
The options for theOptions.flushCache()
. The default isDEFAULT
-
-
Method Summary
Modifier and Type Method Description static Options.FlushCachePolicy
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Options.FlushCachePolicy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT
public static final Options.FlushCachePolicy DEFAULT
false
for select statement;true
for insert/update/delete statement.
-
TRUE
public static final Options.FlushCachePolicy TRUE
Flushes cache regardless of the statement type.
-
FALSE
public static final Options.FlushCachePolicy FALSE
Does not flush cache regardless of the statement type.
-
-
Method Detail
-
values
public static Options.FlushCachePolicy[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Options.FlushCachePolicy valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-