public enum SqlStdEnum extends Enum<SqlStdEnum>
| Modifier and Type | Method and Description |
|---|---|
static SqlStdEnum |
getByName(String name) |
Integer |
getCode() |
String |
getName() |
static SqlStdEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlStdEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlStdEnum DolphinDB
public static final SqlStdEnum Oracle
public static final SqlStdEnum MySQL
public static SqlStdEnum[] values()
for (SqlStdEnum c : SqlStdEnum.values()) System.out.println(c);
public static SqlStdEnum 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 String getName()
public Integer getCode()
public static SqlStdEnum getByName(String name)
Copyright © 2026 DolphinDB. All rights reserved.