public enum MySqlSqlCacheFlags extends Enum<MySqlSqlCacheFlags>
| Enum Constant and Description |
|---|
SQL_CACHE |
SQL_NO_CACHE |
| Modifier and Type | Method and Description |
|---|---|
static MySqlSqlCacheFlags |
from(String flag) |
static MySqlSqlCacheFlags |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MySqlSqlCacheFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MySqlSqlCacheFlags SQL_CACHE
public static final MySqlSqlCacheFlags SQL_NO_CACHE
public static MySqlSqlCacheFlags[] values()
for (MySqlSqlCacheFlags c : MySqlSqlCacheFlags.values()) System.out.println(c);
public static MySqlSqlCacheFlags 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 MySqlSqlCacheFlags from(String flag)
Copyright © 2004–2024 JSQLParser. All rights reserved.