public enum SQLiteJoinTypes extends Enum<SQLiteJoinTypes>
| Modifier and Type | Method and Description |
|---|---|
dev.tuxjsql.core.sql.select.JoinType |
getJoinType() |
String |
getKey() |
static SQLiteJoinTypes |
getType(dev.tuxjsql.core.sql.select.JoinType type) |
static SQLiteJoinTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SQLiteJoinTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLiteJoinTypes INNER
public static final SQLiteJoinTypes LEFT
public static final SQLiteJoinTypes RIGHT
public static final SQLiteJoinTypes FULL
public static SQLiteJoinTypes[] values()
for (SQLiteJoinTypes c : SQLiteJoinTypes.values()) System.out.println(c);
public static SQLiteJoinTypes 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 getKey()
public dev.tuxjsql.core.sql.select.JoinType getJoinType()
public static SQLiteJoinTypes getType(dev.tuxjsql.core.sql.select.JoinType type)
Copyright © 2019. All rights reserved.