public enum JoinSyntax extends java.lang.Enum<JoinSyntax>
| Enum Constant and Description |
|---|
DATABASE |
SQL92 |
TRADITIONAL |
| Modifier and Type | Method and Description |
|---|---|
(package private) static JoinSyntax |
fromKernelConstant(int kernelConstant) |
(package private) int |
toKernelConstant() |
static JoinSyntax |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JoinSyntax[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JoinSyntax SQL92
public static final JoinSyntax TRADITIONAL
public static final JoinSyntax DATABASE
public static JoinSyntax[] values()
for (JoinSyntax c : JoinSyntax.values()) System.out.println(c);
public static JoinSyntax valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullint toKernelConstant()
static JoinSyntax fromKernelConstant(int kernelConstant)
Copyright © 2006-2013 Apache Software Foundation. All Rights Reserved.