Serializable
, Comparable<UnaryOperator>
, ToSql
public enum UnaryOperator extends Enum<UnaryOperator> implements ToSql
Enum Constant | Description |
---|---|
BitwiseNot |
|
Negative |
|
Not |
|
Positive |
Modifier and Type | Method | Description |
---|---|---|
void |
toSql(Appendable a) |
|
static UnaryOperator |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static UnaryOperator[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
comma, commaNames, doubleQuote, isEmpty, isNotEmpty, nullToEmpty, requireNotEmpty, singleQuote, toSql
public static final UnaryOperator BitwiseNot
public static final UnaryOperator Negative
public static final UnaryOperator Not
public static final UnaryOperator Positive
public static UnaryOperator[] values()
for (UnaryOperator c : UnaryOperator.values()) System.out.println(c);
public static UnaryOperator 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 void toSql(Appendable a) throws IOException
toSql
in interface ToSql
IOException
Copyright © 2018. All rights reserved.