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