public enum CombinationOperator extends Enum<CombinationOperator>
| Modifier and Type | Method and Description |
|---|---|
static CombinationOperator |
translateOperatorCodeToEnum(short combinationOperatorCode) |
static CombinationOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CombinationOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CombinationOperator OR
public static final CombinationOperator AND
public static final CombinationOperator XOR
public static final CombinationOperator XNOR
public static final CombinationOperator REPLACE
public static CombinationOperator[] values()
for (CombinationOperator c : CombinationOperator.values()) System.out.println(c);
public static CombinationOperator 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 CombinationOperator translateOperatorCodeToEnum(short combinationOperatorCode)
Copyright © 2015. All rights reserved.