public static enum FrameBound.Type extends Enum<FrameBound.Type>
| Enum Constant and Description |
|---|
CURRENT_ROW |
FOLLOWING |
PRECEDING |
UNBOUNDED_FOLLOWING |
UNBOUNDED_PRECEDING |
| Modifier and Type | Method and Description |
|---|---|
static FrameBound.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FrameBound.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FrameBound.Type UNBOUNDED_PRECEDING
public static final FrameBound.Type PRECEDING
public static final FrameBound.Type CURRENT_ROW
public static final FrameBound.Type FOLLOWING
public static final FrameBound.Type UNBOUNDED_FOLLOWING
public static FrameBound.Type[] values()
for (FrameBound.Type c : FrameBound.Type.values()) System.out.println(c);
public static FrameBound.Type 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 nullCopyright © 2012–2023. All rights reserved.