public static enum DbInternal.Search extends Enum<DbInternal.Search>
Enum Constant and Description |
---|
GT
Match the smallest value greater than the key or data param.
|
GTE
Match the smallest value greater than or equal to the key or data
param.
|
LT
Match the largest value less than the key or data param.
|
LTE
Match the largest value less than or equal to the key or data param.
|
Modifier and Type | Method and Description |
---|---|
static DbInternal.Search |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DbInternal.Search[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DbInternal.Search GT
public static final DbInternal.Search GTE
public static final DbInternal.Search LT
public static final DbInternal.Search LTE
public static DbInternal.Search[] values()
for (DbInternal.Search c : DbInternal.Search.values()) System.out.println(c);
public static DbInternal.Search 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 (c) 2002, 2015 Oracle and/or its affiliates. All rights reserved.