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