public enum BoolOp extends Enum<BoolOp>
Modifier and Type | Method and Description |
---|---|
BoolOp |
getDemorgan() |
Precedence |
getPrecedence() |
String |
getShowAs() |
static BoolOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoolOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static BoolOp[] values()
for (BoolOp c : BoolOp.values()) System.out.println(c);
public static BoolOp 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 getShowAs()
public Precedence getPrecedence()
public BoolOp getDemorgan()
Copyright © 2011-2021. All Rights Reserved.