public enum StringColumnKind extends Enum<StringColumnKind>
| Enum Constant and Description |
|---|
CHAR |
LONGTEXT |
MEDIUMTEXT |
SMALLTEXT |
TEXT |
TINYTEXT |
VARCHAR |
| Modifier and Type | Method and Description |
|---|---|
static StringColumnKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StringColumnKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringColumnKind CHAR
public static final StringColumnKind VARCHAR
public static final StringColumnKind TEXT
public static final StringColumnKind LONGTEXT
public static final StringColumnKind MEDIUMTEXT
public static final StringColumnKind SMALLTEXT
public static final StringColumnKind TINYTEXT
public static StringColumnKind[] values()
for (StringColumnKind c : StringColumnKind.values()) System.out.println(c);
public static StringColumnKind 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 © 2015 Objectos Software LTDA. All rights reserved.