public enum BOOLEAN_OPERATOR extends Enum<BOOLEAN_OPERATOR>
| Modifier and Type | Method and Description |
|---|---|
static BOOLEAN_OPERATOR |
byName(String name) |
String |
getCustomOperator() |
String |
getName() |
static BOOLEAN_OPERATOR |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BOOLEAN_OPERATOR[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BOOLEAN_OPERATOR OR
public static final BOOLEAN_OPERATOR AND
public static final BOOLEAN_OPERATOR XOR
public static final BOOLEAN_OPERATOR SURROGATE
public static BOOLEAN_OPERATOR[] values()
for (BOOLEAN_OPERATOR c : BOOLEAN_OPERATOR.values()) System.out.println(c);
public static BOOLEAN_OPERATOR 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_OPERATOR byName(String name)
public String getName()
public String getCustomOperator()
Copyright © 2001–2020 JBoss by Red Hat. All rights reserved.