public enum OperatorType extends Enum<OperatorType>
| 枚举常量和说明 |
|---|
BETWEEN
Operation type
|
EQUAL |
GREATER_OR_EQUAL |
GREATER_THAN |
IGNORED |
LESS_OR_EQUAL |
LESS_THAN |
NOT_BETWEEN |
NOT_EQUAL |
public static final OperatorType BETWEEN
public static final OperatorType NOT_BETWEEN
public static final OperatorType EQUAL
public static final OperatorType NOT_EQUAL
public static final OperatorType GREATER_THAN
public static final OperatorType LESS_THAN
public static final OperatorType GREATER_OR_EQUAL
public static final OperatorType LESS_OR_EQUAL
public static final OperatorType IGNORED
public static OperatorType[] values()
for (OperatorType c : OperatorType.values()) System.out.println(c);
public static OperatorType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public int getType()
Copyright © 2021. All rights reserved.