public enum EBoundaryType extends Enum<EBoundaryType>
Enum Constant and Description |
---|
ebtCurrentRow |
ebtFollowing |
ebtPreceding |
ebtUnboundedFollowing |
ebtUnboundedPreceding |
Modifier and Type | Method and Description |
---|---|
static EBoundaryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EBoundaryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EBoundaryType ebtUnboundedPreceding
public static final EBoundaryType ebtUnboundedFollowing
public static final EBoundaryType ebtCurrentRow
public static final EBoundaryType ebtPreceding
public static final EBoundaryType ebtFollowing
public static EBoundaryType[] values()
for (EBoundaryType c : EBoundaryType.values()) System.out.println(c);
public static EBoundaryType 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 © 2019. All rights reserved.