public enum HintType extends Enum<HintType>
| 枚举常量和说明 |
|---|
After_CrudKey
select hint ... from table ...
|
After_Table
select ... from table hint ...
|
Before_All
hint select ...
|
Before_Table
select ... from hint table ...
|
public static final HintType Before_All
public static final HintType After_CrudKey
public static final HintType Before_Table
public static final HintType After_Table
public static HintType[] values()
for (HintType c : HintType.values()) System.out.println(c);
public static HintType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2021. All rights reserved.