public enum NullEqualityOperator extends Enum<NullEqualityOperator>
Enum Constant and Description |
---|
IS_NOT_NULL |
IS_NULL |
Modifier and Type | Method and Description |
---|---|
static boolean |
contains(String operator) |
boolean |
matches(String operator) |
static String |
resolveOperator(String operator) |
static NullEqualityOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NullEqualityOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NullEqualityOperator IS_NULL
public static final NullEqualityOperator IS_NOT_NULL
public static NullEqualityOperator[] values()
for (NullEqualityOperator c : NullEqualityOperator.values()) System.out.println(c);
public static NullEqualityOperator 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 static boolean contains(String operator)
public boolean matches(String operator)
Copyright © 2001–2020 JBoss by Red Hat. All rights reserved.