public enum SetOperations extends java.lang.Enum<SetOperations> implements ErrorMessanger
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
errorMessage(Value compared,
java.lang.String with) |
static SetOperations |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SetOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SetOperations IN
public static final SetOperations NOTIN
public static SetOperations[] values()
for (SetOperations c : SetOperations.values()) System.out.println(c);
public static SetOperations valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String errorMessage(Value compared, java.lang.String with)
errorMessage in interface ErrorMessanger