public enum MySQLColumnDefinitionFlag extends Enum<MySQLColumnDefinitionFlag>
| Enum Constant and Description |
|---|
AUTO_INCREMENT |
BINARY_COLLATION |
BLOB |
ENUM |
MULTIPLE_KEY |
NO_DEFAULT_VALUE_FLAG |
NOT_NULL |
NUM_FLAG |
ON_UPDATE_NOW_FLAG |
PRIMARY_KEY |
SET |
TIMESTAMP |
UNIQUE_KEY |
UNSIGNED |
ZEROFILL_FLAG |
| Modifier and Type | Method and Description |
|---|---|
static MySQLColumnDefinitionFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MySQLColumnDefinitionFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MySQLColumnDefinitionFlag NOT_NULL
public static final MySQLColumnDefinitionFlag PRIMARY_KEY
public static final MySQLColumnDefinitionFlag UNIQUE_KEY
public static final MySQLColumnDefinitionFlag MULTIPLE_KEY
public static final MySQLColumnDefinitionFlag BLOB
public static final MySQLColumnDefinitionFlag UNSIGNED
public static final MySQLColumnDefinitionFlag ZEROFILL_FLAG
public static final MySQLColumnDefinitionFlag BINARY_COLLATION
public static final MySQLColumnDefinitionFlag ENUM
public static final MySQLColumnDefinitionFlag AUTO_INCREMENT
public static final MySQLColumnDefinitionFlag TIMESTAMP
public static final MySQLColumnDefinitionFlag SET
public static final MySQLColumnDefinitionFlag NO_DEFAULT_VALUE_FLAG
public static final MySQLColumnDefinitionFlag ON_UPDATE_NOW_FLAG
public static final MySQLColumnDefinitionFlag NUM_FLAG
public static MySQLColumnDefinitionFlag[] values()
for (MySQLColumnDefinitionFlag c : MySQLColumnDefinitionFlag.values()) System.out.println(c);
public static MySQLColumnDefinitionFlag 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 © 2023 The Apache Software Foundation. All rights reserved.