public enum WhereType extends Enum<WhereType>
public static final WhereType AND
public static final WhereType OR
public static final WhereType AND_IN
public static final WhereType OR_IN
public static final WhereType LIKE
public static final WhereType LEFT_LIKE
public static final WhereType RIGHT_LIKE
public static final WhereType NE
public static final WhereType GT
public static final WhereType GE
public static final WhereType LT
public static final WhereType LE
public static WhereType[] values()
for (WhereType c : WhereType.values()) System.out.println(c);
public static WhereType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2022 lingkang. All rights reserved.