public enum UnaryOperator extends Enum<UnaryOperator>
Enum Constant and Description |
---|
ABS |
ALL |
ANY |
AVG |
COUNT |
DISTINCT |
EXISTS |
INDEX |
ISEMPTY |
ISEMPTY_NOT |
ISNULL |
ISNULL_NOT |
LENGTH |
LOCATE |
LOWER |
MAX |
MIN |
MINUS |
SIZE |
SOME |
SQRT |
SUBSTRING |
SUM |
TIMES |
TRIM |
TYPE |
UPPER |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
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.
|
public static final UnaryOperator ABS
public static final UnaryOperator ALL
public static final UnaryOperator ANY
public static final UnaryOperator AVG
public static final UnaryOperator COUNT
public static final UnaryOperator DISTINCT
public static final UnaryOperator EXISTS
public static final UnaryOperator INDEX
public static final UnaryOperator ISEMPTY
public static final UnaryOperator ISEMPTY_NOT
public static final UnaryOperator ISNULL
public static final UnaryOperator ISNULL_NOT
public static final UnaryOperator LENGTH
public static final UnaryOperator LOCATE
public static final UnaryOperator LOWER
public static final UnaryOperator MAX
public static final UnaryOperator MIN
public static final UnaryOperator MINUS
public static final UnaryOperator SIZE
public static final UnaryOperator SOME
public static final UnaryOperator SQRT
public static final UnaryOperator SUBSTRING
public static final UnaryOperator SUM
public static final UnaryOperator TIMES
public static final UnaryOperator TRIM
public static final UnaryOperator TYPE
public static final UnaryOperator UPPER
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 String toString()
toString
in class Enum<UnaryOperator>
Copyright © 2006–2022 Apache Software Foundation. All rights reserved.