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