public static enum Table.AsOfMatchRule extends Enum<Table.AsOfMatchRule>
| Enum Constant and Description |
|---|
GREATER_THAN |
GREATER_THAN_EQUAL |
LESS_THAN |
LESS_THAN_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
static Table.AsOfMatchRule |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Table.AsOfMatchRule[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Table.AsOfMatchRule LESS_THAN_EQUAL
public static final Table.AsOfMatchRule LESS_THAN
public static final Table.AsOfMatchRule GREATER_THAN_EQUAL
public static final Table.AsOfMatchRule GREATER_THAN
public static Table.AsOfMatchRule[] values()
for (Table.AsOfMatchRule c : Table.AsOfMatchRule.values()) System.out.println(c);
public static Table.AsOfMatchRule 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