public enum NaryLogicalOperator extends Enum<NaryLogicalOperator>
Modifier and Type | Method and Description |
---|---|
static NaryLogicalOperator |
fromString(String s) |
String |
toString() |
static NaryLogicalOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NaryLogicalOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NaryLogicalOperator _and
public static final NaryLogicalOperator _or
public static NaryLogicalOperator[] values()
for (NaryLogicalOperator c : NaryLogicalOperator.values()) System.out.println(c);
public static NaryLogicalOperator 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<NaryLogicalOperator>
public static NaryLogicalOperator fromString(String s)
Copyright © 2014. All rights reserved.