public enum SQLUnaryOperator extends Enum<SQLUnaryOperator>
Enum Constant and Description |
---|
BINARY |
Compl |
ConnectByRoot |
Negative |
Not |
NOT |
Plus |
Pound |
Prior |
RAW |
Modifier and Type | Method and Description |
---|---|
static SQLUnaryOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SQLUnaryOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLUnaryOperator Plus
public static final SQLUnaryOperator Negative
public static final SQLUnaryOperator Not
public static final SQLUnaryOperator Compl
public static final SQLUnaryOperator Prior
public static final SQLUnaryOperator ConnectByRoot
public static final SQLUnaryOperator BINARY
public static final SQLUnaryOperator RAW
public static final SQLUnaryOperator NOT
public static final SQLUnaryOperator Pound
public final String name
public static SQLUnaryOperator[] values()
for (SQLUnaryOperator c : SQLUnaryOperator.values()) System.out.println(c);
public static SQLUnaryOperator 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 © 2013–2017 Alibaba Group. All rights reserved.