public enum DbExpectedEnum extends Enum<DbExpectedEnum>
遵守 CompareEnum 标准
Enum Constant and Description |
---|
EQ
等于(equal to)
|
GE
大于等于(greater than or equal to)
|
Modifier and Type | Method and Description |
---|---|
static DbExpectedEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DbExpectedEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DbExpectedEnum EQ
public static final DbExpectedEnum GE
public static DbExpectedEnum[] values()
for (DbExpectedEnum c : DbExpectedEnum.values()) System.out.println(c);
public static DbExpectedEnum 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 © 2022 Pivotal Software, Inc.. All rights reserved.