public static enum ICardinalityConstraint.QualifierEnum extends Enum<ICardinalityConstraint.QualifierEnum>
| Enum Constant and Description |
|---|
AT_LEAST
The target must be at least as big as the number
|
AT_MOST
The target must be at most equal to the number
|
EXACTLY
The number must match exactly.
|
| Modifier and Type | Method and Description |
|---|---|
static ICardinalityConstraint.QualifierEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ICardinalityConstraint.QualifierEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ICardinalityConstraint.QualifierEnum EXACTLY
public static final ICardinalityConstraint.QualifierEnum AT_LEAST
public static final ICardinalityConstraint.QualifierEnum AT_MOST
public static ICardinalityConstraint.QualifierEnum[] values()
for (ICardinalityConstraint.QualifierEnum c : ICardinalityConstraint.QualifierEnum.values()) System.out.println(c);
public static ICardinalityConstraint.QualifierEnum 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 © 2006-2013. All Rights Reserved.