public static enum SQLOver.WindowingBound extends Enum<SQLOver.WindowingBound>
| 枚举常量和说明 |
|---|
CURRENT_ROW |
FOLLOWING |
PRECEDING |
UNBOUNDED_FOLLOWING |
UNBOUNDED_PRECEDING |
| 限定符和类型 | 字段和说明 |
|---|---|
String |
name |
String |
name_lower |
public static final SQLOver.WindowingBound UNBOUNDED_PRECEDING
public static final SQLOver.WindowingBound PRECEDING
public static final SQLOver.WindowingBound CURRENT_ROW
public static final SQLOver.WindowingBound FOLLOWING
public static final SQLOver.WindowingBound UNBOUNDED_FOLLOWING
public static SQLOver.WindowingBound[] values()
for (SQLOver.WindowingBound c : SQLOver.WindowingBound.values()) System.out.println(c);
public static SQLOver.WindowingBound valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2013–2023. All rights reserved.