public static enum SqlServerType.Category extends Enum<SqlServerType.Category>
| Enum Constant and Description |
|---|
BINARY |
CHARACTER |
DATE |
DATETIME |
DATETIME2 |
DATETIMEOFFSET |
GUID |
LONG_BINARY |
LONG_CHARACTER |
LONG_NCHARACTER |
NCHARACTER |
NUMERIC |
SQL_VARIANT |
TIME |
TIMESTAMP |
UDT |
UNKNOWN |
XML |
| Modifier and Type | Method and Description |
|---|---|
static SqlServerType.Category |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlServerType.Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlServerType.Category BINARY
public static final SqlServerType.Category CHARACTER
public static final SqlServerType.Category DATE
public static final SqlServerType.Category DATETIME
public static final SqlServerType.Category DATETIME2
public static final SqlServerType.Category DATETIMEOFFSET
public static final SqlServerType.Category GUID
public static final SqlServerType.Category LONG_BINARY
public static final SqlServerType.Category LONG_CHARACTER
public static final SqlServerType.Category LONG_NCHARACTER
public static final SqlServerType.Category NCHARACTER
public static final SqlServerType.Category NUMERIC
public static final SqlServerType.Category UNKNOWN
public static final SqlServerType.Category TIME
public static final SqlServerType.Category TIMESTAMP
public static final SqlServerType.Category UDT
public static final SqlServerType.Category SQL_VARIANT
public static final SqlServerType.Category XML
public static SqlServerType.Category[] values()
for (SqlServerType.Category c : SqlServerType.Category.values()) System.out.println(c);
public static SqlServerType.Category 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. All rights reserved.