public enum CriteriaLogicalEnum extends Enum<CriteriaLogicalEnum>
Modifier and Type | Method and Description |
---|---|
static CriteriaLogicalEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CriteriaLogicalEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CriteriaLogicalEnum AND
public static final CriteriaLogicalEnum OR
public static CriteriaLogicalEnum[] values()
for (CriteriaLogicalEnum c : CriteriaLogicalEnum.values()) System.out.println(c);
public static CriteriaLogicalEnum 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 © 2020 IBIT程序猿. All rights reserved.