public enum LogicalOp extends Enum<LogicalOp>
| Modifier and Type | Method and Description |
|---|---|
String |
getCode()
代号
|
static LogicalOp |
parse(String op)
解析
|
static LogicalOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogicalOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogicalOp and
public static final LogicalOp or
public static final LogicalOp not
public static LogicalOp[] values()
for (LogicalOp c : LogicalOp.values()) System.out.println(c);
public static LogicalOp 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 getCode()
Copyright © 2025. All rights reserved.